
        /* --- FUTURISTIC MULTI-COLOR PALETTE --- */
        :root {
            --brand-orange: #df9227;
            --cyber-blue: #00f2fe;
            --neon-purple: #9d4edd;
            --emerald-green: #10b981;
            --rose-pink: #f43f5e;
            --dark-space: #0b0f19;
            --surface-glass: rgba(15, 23, 42, 0.85);
            --border-glow: rgba(255, 255, 255, 0.12);
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            
            --bg-dark: #05060b;
    --neon-orange: #ff4d00;
    --neon-cyan: #00f3ff;
    --neon-purple: #9d00ff;
    --glass: rgba(255, 255, 255, 0.03);
        }

        body {
            font-family: var(--font-body);
            background-color: #f4f7f6; /* Contrasts beautifully with the dark header */
            margin: 0;
            padding: 0;
        }

        /* --- TOP HEADER: THE LIVE TICKER BAR --- */
        .futuristic-top-bar {
            background: var(--dark-space);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 8px 0;
            font-family: var(--font-display);
            font-size: 0.85rem;
            color: #94a3b8;
            position: relative;
            z-index: 1050;
        }

        .top-link-group {
            display: flex;
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .top-link-group a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .top-link-group a:hover {
            color: var(--brand-orange);
            text-shadow: 0 0 10px rgba(223, 146, 39, 0.5);
        }

        /* Animated Live Badge */
        .live-badge {
            background: linear-gradient(135deg, rgba(244, 63, 92, 0.2), rgba(223, 146, 39, 0.2));
            border: 1px solid var(--rose-pink);
            color: #fff;
            padding: 2px 10px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.75rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background-color: var(--rose-pink);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--rose-pink);
            animation: pulse-glow 1.5s infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.4); opacity: 0.5; }
        }

        /* Multi-Color Exam Pills */
        .exam-pill-list {
            display: flex;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .exam-pill {
            padding: 3px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition-fast);
            border: 1px solid transparent;
        }

        .pill-neet { background: rgba(16, 185, 129, 0.15); color: var(--emerald-green); border-color: rgba(16, 185, 129, 0.3); }
        .pill-gate { background: rgba(223, 146, 39, 0.15); color: var(--brand-orange); border-color: rgba(223, 146, 39, 0.3); }
        .pill-upsee { background: rgba(157, 78, 221, 0.15); color: var(--neon-purple); border-color: rgba(157, 78, 221, 0.3); }
        .pill-jee { background: rgba(0, 242, 254, 0.15); color: var(--cyber-blue); border-color: rgba(0, 242, 254, 0.3); }

        .exam-pill:hover {
            transform: translateY(-2px);
            filter: brightness(1.3);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        /* --- MAIN FLOATING COMMAND CENTER (NAVBAR) --- */
        .nav-island-wrapper {
            position: sticky;
            top: 15px;
            z-index: 1040;
            padding: 0 15px;
        }

        .nav-island {
            max-width: 1300px;
            margin: 0 auto;
            background: var(--surface-glass);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-glow);
            border-radius: 24px;
            padding: 8px 24px;
            box-shadow: 0 20px 50px rgba(11, 15, 25, 0.4), 
                        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            transition: var(--transition-fast);
        }

        .nav-island.docked {
            border-radius: 0;
            max-width: 100%;
            top: 0;
            border-left: none;
            border-right: none;
            border-top: none;
            background: rgba(11, 15, 25, 0.95);
        }

        .navbar-brand img {
            
            filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
            transition: var(--transition-fast);
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 0 12px var(--brand-orange));
        }

        /* Nav Links */
        .nav-island .nav-link {
            font-family: var(--font-display);
            color: #f1f5f9 !important;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 10px 16px !important;
            border-radius: 12px;
            transition: var(--transition-fast);
            position: relative;
        }

        .nav-island .nav-link:hover,
        .nav-island .nav-item.show .nav-link {
            color: #fff !important;
            background: rgba(255, 255, 255, 0.06);
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
        }

        /* --- 3D MULTI-COLOR DROPDOWN MENUS --- */
        .futuristic-dropdown .dropdown-menu {
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 15px;
            width: 260px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
            margin-top: 15px !important;
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @media (min-width: 992px) {
            .futuristic-dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0) scale(1);
            }
        }

        /* Color-Coded Dropdown Items */
        .dropdown-item-box {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 12px;
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition-fast);
            margin-bottom: 4px;
        }

        .icon-box {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: var(--transition-fast);
        }

        /* Assigning Multiple Colors to Categories */
        .theme-orange .icon-box { background: rgba(223, 146, 39, 0.15); color: var(--brand-orange); }
        .theme-orange:hover { background: rgba(223, 146, 39, 0.1); color: #fff; }
        .theme-orange:hover .icon-box { background: var(--brand-orange); color: #fff; box-shadow: 0 0 15px var(--brand-orange); }

        .theme-pink .icon-box { background: rgba(244, 63, 92, 0.15); color: var(--rose-pink); }
        .theme-pink:hover { background: rgba(244, 63, 92, 0.1); color: #fff; }
        .theme-pink:hover .icon-box { background: var(--rose-pink); color: #fff; box-shadow: 0 0 15px var(--rose-pink); }

        .theme-purple .icon-box { background: rgba(157, 78, 221, 0.15); color: var(--neon-purple); }
        .theme-purple:hover { background: rgba(157, 78, 221, 0.1); color: #fff; }
        .theme-purple:hover .icon-box { background: var(--neon-purple); color: #fff; box-shadow: 0 0 15px var(--neon-purple); }

        .theme-blue .icon-box { background: rgba(0, 242, 254, 0.15); color: var(--cyber-blue); }
        .theme-blue:hover { background: rgba(0, 242, 254, 0.1); color: #fff; }
        .theme-blue:hover .icon-box { background: var(--cyber-blue); color: #000; box-shadow: 0 0 15px var(--cyber-blue); }

        /* Futuristic Search Bar Trigger */
        .btn-cyber-search {
            background: linear-gradient(135deg, var(--brand-orange), #ff6b00);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(223, 146, 39, 0.4);
            transition: var(--transition-fast);
        }

        .btn-cyber-search:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(223, 146, 39, 0.6);
            color: #fff;
        }

        /* Mobile Hamburger Customization */
        .navbar-toggler {
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.05);
            padding: 8px 12px;
            border-radius: 10px;
            color: #fff;
        }
        
        .navbar-toggler:focus { box-shadow: none; }

        @media (max-width: 991.98px) {
            .nav-island { padding: 12px 16px; }
            .navbar-collapse {
                background: #0b0f19;
                border-radius: 16px;
                padding: 20px;
                margin-top: 15px;
                border: 1px solid rgba(255,255,255,0.1);
            }
            .futuristic-dropdown .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: none;
                width: 100%;
                box-shadow: none;
                border: none;
                background: rgba(255,255,255,0.02);
                margin-top: 5px !important;
            }
            .btn-cyber-search { width: 100%; justify-content: center; margin-top: 15px; }
        }
    
    
    .navbar-nav .nav-item {
    letter-spacing: .2px !important;
    padding: 0px !important;
}







    /* --- HERO MAIN SECTION --- */
.futuristic-hero {
       position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 80px 0 50px;
    overflow: hidden;
    background-color: var(--dark-space, #0b0f19);
    margin:-68px 0px 0px 0px !important;
}

/* Ambient Background Lights */
.ambient-glow {
    position: absolute;
    width: 550px; height: 550px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    z-index: 1;
    animation: floatGlow 12s infinite alternate ease-in-out;
}
.glow-1 { top: -10%; left: -10%; background: var(--brand-orange, #df9227); }
.glow-2 { bottom: -10%; right: -5%; background: var(--neon-purple, #9d4edd); animation-delay: -6s; }
.glow-3 { top: 30%; left: 45%; width: 350px; height: 350px; background: var(--cyber-blue, #00f2fe); opacity: 0.18; }

@keyframes floatGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.25) translate(40px, 30px); }
}

.svg-bg-grid {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    opacity: 0.12;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 35px 35px;
}

/* Background Floating Vector Shapes */
.vector-shape {
    position: absolute;
    z-index: 2;
    opacity: 0.25;
    animation: rotateFloat 22s infinite linear;
    pointer-events: none;
}
.shape-1 { top: 12%; left: 8%; width: 70px; }
.shape-2 { bottom: 15%; left: 45%; width: 90px; animation-direction: reverse; animation-duration: 28s; }
.shape-3 { top: 18%; right: 45%; width: 60px; animation-duration: 18s; }

@keyframes rotateFloat {
    0% { transform: rotate(0deg) translateY(0px); }
    50% { transform: rotate(180deg) translateY(-20px); }
    100% { transform: rotate(360deg) translateY(0px); }
}

/* --- TYPOGRAPHY & BADGES --- */
.hero-content-wrapper { position: relative; z-index: 10; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 25px; color: #fff;
    backdrop-filter: blur(10px); box-shadow: 0 0 20px rgba(223, 146, 39, 0.2);
}
.hero-badge i { color: var(--brand-orange, #df9227); }

.hero-title {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: clamp(2.4rem, 5.5vw, 2.5rem);
    font-weight: 600; line-height: 1.15; letter-spacing: 0px;
    margin-bottom: 20px; color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--brand-orange, #df9227) 50%, #ffbe6b 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% auto; animation: shineText 5s linear infinite;
}

@keyframes shineText { to { background-position: 200% center; } }

.futuristic-hero .hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1rem)!important;
    color: #ffffff!important;
    max-width: 600px;
    margin: 0 auto 35px 0; font-weight: 400; line-height: 1.6;
}

/* --- AI GLASS SEARCH BAR --- */
.search-container { max-width: 650px; position: relative; }

.glass-search-box {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px; padding: 8px;
    display: flex; align-items: center;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(223, 146, 39, 0.15);
    transition: all 0.3s ease;
}

.glass-search-box:focus-within {
    border-color: var(--brand-orange, #df9227);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(223, 146, 39, 0.3);
    transform: translateY(-2px);
}

.search-icon-wrapper { padding: 0 15px 0 20px; font-size: 1.2rem; color: var(--brand-orange, #df9227); }

.glass-search-box input {
    background: transparent; border: none; color: #ffffff;
    font-size: 1.05rem; width: 100%; padding: 12px 5px;
    outline: none; font-weight: 500;
}
.glass-search-box input::placeholder { color: #64748b; }

.btn-search-submit {
    background: linear-gradient(135deg, var(--brand-orange, #df9227), #ff6b00);
    color: #ffffff; border: none; padding: 14px 28px;
    border-radius: 14px; font-weight: 700; font-size: 1rem;
    transition: all 0.3s ease; white-space: nowrap;
    box-shadow: 0 4px 15px rgba(223, 146, 39, 0.4);
}
.btn-search-submit:hover {
    transform: scale(1.03); box-shadow: 0 6px 20px rgba(223, 146, 39, 0.6); color: #ffffff;
}

.quick-tags {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 10px; margin-top: 18px; font-size: 0.85rem; color: #94a3b8;
}

.tag-pill {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1; padding: 4px 14px; border-radius: 50px;
    text-decoration: none; transition: all 0.2s ease;
}
.tag-pill:hover {
    background: rgba(223, 146, 39, 0.2); border-color: var(--brand-orange, #df9227);
    color: #ffffff; transform: translateY(-2px);
}

/* --- RIGHT COLUMN: STUDENT 3D COMPOSITION --- */
.student-visual-composition {
    position: relative;
    display: inline-block;
    max-width: 450px;
    width: 100%;
    z-index: 5;
}

/* Neon Gradient Blob behind student */
.vector-blob-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 320px; height: 380px;
    background: linear-gradient(135deg, rgba(223, 146, 39, 0.4), rgba(157, 78, 221, 0.4), rgba(0, 242, 254, 0.2));
    filter: blur(40px);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -2;
    animation: morphBlob 10s infinite alternate ease-in-out;
}

@keyframes morphBlob {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(-50%, -50%) rotate(0deg); }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(-50%, -50%) rotate(15deg) scale(1.08); }
}

/* Rotating SVG Ring */
.student-backdrop-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 105%; height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: spinRing 25s infinite linear;
}

@keyframes spinRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.student-main-img {
    position: relative;
    z-index: 5;
    max-height: 540px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
    animation: gentleFloat 6s infinite ease-in-out;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Floating Stat Cards around student */
.floating-stat-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px; border-radius: 16px;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    z-index: 10;
}

.card-top-left {
    top: 15%; left: -20px;
    animation: floatCard 5s infinite ease-in-out;
}

.card-bottom-right {
    bottom: 12%; right: -15px;
    animation: floatCard 6s infinite ease-in-out;
    animation-delay: -2.5s;
}

.floating-mini-badge {
    position: absolute;
    top: 50%; right: -25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px; border-radius: 30px;
    color: #fff; font-size: 0.75rem; font-weight: 600;
    backdrop-filter: blur(10px); z-index: 8;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: floatCard 7s infinite ease-in-out;
    animation-delay: -4s;
}

.stat-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.icon-orange { background: rgba(223, 146, 39, 0.2); color: var(--brand-orange, #df9227); }
.icon-green { background: rgba(16, 185, 129, 0.2); color: #10b981; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991.98px) {
    .futuristic-hero { padding: 80px 0 50px; }
    .hero-subtitle { margin: 0 auto 30px auto; }
    .search-container { margin: 0 auto !important; }
    .glass-search-box { flex-direction: column; padding: 12px; gap: 10px; }
    .glass-search-box input { text-align: center; padding: 8px 0; }
    .search-icon-wrapper { display: none; }
    .btn-search-submit { width: 100%; padding: 12px; }
    
    .student-visual-composition { max-width: 340px; margin-top: 40px; }
    .student-main-img { max-height: 420px; }
    .card-top-left { left: 5px; top: 10%; }
    .card-bottom-right { right: 5px; bottom: 5%; }
    .floating-mini-badge { display: none; } /* Clean look on mobile */
}

/* course explore */

/* --- EXPLORE SECTION BACKGROUND --- */
.futuristic-explore-section {
    position: relative;
    padding: 100px 0;
    background-color: #080b11;
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.explore-glow {
    position: absolute;
    width: 450px; height: 450px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}
.glow-left { top: 10%; left: -10%; background: #df9227; }
.glow-right { bottom: 10%; right: -10%; background: #00f2fe; }

.cyber-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* --- SECTION HEADER --- */
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px; border-radius: 30px;
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 15px; color: #df9227;
}

.explore-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 15px;
}

.explore-subtitle {
    color: #94a3b8; font-size: 1.05rem; max-width: 600px; margin: 0 auto;
}

/* --- FUTURISTIC GLASS TABS --- */
.glass-tab-container {
    display: inline-flex; flex-wrap: wrap; gap: 10px;
    background: rgba(15, 23, 42, 0.7);
    padding: 8px; border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-tab-btn {
    background: transparent; border: none; color: #94a3b8;
    padding: 10px 22px; border-radius: 40px;
    font-size: 0.95rem; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-tab-btn i { font-size: 1rem; transition: transform 0.3s ease; }

.glass-tab-btn:hover { color: #ffffff; background: rgba(255, 255, 255, 0.05); }
.glass-tab-btn:hover i { transform: scale(1.2) rotate(-5deg); }

.glass-tab-btn.active {
    background: linear-gradient(135deg, #df9227, #ff6b00);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(223, 146, 39, 0.4);
}

/* --- 3D CYBER COURSE CARDS --- */

/* Core Card Container */
.cyber-course-card {
    background: var(--glass); /* Using your defined --glass variable */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent; /* Prepare for hover border effect */
}

/* Hover Effect: The "Lift" */
.cyber-course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Image Styling */
.card-image-box {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.course-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cyber-course-card:hover .course-img {
    transform: scale(1.08);
}

.course-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 6px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Typography */
.course-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.course-title a {
    color: white;
    text-decoration: none;
}

.course-excerpt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Corner SVG Animation */
.card-corner-svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    transition: transform 0.3s ease;
}

.cyber-course-card:hover .card-corner-svg {
    transform: rotate(90deg);
}

/* Footer Link */
.btn-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyber-blue);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-explore-link:hover {
    gap: 15px;
    color: white;
}
.cyber-course-card:hover .btn-explore-link { color: #ffffff; }
.cyber-course-card:hover .btn-explore-link i { transform: translateX(6px); color: #df9227; }

/* Decorative Bottom Left Corner SVG */
.card-corner-svg {
    position: absolute; bottom: 0; left: 0; width: 20px; height: 20px;
    opacity: 0.5; transition: all 0.3s ease; pointer-events: none;
}
.cyber-course-card:hover .card-corner-svg { opacity: 1; transform: scale(1.2); }

/* --- COLOR VARIATIONS FOR DIFFERENT TABS --- */
/* Cyan Variation (PG Courses) */
.card-cyan:hover { border-color: rgba(0, 242, 254, 0.5); box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 25px rgba(0, 242, 254, 0.2); }
.card-cyan .card-glow-layer { background: radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.15) 0%, transparent 70%); }
.card-cyan:hover .course-title a, .card-cyan:hover .link-cyan i { color: #00f2fe; }
.tag-cyan { background: rgba(0, 242, 254, 0.85); color: #080b11; font-weight: 800; }
.link-cyan { color: #00f2fe; }

/* Purple Variation (UG Courses) */
.card-purple:hover { border-color: rgba(157, 78, 221, 0.5); box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 25px rgba(157, 78, 221, 0.2); }
.card-purple .card-glow-layer { background: radial-gradient(circle at 50% 0%, rgba(157, 78, 221, 0.15) 0%, transparent 70%); }
.card-purple:hover .course-title a, .card-purple:hover .link-purple i { color: #9d4edd; }
.tag-purple { background: rgba(157, 78, 221, 0.9); }
.link-purple { color: #9d4edd; }

/* Green Variation (Diploma) */
.card-green:hover { border-color: rgba(16, 185, 129, 0.5); box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 25px rgba(16, 185, 129, 0.2); }
.card-green .card-glow-layer { background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.15) 0%, transparent 70%); }
.card-green:hover .course-title a, .card-green:hover .link-green i { color: #10b981; }
.tag-green { background: rgba(16, 185, 129, 0.9); }
.link-green { color: #10b981; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 767.98px) {
    .glass-tab-container { border-radius: 20px; justify-content: center; width: 100%; }
    .glass-tab-btn { width: 100%; justify-content: center; }
    .card-image-box { height: 200px; }
}