 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #4870bf 0%, #2575fc 100%);
            color: #333;
            min-height: 100vh;
        }
        
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
		.logo img{
		height: 40px;
		width: auto;
		}
        
        .logo i {
            font-size: 2rem;
            color: #4870bf;
        }
        
        .logo h1 {
            font-weight: 700;
            color: orange;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav a {
            text-decoration: none;
            color: #444;
            font-weight: 600;
            transition: color 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        nav a:hover {
            color: #4870bf;
            background: rgba(72, 112, 191, 0.1);
        }
        
        .auth-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .btn {
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-login {
            background: transparent;
            border: 2px solid #4870bf;
            color: #4870bf;
        }
        
        .btn-login:hover {
            background: #4870bf;
            color: white;
        }
        
        .btn-signup {
            background: #4870bf;
            color: white;
            border: 2px solid #4870bf;
        }
        
        .btn-signup:hover {
            background: #3a5da3;
            border-color: #3a5da3;
        }
        
        .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 208px);
}
        
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            color: white;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        .btn-hero {
            background: white;
            color: #4870bf;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #4870bf;
            margin-bottom: 1rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2d2d2d;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .auth-form, .signup-form {
            background: white;
            max-width: 400px;
            margin: 2rem auto;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            display: none;
        }
		.signup-form{
            max-width: 600px;
		}
        
        .auth-form h2, .signup-form h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #2d2d2d;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        
        .form-group input {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus {
            border-color: #4870bf;
            outline: none;
        }
        
        .form-btn {
            width: 100%;
            padding: 0.8rem;
            background: #4870bf;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .form-btn:hover {
            background: #3a5da3;
        }
        
        .form-footer {
            text-align: center;
            margin-top: 1.5rem;
            color: #666;
        }
        
        .form-footer a {
            color: #4870bf;
            text-decoration: none;
            font-weight: 600;
        }
        
        .dashboard {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            margin: 2rem auto;
            max-width: 1000px;
            display: none;
        }
        
        .dashboard h2 {
            color: #2d2d2d;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .dashboard-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
        }
        
        .user-info {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
        }
        
        .user-info h3 {
            margin-bottom: 1rem;
            color: #2d2d2d;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #4870bf 0%, #3a5da3 100%);
            color: white;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
        }
        
        .stat-card h4 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        footer {
            background: rgba(255, 255, 255, 0.95);
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
            color: #666;
        }
        
        /* Mobile Menu Styles */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            cursor: pointer;
        }
        
        .menu-toggle span {
            height: 3px;
            width: 100%;
            background-color: #4870bf;
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 11;
            transition: right 0.3s ease;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav ul {
            list-style: none;
            margin-top: 2rem;
        }
        
        .mobile-nav li {
            margin-bottom: 1.5rem;
        }
        
        .mobile-nav a {
            text-decoration: none;
            color: #444;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 0.5rem;
            display: block;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .mobile-nav a:hover {
            color: #4870bf;
            background: rgba(72, 112, 191, 0.1);
        }
        
        .close-menu {
            align-self: flex-end;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            transition: color 0.3s;
        }
        
        .close-menu:hover {
            color: #4870bf;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Media Queries */
        @media (max-width: 968px) {
            nav ul {
                gap: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            
            /* Hide the desktop nav */
            nav ul {
                display: none;
            }
            
            /* Hide the desktop auth buttons */
            .auth-buttons {
                display: none;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .dashboard-content {
                grid-template-columns: 1fr;
            }
            
            .mobile-auth {
                margin-top: 2rem;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            
            .mobile-auth .btn {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            header {
                padding: 1rem;
            }
        }