:root {
    --primary: #1fb6ff;
    --bg-dark: #050b1a;
    --bg-card: rgba(13, 23, 45, 0.7);
    --text-main: #e5e7eb;
    --text-dim: #cbd5e1;
    --accent-gradient: linear-gradient(90deg, #1fb6ff, #7e22ce);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.4;
}

/* Navbar Enhancements */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

nav.scrolled {
    background: rgba(5, 11, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(31, 182, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center; /* Logo aur Text ko vertically center karega */
    gap: 10px; /* Logo aur naam ke darmiyan fasla */
}

.nav-logo-img {
    height: 40px; /* Aap isay apni pasand ke mutabiq 30px se 50px tak rakh sakte hain */
    width: auto;
    object-fit: contain;
    /* Agar logo ka background remove kiya hai to ye clear nazar ayega */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

/* Mobile ke liye chota size */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 30px;
    }
    .logo-text {
        font-size: 1.2rem;
    }
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: 0.3s;
}



/* NAVBAR LINKS HOVER EFFECT */
.nav-links li a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 12px; /* Card jaisa curve */
    border: 1px solid transparent; /* Pehle border hide hoga */
    transition: all 0.4s ease;
    display: inline-block;
}

/* Jab cursor link par jaye */
.nav-links li a:not(.cta-btn):hover {
    color: var(--primary);
    background: rgba(31, 182, 255, 0.08); /* Service card jaisa light glow */
    border-color: rgba(31, 182, 255, 0.3); /* Soft border */
    transform: translateY(-3px); /* Chota sa bounce jese card krta hai */
    box-shadow: 0 4px 15px rgba(31, 182, 255, 0.1);
}

/* CONTACT US BUTTON (CTA) ALREADY SPECIAL HAI */
.cta-btn {
    background: var(--primary);
    color: #050b1a !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.cta-btn:hover {
    background: #fff;
    transform: translateY(-3px) scale(1.05); /* Thora bara aur ooper hoga */
    box-shadow: 0 5px 20px rgba(31, 182, 255, 0.4);
}

/* Container jo Logo aur Menu ko side-by-side rakhega */
.nav-container {
    display: flex;
    justify-content: space-between; /* Logo left, Menu right */
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Menu Toggle Button Styling */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
    transition: 0.3s;
}

/* MOBILE RESPONSIVE FIXES (768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Mobile par icon show hoga */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hide on start */
        height: 100vh;
        
        /* MENU SIZE: Yahan se chota hoga */
        width: 260px; 
        
        background: rgba(5, 11, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-left: 1px solid rgba(31, 182, 255, 0.2);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0; /* Menu slides in */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    /* Animation: Hamburger to 'X' */
    #mobile-menu.active .bar:nth-child(2) { opacity: 0; }
    #mobile-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #mobile-menu.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}



/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 5% 50px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-dim);
}

.primary-btn {
    display: inline-block; /* Zaroori: Link ko button shape dene ke liye */
    text-decoration: none; /* Link ki underline khatam karne ke liye */
    margin-top: 20px;
    padding: 12px 30px; /* Thora wide button zyada professional lagta hai */
    background: #1fb6ff;
    color: #050b1a;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem; /* Professional look ke liye thora balance */
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.primary-btn:hover {
    background: #fff;
    color: #050b1a; /* Hover par text color black hi rahay */
    box-shadow: 0 0 25px rgba(31, 182, 255, 0.5);
    transform: translateY(-3px);
}

.containerr {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 5%;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 5%;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 24px;
}

/* SECTION TITLE STYLE (Consistency with others) */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary);
    text-align: left; /* Aap ise 'center' bhi kar sakte hain agar baqi headings centered hain */
}

.section-title span {
    color: #fff; /* MMM word ko white ya kisi aur contrast mein rakhne ke liye */
}

/* ABOUT BOX CUSTOMIZATION */
.about-main-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px !important;
    border: 1px solid rgba(31, 182, 255, 0.15);
}

