:root {
    --primary: #BBE03A;
    --primary-light: #d8f760;
    --primary-dark: #9BC422;
    --secondary: #559BDB;
    --secondary-dark: #3a7abf;
    --bg-light: #4C3B93;
    --bg-white: #3B2A75;
    --text-dark: #FFFFFF;
    --text-light: #CBD5E1;
    --border-color: #6D5AB5;
    --yellow: #F59E0B;
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.3), 0 2px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 30px -3px rgba(0, 0, 0, 0.4), 0 4px 12px -2px rgba(0, 0, 0, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: #1a163a;
    color: white;
}

.bg-dark h2, .bg-dark p {
    color: white;
}

/* Utilities */
.text-blue { color: var(--primary); }
.text-green { color: var(--secondary); }
.text-yellow { color: var(--yellow); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(124, 181, 24, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 181, 24, 0.55);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}


/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(59, 42, 117, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-light);
}

.shape-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #EEF2FF;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
    border: 1px solid #C7D2FE;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 90%;
    line-height: 1.7;
}

/* E-E-A-T Trust Strip */
.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin: 12px 0 4px;
}

.hero-trust-strip span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-trust-strip i {
    color: #22c55e;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .hero-trust-strip {
        justify-content: center;
    }
}

/* Hero CTA Button Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: #25D366;
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: heroPulse 2.8s ease-in-out infinite;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

.hero-cta-primary i {
    font-size: 1.3rem;
    margin: 0;
}

.hero-cta-secondary {
    background: transparent;
    color: var(--text-dark) !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.hero-cta-secondary:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: rgba(124, 181, 24, 0.06);
}

.hero-cta-secondary i {
    font-size: 0.85rem;
    margin: 0;
    transition: transform 0.2s ease;
}

.hero-cta-secondary:hover i {
    transform: translateX(4px);
}

.hero-trust-line {
    margin-top: 14px;
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    font-weight: 500;
}

.hero-trust-line i {
    color: var(--primary);
    margin-right: 3px;
}

@keyframes heroPulse {
    0%   { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
    50%  { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
}

@media (max-width: 991px) {
    .hero-cta-group {
        justify-content: center;
    }
    .hero-trust-line {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .form-card {
        padding: 24px 16px !important;
        border-radius: 16px !important;
    }

    .form-card.dark-conversion h3 {
        font-size: 1.15rem !important;
        margin-bottom: 12px !important;
    }

    .form-card.dark-conversion p {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
    }

    .form-card .btn {
        padding: 12px !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
    }
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.hero-visual {
    flex: 0.8;
    position: relative;
    z-index: 2;
}

.form-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-card.dark-conversion {
    background: linear-gradient(135deg, #0b0f19 0%, #111827 100%) !important; /* Deep charcoal/dark slate */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    color: #ffffff !important;
}

.form-card.dark-conversion h3 {
    text-align: center;
    color: #ffffff !important;
}

.form-card.dark-conversion p {
    color: #94a3b8 !important; /* Soft slate color */
}

.wa-pulse-btn {
    animation: waPulse 2s infinite !important;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hero Image */
.hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
    object-fit: cover;
}

/* Floating stat badges */
.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

.hero-badge__icon {
    font-size: 1.6rem;
    line-height: 1;
}

.hero-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero-badge strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.hero-badge span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-badge--rating {
    bottom: -16px;
    left: -20px;
    animation-delay: 0s;
}

.hero-badge--students {
    top: 20px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes badgeFloat {
    from { transform: translateY(0px); }
    to   { transform: translateY(-8px); }
}

/* Features Setup */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(187, 224, 58, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* How it works */
.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: var(--bg-light);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 0 8px var(--bg-light);
}

.step-content {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.badge-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    color: var(--primary);
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
}

.plan-features i {
    margin-top: 4px;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.comparison-table td:first-child, .comparison-table th:first-child {
    text-align: left;
    font-weight: 600;
}

.highlight-col {
    background: rgba(124, 181, 24, 0.18);
}

.comparison-table th.highlight-col {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: var(--primary-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:last-child td.highlight-col {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--yellow);
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Blogs */
.blog-item:hover {
    border-color: var(--primary);
    background: var(--bg-light);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h3 span {
    color: var(--primary);
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-light);
}

.footer-col ul a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.footer-col i.fas {
    margin-right: 8px;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-img-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-badge--rating {
        left: 8px;
        bottom: -12px;
    }

    .hero-badge--students {
        right: 8px;
        top: 12px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        margin: 0 auto 40px;
    }
    
    .hero-stats {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-light);
        padding: 24px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-line {
        left: 28px; 
    }
    
    .blog-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }
    
    .blog-item .date {
        margin-left: 0 !important;
    }
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 10px 0;
    position: relative;
}
.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
    color: var(--primary);
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
    width: 100%;
}
.nav-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-menu a {
    display: block;
    padding: 9px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    border-radius: 0;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary);
}
@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        border-radius: 8px;
        padding: 4px 0 4px 12px;
        margin-top: 4px;
        display: none;
        min-width: unset;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .nav-dropdown-toggle { padding: 10px 0; }
    .nav-dropdown-menu a { padding: 8px 12px; white-space: normal; }
}

