
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #6a11cb;
            --primary-light: #8a3dda;
            --secondary: #2575fc;
            --secondary-light: #5c95fd;
            --accent: #ff6b6b;
            --accent-light: #ff9b9b;
            --success: #48bb78;
            --warning: #f6ad55;
            --info: #4299e1;
            --light: #f8f9fa;
            --dark: #2d3748;
            --dark-light: #4a5568;
            --gray: #e2e8f0;
        }

        body {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            min-height: 100vh;
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo-img {
  height: 50px;
  width: auto;
  display: inline-block;
}


        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            font-size: 32px;
            color: var(--primary);
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }

        /* Login Section */
        .login-section {
            padding: 80px 0;
            background: white;
            border-radius: 0 0 30px 30px;
            margin-bottom: 50px;
        }

        .login-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .login-text h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .login-text p {
            font-size: 18px;
            color: var(--dark-light);
            margin-bottom: 30px;
        }

        .login-form {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
            text-align: center;
        }

        .form-subtitle {
            color: var(--dark-light);
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-input {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--gray);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
        }

        .login-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
        }

        .signup-link {
            text-align: center;
            margin-top: 20px;
            color: var(--dark-light);
        }

        .signup-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .error {
            margin-top: 10px;
            color: var(--accent);
            font-size: 14px;
            text-align: center;
            min-height: 20px;
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: white;
            border-radius: 30px;
            margin-bottom: 50px;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 50px;
            color: var(--dark);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            margin: 0 auto 20px;
        }

        .benefit-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .benefit-desc {
            color: var(--dark-light);
        }

        /* Packages Section */
        .packages {
            padding: 80px 0;
            background: var(--light);
            border-radius: 30px;
            margin-bottom: 50px;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .plan-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .plan-price {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .plan-price span {
            font-size: 16px;
            color: var(--dark-light);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .plan-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .plan-features li i {
            color: var(--success);
        }

        .plan-button {
            width: 100%;
            padding: 12px;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid var(--primary);
            background: var(--primary);
            color: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .plan-button.outline {
            background: transparent;
            color: var(--primary);
        }

        .plan-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Reviews Section */
        .reviews {
            padding: 80px 0;
            background: white;
            border-radius: 30px;
            margin-bottom: 50px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            position: relative;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

      .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;          /* keeps image inside circle */
    padding: 2px;              /* gradient border thickness */
    box-sizing: border-box;    /* keeps border inside 50px size */
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* auto crop and fit */
    border-radius: 50%;
    display: block;
}




        .author-info h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--dark-light);
            font-size: 14px;
        }

        .rating {
            color: var(--warning);
            margin-bottom: 10px;
        }

        /* WhatsApp Section */
        .whatsapp-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            border-radius: 30px;
            margin-bottom: 50px;
            text-align: center;
        }

        .whatsapp-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .whatsapp-desc {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a0aec0;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .login-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .login-text h1 {
                font-size: 36px;
            }
            
            .pricing-card.popular {
                transform: none;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                z-index: 99;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .login-text h1 {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
        }
        .toggle-password {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  position: absolute;
  right: 10px;
  top: 65%;
  transform: translateY(-50%);
  font-size: 16px;
}

.toggle-password:hover {
  color: var(--accent);
}

.input-group {
  position: relative; /* ensure eye button aligns correctly */
}

    /* Mobile Menu Styles */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* Mobile menu button animation */
.mobile-menu-btn {
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}
/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2.5rem;
}

.faq-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq-toggle {
    color: #3498db;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 20px;
    color: #555;
    line-height: 1.6;
}

/* Active FAQ Item */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-contact {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-contact p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.faq-contact a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-contact a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* YouTube Videos Section Styles - Matching Your Design */
.youtube-section {
    padding: 80px 0;
    background: white;
    border-radius: 30px;
    margin-bottom: 50px;
}

.youtube-section .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.youtube-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px 15px 0 0;
}

.video-info {
    padding: 30px;
}

.video-title {
    color: var(--dark);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.video-description {
    color: var(--dark-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.video-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--dark-light);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-meta i {
    color: var(--primary);
    font-size: 0.9rem;
}

.youtube-cta {
    text-align: center;
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.youtube-cta p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 500;
}

.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.youtube-channel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 17, 203, 0.4);
    color: white;
}

/* Responsive Design for YouTube Section */
@media (max-width: 968px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .video-info {
        padding: 25px;
    }
    
    .video-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .youtube-section {
        padding: 60px 0;
    }
    
    .youtube-section .section-title {
        font-size: 28px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card {
        margin: 0 10px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-title {
        font-size: 18px;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .youtube-cta {
        padding: 30px 20px;
    }
    
    .youtube-channel-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-section .section-title {
        font-size: 24px;
    }
    
    .youtube-cta p {
        font-size: 1.1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2.5rem;
}

.faq-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq-toggle {
    color: #3498db;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 20px;
    color: #555;
    line-height: 1.6;
}

/* Active FAQ Item */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-contact {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-contact p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.faq-contact a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-contact a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .youtube-section {
        padding: 60px 0;
    }
    
    .youtube-section .section-title {
        font-size: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card {
        margin: 0 10px;
    }
    
    .video-title {
        font-size: 1.1rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .youtube-channel-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}