.about-flex-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text-column {
    flex: 1.2;
}

.about-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* Image Styling */
.about-image-column {
    flex: 1;
}

/* CHART WRAPPER ADJUSTMENT */
.chart-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(31, 182, 255, 0.15);
    background: rgba(13, 23, 45, 0.3); /* Transparent background */
    backdrop-filter: blur(3px); /* Halki si blur taake candles depth dein */
    transition: 0.5s ease;
}

/* ================================================================
   WHY WE ARE DIFFERENT - CONSOLIDATED CSS (STANDARD ICONS)
   ================================================================ */

/* 1. Header & Subtitle Styling */
.section-header-centered {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 15px;
}

/* 2. Grid Setup */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* 3. Card Styling with Your Website's Hover */
.feature-card-simple {
    padding: 40px !important;
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(31, 182, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-card-simple:hover {
    background: rgba(31, 182, 255, 0.05);
    border-color: #1fb6ff;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(31, 182, 255, 0.2);
}

/* 4. Icon Box (Standard Website Styling) */
.feature-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(31, 182, 255, 0.1); /* Light blue tint */
    border: 1px solid rgba(31, 182, 255, 0.3); /* Soft blue border */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.f-icon {
    font-size: 1.5rem;
    /* Agar aap emojis use kar rahe hain to yahan filter add karne ki zaroorat nahi */
}



/* 6. Typography */
.feature-card-simple h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-card-simple p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* 7. Responsive Fix */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Fix */
@media (max-width: 900px) {
    .section-title {
        text-align: center;
    }
    
    .about-flex-content {
        flex-direction: column;
    }

    .about-image-column {
        order: -1; /* Image hamesha mobile par text se pehle ayegi */
    }
}

/* SERVICES GRID DESIGN */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
    align-items: stretch; /* Sab cards ki height same rakhta hai */
}

.service-card {
    background: rgba(13, 23, 45, 0.4);
    border: 1px solid rgba(31, 182, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-cardd {
    background: rgba(13, 23, 45, 0.4);
    border: 1px solid rgba(31, 182, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}


.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(31, 182, 255, 0.1);
    background: rgba(13, 23, 45, 0.7);
}

/* Header Alignment Inside Card */
.icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.service-icon {
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0;
}

/* List Styling */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    opacity: 0.7;
}

/* Elite Card Specifics */
.elite-highlight {
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: linear-gradient(145deg, rgba(13, 23, 45, 0.6), rgba(255, 215, 0, 0.02));
}

.elite-highlight h3 {
    color: #ffd700;
}

.elite-highlight li::before {
    color: #ffd700;
}

/* Modal */
.contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 2000;
}

.contact-modal.show { opacity: 1; visibility: visible; }

.form-box {
    background: #0d172d;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 12px;
    background: #1a233a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* --- Billing Switcher Mobile Fix --- */
.billing-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Mobile par gap kam kar diya */
    background: rgba(255, 255, 255, 0.05);
    padding: 5px; /* Padding kam ki taake width control mein rahe */
    border-radius: 50px;
    width: fit-content;
    margin: 20px auto; /* Margin adjust kiya */
    border: 1px solid rgba(31, 182, 255, 0.1);
}

.bill-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 15px; /* Mobile ke liye padding choti rakhi */
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem; /* Text size thora chota kiya */
    white-space: nowrap; /* Text ko niche wali line mein jane se rokega */
    transition: 0.3s;
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
    .bill-btn {
        padding: 6px 12px;
        font-size: 0.75rem; /* Mazeed chota screen ke liye */
    }
    
    .billing-switcher {
        gap: 2px;
        max-width: 95%; /* Screen se bahar na nikalne paye */
    }
}

.bill-btn.active {
    background: #1fb6ff;
    color: #050b1a;
    box-shadow: 0 0 15px rgba(31, 182, 255, 0.4);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    text-align: center;
    padding: 40px !important;
}

