        :root { 
            --navy: #0f172a; 
            --primary: #2563eb;
            --red: #ef4444; 
            --glass: rgba(255, 255, 255, 0.9);
            --radius-sm: 1rem;
            --radius-lg: 3rem;
        --dark: #020617; 
        --radius: 3rem; 
        --radius-mob: 2rem;
        }

        body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #fff; }

        /* Modern Navbar Logic */
        .navbar {
            background: var(--glass);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            background: rgba(255, 255, 255, 0.98);
        }

        .nav-logo { height: 50px; transition: 0.3s; }
        .scrolled .nav-logo { height: 42px; }

        /* Elegant Nav Links */
        .nav-link-custom { 
            color: #334155 !important; 
            font-weight: 700; 
            font-size: 0.92rem;
            padding: 8px 16px !important;
            transition: 0.3s;
            position: relative;
            white-space: nowrap;
        }

        .nav-link-custom::before {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            width: 0; height: 3px;
            background: var(--primary);
            border-radius: 10px;
            transition: 0.3s;
            transform: translateX(-50%);
        }

        .nav-link-custom:hover::before { width: 20px; }
        .nav-link-custom:hover { color: var(--primary) !important; }

        /* Premium Profile UI */
        .profile-trigger {
            background: #fff;
            border: 1px solid #e2e8f0;
            padding: 5px 6px 5px 16px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }

        .profile-trigger:hover {
            border-color: var(--primary);
            background: #f8faff;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
        }

        .user-pic { 
            width: 34px; height: 34px; 
            object-fit: cover; 
            border-radius: 50%; 
            margin-left: 12px;
            border: 2px solid #fff;
            box-shadow: 0 0 0 1px #e2e8f0;
        }

        /* Bento-Style Dropdown */
        #finalDropdownMenu {
            display: none; 
            position: absolute;
            top: 65px;
            right: 0;
            background: #ffffff;
            min-width: 280px;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
            border: 1px solid rgba(0,0,0,0.05);
            z-index: 1100;
            padding: 15px;
            animation: bentoIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes bentoIn {
            from { opacity: 0; transform: translateY(15px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .menu-header {
            padding: 15px;
            background: #f1f5f9;
            border-radius: 1rem;
            margin-bottom: 12px;
        }

        #finalDropdownMenu a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: #475569 !important;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 0.8rem;
            transition: 0.2s;
            margin-bottom: 4px;
        }

        #finalDropdownMenu a:hover { 
            background: #eff6ff; 
            color: var(--primary) !important; 
            transform: translateX(5px);
        }

        #finalDropdownMenu a i { 
            width: 32px; 
            font-size: 1.1rem;
            color: #94a3b8;
        }

        #finalDropdownMenu a:hover i { color: var(--primary); }

        .logout-link { color: var(--red) !important; }
        .logout-link i { color: var(--red) !important; }

        /* Glowing Login Button */
        .btn-login {
            background: var(--navy);
            color: #fff !important;
            border-radius: 100px;
            padding: 12px 30px !important;
            font-weight: 800;
            border: none;
            font-size: 0.9rem;
            transition: 0.3s;
            box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
        }

        .btn-login:hover {
            background: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3);
        }

        /* Mobile Menu */
        @media (max-width: 991px) {
            .navbar-collapse { 
                margin-top: 15px;
                padding: 20px;
                background: #fff;
                border-radius: 1.5rem;
                box-shadow: 0 20px 40px rgba(0,0,0,0.1);
                border: 1px solid #eee;
            }
            .nav-link-custom { padding: 12px 0 !important; border-bottom: 1px solid #f1f5f9; }
            .nav-link-custom::before { display: none; }
            .student-box { margin-top: 20px; width: 100%; }
            .profile-trigger { width: 100%; justify-content: space-between; }
            #finalDropdownMenu { 
                position: static; 
                width: 100%; 
                box-shadow: none; 
                display: block !important; 
                border: none;
                padding: 10px 0;
            }
        }


    
    body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #fff; color: var(--dark); overflow-x: hidden; }
    h1, h2, h3 { font-family: 'Sora', sans-serif; letter-spacing: -0.04em; }

    /* --- HERO SECTION --- */
    .hero-main {
        padding: 60px 20px 0;
        background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
        border-radius: var(--radius);
        margin: 20px;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    
    .hero-title { font-size: 3.8rem; line-height: 1.1; letter-spacing: -1.5px; }
    .text-gradient-gold {
        background: linear-gradient(135deg, #ffca28 0%, #ff8f00 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    .hero-content-side { padding-bottom: 60px; }

    .hero-img-col { display: flex; align-items: flex-end; justify-content: center; }
    .mentor-img {
        max-height: 580px;
        width: auto;
        display: block;
        filter: drop-shadow(0 -10px 50px rgba(0,0,0,0.6));
        transform: scale(1.08);
        margin-bottom: -5px;
        transition: transform 0.5s ease;
    }

    /* --- STATS SECTION --- */
    .brand-stats { margin-top: -65px; position: relative; z-index: 20; padding: 0 40px; }
    .stat-pill {
        background: #fff; border-radius: 2.5rem; padding: 30px 15px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12); border: 1px solid rgba(0,0,0,0.05);
        text-align: center; height: 100%; transition: 0.4s;
    }
    .stat-val { font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; line-height: 1; }
    .stat-txt { font-size: 0.75rem; font-weight: 700; color: #64748b; text-transform: uppercase; margin-top: 10px; display: block; }

    /* --- SLIDER AREA --- */
    .slider-area { padding: 40px 0; background: #fafafa; }
    .alwarSwiper { padding: 20px 0 50px 0 !important; width: 100%; }
    .swiper-slide { transition: all 0.5s ease; opacity: 0.4; transform: scale(0.85); }
    .swiper-slide-active { opacity: 1; transform: scale(1.05); z-index: 2; }
    .slider-card { border-radius: 2.5rem; overflow: hidden; aspect-ratio: 16/9; box-shadow: 0 25px 50px rgba(0,0,0,0.15); background: #fff; }
    .slider-card img { width: 100%; height: 100%; object-fit: cover; }

    /* --- COURSE BENTO --- */
    .course-bento {
        background: #f8fafc; border-radius: 2.5rem; padding: 20px;
        transition: 0.4s; height: 100%; border: 1px solid transparent;
    }
    .course-bento:hover { background: #fff; box-shadow: 0 40px 80px rgba(0,0,0,0.1); border-color: var(--primary); transform: translateY(-10px); }
    .thumb-box { border-radius: 1.8rem; overflow: hidden; aspect-ratio: 16/10; margin-bottom: 25px; }
    .thumb-box img { width: 100%; height: 100%; object-fit: cover; }

    /* --- APP SECTION --- */
    .app-promo-card {
        background: linear-gradient(145deg, #020617 0%, #0f172a 100%);
        border-radius: 4rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    .shadow-ultra { box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.5); }
    .text-primary-light { color: #60a5fa; font-weight: 800; }

    .mockup-perspective { perspective: 1000px; transform-style: preserve-3d; margin-top: 40px; }
    .floating-mockup {
        max-height: 480px;
        transform: rotateY(-15deg) rotateX(10deg) rotateZ(2deg);
        filter: drop-shadow(-20px 30px 50px rgba(0,0,0,0.8));
        animation: floatApp 5s ease-in-out infinite;
    }

    @keyframes floatApp {
        0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); }
        50% { transform: rotateY(-15deg) rotateX(10deg) translateY(-20px); }
    }

    /* --- MISC --- */
    .bg-white-10 { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; font-size: 0.75rem; padding: 5px 12px; border-radius: 50px; }
    .btn-alwar { background: var(--primary); color: #fff; padding: 16px 40px; border-radius: 1.5rem; font-weight: 700; border: none; transition: 0.3s; display: inline-block; text-decoration: none; }

    /* --- MOBILE RESPONSIVE FIXES (No d-none) --- */
    @media (max-width: 991px) {
        .hero-main { margin: 10px; border-radius: var(--radius-mob); padding-top: 40px; }
        .hero-title { font-size: 2.4rem; text-align: center; }
        .hero-content-side { text-align: center; padding-bottom: 40px; }
        .mentor-img { max-height: 350px; transform: scale(1.02); margin-top: 20px; }
        .brand-stats { margin-top: 20px; padding: 0 15px; }
        .stat-pill { border-radius: 1.5rem; padding: 20px 10px; }
        .stat-val { font-size: 1.8rem; }
        .app-promo-card { border-radius: 2rem; padding: 40px 20px !important; }
        .floating-mockup { max-height: 350px; transform: rotateY(0) rotateX(0) rotateZ(0); } /* Mobile par seedha dikhega visibility ke liye */
        @keyframes floatApp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
    }
</style>

 .course-premium-card {
        background: #fff;
        border-radius: 2.8rem;
        border: 1px solid #f1f5f9;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .course-premium-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.15);
        border-color: var(--primary);
    }

    .course-image-box {
        position: relative;
        aspect-ratio: 16/10;
        margin: 12px;
        border-radius: 2.2rem;
        overflow: hidden;
    }

    .course-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s ease;
    }

    .course-premium-card:hover .course-image-box img {
        transform: scale(1.1);
    }

    .course-status-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 5;
    }

    .course-price-overlay {
        position: absolute;
        bottom: 15px;
        right: 15px;
        z-index: 5;
    }

    .price-pill {
        background: var(--primary);
        color: #fff;
        padding: 8px 20px;
        border-radius: 100px;
        font-weight: 800;
        font-size: 1.1rem;
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    }

    .course-title {
        font-size: 1.35rem;
        font-weight: 800;
        line-height: 1.4;
        color: var(--dark);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 3.8rem;
    }

    .course-perks {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .perk-item {
        font-size: 0.85rem;
        color: #64748b;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .perk-item i {
        color: #10b981;
        font-size: 0.75rem;
    }

    .btn-enroll-elite {
        background: var(--dark);
        color: #fff;
        padding: 14px 28px;
        border-radius: 1.4rem;
        font-weight: 800;
        text-decoration: none;
        transition: 0.3s;
        font-size: 0.85rem;
        border: none;
    }

    .btn-enroll-elite:hover {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    }

    .tracking-wider { letter-spacing: 1px; }

    @media (max-width: 768px) {
        .course-premium-card { border-radius: 2rem; }
        .course-image-box { border-radius: 1.5rem; }
        .course-title { font-size: 1.1rem; }
    }
    /* Premium Test Card Styling */
    .test-card-premium {
        background: #fff;
        border-radius: 2.2rem;
        padding: 30px;
        border: 1px solid #eff2f6;
        transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .test-card-premium:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
        box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.15);
    }

    .icon-box-v3 {
        width: 55px; height: 55px;
        background: #eff6ff;
        color: var(--primary);
        border-radius: 1.2rem;
        display: flex;
        align-items: center; justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .bg-soft-blue { background: #eff6ff; }
    .x-small { font-size: 0.65rem; padding: 4px 10px; border-radius: 50px; }

    .test-features { flex-grow: 1; }

    .btn-buy-test {
        background: var(--primary);
        color: #fff;
        padding: 10px 22px;
        border-radius: 1rem;
        font-weight: 700;
        text-decoration: none;
        font-size: 0.8rem;
        transition: 0.3s;
        border: 2px solid var(--primary);
    }
    
    .btn-buy-test:hover {
        background: transparent;
        color: var(--primary);
        transform: scale(1.05);
    }

    @media (max-width: 768px) {
        .test-card-premium { border-radius: 1.8rem; padding: 25px; }
        .display-5 { font-size: 2.2rem; }
    }