/* FAQ Styles */
.faq-item {
    transition: var(--transition);
}

.faq-item:hover .faq-question {
    color: var(--primary);
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-question i.fa-minus {
    transform: rotate(180deg);
}

.faq-answer {
    line-height: 1.6;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-wa-btn:hover {
    transform: scale(1.1) !important;
}

/* Mobile Conversion Optimization */
.mobile-bottom-cta {
    display: none;
}

@media (max-width: 768px) {
    .desktop-wa-btn {
        display: none !important;
    }
    
    .mobile-bottom-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
        padding: 12px 16px;
        z-index: 9999;
        border-top: 1px solid var(--border-color);
        animation: slideUp 0.5s ease-out forwards;
    }
    
    .mobile-bottom-cta a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        background: #25D366;
        color: white;
        padding: 14px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1.15rem;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(37,211,102,0.3);
        animation: waPulse 2s infinite !important;
    }
    
    body {
        padding-bottom: 76px !important;
    }
    
    .hero {
        padding: 60px 0 60px !important;
    }
    
    .hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 16px !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Infinite Scrolling Reviews Marquee */
.reviews-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 24px 0;
    margin-bottom: 30px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 8%, rgb(0, 0, 0) 92%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 8%, rgb(0, 0, 0) 92%, rgba(0, 0, 0, 0) 100%);
}

.reviews-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviewsScroll 50s linear infinite;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

/* Dark Theme Reviews Section (matching xellotuition.in) */
.dark-theme-reviews {
    background: linear-gradient(135deg, #18153c 0%, #0c0a22 100%) !important;
    color: #ffffff !important;
    padding: 80px 0 !important;
}

.dark-theme-reviews .section-header h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.dark-theme-reviews .section-header p {
    color: #a5b4fc !important; /* soft indigo-blue text */
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.dark-theme-reviews .marquee-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 28px;
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark-theme-reviews .marquee-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.5) !important;
    box-shadow: 0 15px 45px rgba(99, 102, 241, 0.25) !important;
}

.dark-theme-reviews .marquee-card .stars {
    color: #f59e0b; /* bright gold */
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.dark-theme-reviews .marquee-card .review-text {
    color: #e5e7eb !important; /* soft white */
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 400;
}

.dark-theme-reviews .marquee-card .review-author {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
}

.dark-theme-reviews .marquee-card .author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(99, 102, 241, 0.4);
}

.dark-theme-reviews .marquee-card .author-info {
    flex: 1;
    text-align: left;
}

.dark-theme-reviews .marquee-card .author-info h4 {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.dark-theme-reviews .marquee-card .author-info span {
    color: #94a3b8 !important; /* soft slate */
    font-size: 0.8rem;
    font-weight: 500;
}

.dark-theme-reviews .marquee-card .verified-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #a5b4fc;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dark-theme-reviews .marquee-card .verified-badge i {
    color: #38bdf8; /* cyan verified check */
}

/* Center Pill Button */
.reviews-pill-btn-container {
    text-align: center;
    margin-top: 20px;
}

.reviews-pill-btn {
    background: #ffffff !important;
    color: #120e2b !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.reviews-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
    background: #f8fafc !important;
}

@keyframes reviewsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px)); /* half of the track items + half of gap */
    }
}

/* Force dark purple backgrounds for SEO keyword interlinking links */
.seo-footer-links {
    background: var(--bg-light) !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 40px 0;
}

/* Pulsing Play Button Overlay */
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: var(--primary) !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(59, 42, 117, 0.6);
    animation: pulsePlay 2s infinite;
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 42, 117, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(59, 42, 117, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 42, 117, 0);
    }
}

.play-btn-overlay:hover {
    background: var(--primary-dark) !important;
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Lightbox Modal for YouTube video */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.close-video-modal {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.video-responsive-container {
    width: 100%;
    height: 100%;
}

.video-responsive-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


