/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(90deg, #333, #fff, #ff0000, #008000);
    color: #fff;
    padding: 1rem 0;
    width: 100%;
    position: fixed;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.nav-links a:hover {
    color: #48ff00;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
    }
    .nav-links.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background: url('DALL·E\ 2024-11-04\ 14.37.18\ -\ A\ 3D\ motion-inspired\ background\ image\ with\ abstract\ geometric\ shapes\ in\ motion\,\ featuring\ a\ transparent\ background.\ The\ shapes\ incorporate\ colors\ insp.webp') center/cover;
    color: #001aff;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero h2 {
    font-size: 2rem;
}
/* Styles for the alert box */
#welcome-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333;
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    display: none; /* Hidden by default */
    transition: opacity 0.5s ease;
    z-index: 1000;
    text-align: center;
}

.cta-button {
    background: #48ff00;
    color: #000000;
    border: none;
    margin-top: 20px;
    font-size: large;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #ff0000;
    color: #ffffff;
    transform: scale(1.05);
}

/* Login Modal */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-container {
    background-color: #fff;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
login-container h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.login-container label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.login-container button:hover {
    background-color: #45a049;
}
/* About Section Styling */
.about {
    background-color: #f9f9f9; /* Light gray background for contrast */
    padding: 60px 20px; /* Padding for top-bottom and left-right */
    text-align: center; /* Center-align the text */
}

.about h2 {
    font-size: 2.5em; /* Larger font size for the heading */
    color: #333; /* Dark color for the heading */
    margin-bottom: 20px; /* Space between heading and paragraph */
}

.about p {
    font-size: 1.1em; /* Slightly larger font for better readability */
    color: #555; /* Soft gray color for paragraph text */
    line-height: 1.6; /* Improved line spacing */
}
/* General Features Section Styling */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 40px;
}

.feature-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3em;
    margin-bottom: 20px;
    color: #4CAF50;
}

.feature-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature-box h6 {
    font-size: 1em;
    color: #777;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        width: 80%;
    }
}


.feature .icon {
    font-size: 2rem;
    color: #48ff00;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #333333;
    color: #fff;
    margin-bottom: 10px;
}
.social-icons a{
    color: #48ff00;
}
.social-icons a:hover{
    color: #fff;
}