        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        
        /* Navigation */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 10%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #4A6FFF;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2.5rem;
        }
        
        .nav-links a {
            color: #555;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #4A6FFF;
        }
        
        .cta-button {
            background-color: #4A6FFF;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #3a5ce0;
        }
        
        /* Hero Section - Updated with Blue-Green Gradient */
        .hero {
            height: 90vh;
            background: linear-gradient(135deg, #4A6FFF 0%, #20B2AA 100%);
            color: white;
            display: flex;
            align-items: center;
            padding: 0 10%;
            margin-top: 80px;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        /* Features Section */
        .features {
            padding: 6rem 10%;
            background-color: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #777;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .feature-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        
        .feature-icon {
            background-color: #eef2ff;
            height: 60px;
            width: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon i {
            color: #4A6FFF;
            font-size: 1.8rem;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.7;
        }
        
        /* Testimonial Section */
        .testimonials {
            padding: 6rem 10%;
            background-color: #f8f9fa;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            color: #555;
            font-style: italic;
            margin-bottom: 2rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        
        .author-info p {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* CTA Section - Updated to Match Hero Gradient */
        .cta-section {
            padding: 5rem 10%;
            background: linear-gradient(135deg, #4A6FFF 0%, #20B2AA 100%);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        .cta-section .cta-button {
            background-color: white;
            color: #4A6FFF;
            font-size: 1.1rem;
            padding: 1rem 2rem;
        }
        
        .cta-section .cta-button:hover {
            background-color: #f0f0f0;
        }
        
        /* Footer */
        footer {
            padding: 4rem 10% 2rem;
            background-color: #333;
            color: rgba(255,255,255,0.7);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }
        
        .footer-description {
            line-height: 1.7;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                height: auto;
                padding: 5rem 10%;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
                margin-bottom: 3rem;
            }
            
            .hero-image {
                justify-content: center;
            }
            
            .hero-image img {
                max-width: 90%;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 5%;
                flex-wrap: wrap;
            }
            
            .nav-links {
                display: none; /* Simplified for this example */
            }
            
            .hero, .features, .testimonials, .cta-section, footer {
                padding-left: 5%;
                padding-right: 5%;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2, .cta-section h2 {
                font-size: 2rem;
            }
        }

#login-menu {
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
margin: auto;
text-align: center;
position:relative;

}

#login-menu form {
display: flex;
flex-direction: column;
}

#login-menu input[type="text"],
#login-menu input[type="password"] {
margin-bottom: 10px;
padding: 8px;
font-size: 14px;
}

#login-menu button {
padding: 5px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
}

#login-menu button:hover {
background-color: #0056b3;
}

#login-menu a {
display: block;
margin-top: 10px;
color: #007bff;
}

#login-menu a:hover {
text-decoration: underline;
}

/* Style the menu container */
#login-menu .login-menu {
list-style: none; /* Remove default bullet points */
margin: 0;
padding: 0;
display: flex; /* Arrange items in a row */
align-items: center; /* Vertically align items */
gap: 10px; /* Add spacing between items */
}

/* Style the logout button */
#logout-button {
padding: 5px 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}

#logout-button:hover {
background-color: #0056b3;
}

#login-toggle-btn {
background-color: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-bottom: 10px;
}

#login-toggle-btn:hover {
background-color: #0056b3;
}
§