.price-box {
    margin: 30px 0;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 5px;
}

.price-duration {
    color: #64748b;
    font-size: 1rem;
}

/* Mobile Responsive Buttons Fix */
@media (max-width: 768px) {
    /* Mentorship packages ke buttons ka size control karne ke liye */
    .package-card .submit-btn-glow, 
    .package-card .cta-btn,
    .package-card button {
        width: auto; /* Button ko poori screen par phailne se rokega */
        min-width: 160px; /* Ek munasib choti width */
        padding: 10px 25px; /* Padding kam kar di taake button sleek lage */
        font-size: 0.9rem; /* Text thora chota kiya */
        margin: 0 auto; /* Center karne ke liye */
        display: inline-block;
    }

    /* Card ke andar button ki alignment */
    .package-card {
        display: flex;
        flex-direction: column;
        align-items: center; /* Sab kuch center mein rakhega */
        padding: 25px !important;
    }
}

/* Eligibility & Form Layout */
.eligibility-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.criteria-list {
    margin: 30px 0;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    transition: 0.3s;
}

.criteria-item:hover {
    background: rgba(31, 182, 255, 0.1);
    transform: translateX(10px);
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.5;
}

.warning-box {
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    color: #ffbaba;
}

/* FORM CARD STYLING */
.form-card {
    background: rgba(13, 23, 45, 0.8);
    backdrop-filter: blur(15px);
    
    /* 1. Yahan se Width choti hogi (e.g., 500px ko 400px ya 380px kr dein) */
    max-width: 380px; 
    
    /* 2. Yahan se andar ki khali jagah kam hogi (e.g., 40px ko 25px kr dein) */
    padding: 25px; 
    
    border-radius: 20px;
    border: 1px solid rgba(31, 182, 255, 0.2);
    margin: 0 auto; /* Yeh form ko center mein rakhay ga */
}

.form-card h3 {
    color: #1fb6ff;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-card p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 25px;
}

/* INPUT GROUPS */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Is se inputs aik doosre se door rahen ge */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1fb6ff;
    margin-left: 5px;
}

/* INPUT FIELDS */
.modern-form input, 
.modern-form select, 
.modern-form textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(26, 35, 58, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

/* FOCUS EFFECT - Jab user click kare ga */
.modern-form input:focus, 
.modern-form select:focus, 
.modern-form textarea:focus {
    border-color: #1fb6ff;
    background: rgba(31, 182, 255, 0.05);
    box-shadow: 0 0 10px rgba(31, 182, 255, 0.2);
}

/* SUBMIT BUTTON */
.submit-btn-glow {
    margin-top: 10px;
    padding: 15px;
    background: #1fb6ff;
    color: #050b1a;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn-glow:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(31, 182, 255, 0.6);
    transform: translateY(-2px);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .form-card {
        padding: 25px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .eligibility-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- ABOUT MENTOR PAGE STYLES --- */
.about-mentor-container {
    padding: 40px !important;
    display: block; /* Grid se block par shift */
    overflow: hidden;
}

.mentor-image-wrapper {
    float: left; /* Image ko left par float kiya */
    width: 320px; /* Image ki fixed width */
    margin-right: 30px; /* Text se fasla */
    margin-bottom: 15px; /* Neeche wale text se fasla */
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(31, 182, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.image-frame img {
    width: 100%;
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

.mentor-content-text {
    color: #cbd5e1;
    line-height: 1.7;
}

.mentor-name {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Values Grid Adjustment (Clear:both ensures it stays below the float if text is short) */
.mentor-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
    clear: both; 
}

/* Stats section automatically takes full width below everything */
.mentor-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    clear: both;
}

.mentor-image-side .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(31, 182, 255, 0.2);
}

.mentor-image-side img {
    width: 100%;
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

.highlight-text {
    font-size: 1.1rem;
    color: #fff;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 20px;
}

.mentor-bio p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 15px;
}

.value-card {
    background: rgba(31, 182, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-icon { font-size: 1.2rem; display: block; margin-bottom: 8px; }
.value-card h5 { color: var(--primary); margin-bottom: 5px; font-size: 0.9rem; }
.value-card p { font-size: 0.8rem !important; line-height: 1.3; }

.mentor-quote {
    font-style: italic;
    color: var(--primary);
    text-align: center;
    padding: 20px;
    background: rgba(13, 23, 45, 0.6);
    border-radius: 12px;
    border: 1px dashed rgba(31, 182, 255, 0.3);
    margin: 20px 0;
}

.mentor-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item h4 { color: var(--primary); font-size: 1.4rem; }
.stat-item p { font-size: 0.75rem; color: #64748b; }

/* Responsive Mobile Fix */
@media (max-width: 768px) {
    .mentor-image-wrapper {
        float: none; /* Mobile par floating khatam */
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
    .mentor-name { text-align: center; }
    .mentor-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
}


/* --- FAQ PARAMETERS ALIGNMENT --- */
.faq-wrapper {
    max-width: 100%; /* About box ki width ke barabar */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Cards ke darmiyan professional gap */
}

.faq-item.box.service-card {
    padding: 0 !important; /* Padding sirf inner elements ko deni hai */
    margin-bottom: 0;
    cursor: pointer;
    border: 1px solid rgba(31, 182, 255, 0.1);
}

.faq-question {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #cbd5e1;
    line-height: 1.8;
}

/* Open State Styling */
.faq-item.active {
    border-color: var(--primary) !important;
    background: rgba(31, 182, 255, 0.05) !important;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Jawab ke size ke mutabiq */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff4b4b;
}



/* COURSE PAGE SPECIFICS */
.course-hero {

    background: var(--bg-card);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 24px;
   /* padding: 150px 5% 50px;*/
    text-align: center;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.program-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.duration {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.elite-badge { color: #ffd700; }

.program-features {
    list-style: none;
    margin: 25px 0;
}

.program-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.result-box {
    background: rgba(31, 182, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.result-box h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Gold Button for Elite */
.gold-btn {
    background: #ffd700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* COMPARISON TABLE */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.compare-table th, .compare-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.compare-table th {
    color: var(--primary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .compare-table { font-size: 0.8rem; }
    .compare-table th, .compare-table td { padding: 10px; }
}

/* --- CTA BANNER (Exact Image Height Match) --- */
.cta-banner {
    /* Image ke mutabiq gradient aur transparency adjust ki hai */
    background: linear-gradient(90deg, #050b1a 0%, #1fb6ff15 50%, #050b1a 100%);
    border-top: 1px solid rgba(31, 182, 255, 0.2);
    border-bottom: 1px solid rgba(31, 182, 255, 0.2);
    
    /* Height Fix: Screenshot ke mutabiq vertical space ko 25px rakha hai */
    padding: 25px 0; 
    margin-top: 40px;
    position: relative;
    width: 100%;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text h2 {
    /* Heading size compact rakha hai taake height na barhay */
    font-size: 1.6rem; 
    margin: 0;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
}

.cta-text h2 span {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(31, 182, 255, 0.4);
}

.cta-text p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 5px 0 0 0; /* Bohat halka sa top margin */
    opacity: 0.9;
}

/* Button Styling */
.cta-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px; /* Button ko thora narrow rakha hai height match karne ke liye */
    background: var(--primary);
    color: #050b1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(31, 182, 255, 0.4);
}

.cta-join-btn:hover {
    box-shadow: 0 0 35px rgba(31, 182, 255, 0.7);
    transform: translateY(-2px);
    background: #fff;
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .cta-banner {
        padding: 30px 0; /* Mobile par thori zyada jagah di hai readability ke liye */
    }
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}