        /* ─── Hero Yellow Bubbles ─── */
        .hero-bubbles {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 300px;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
            margin-left: -40px;
        }
        .hero-bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(249, 211, 71, 0.45), rgba(249, 211, 71, 0.2));
            filter: blur(1px);
            animation: bubbleFloat 12s ease-in-out infinite;
        }
        .hero-bubble:nth-child(1) { width: 120px; height: 120px; left: 100px; top: 15%; animation-delay: 0s; animation-duration: 14s; }
        .hero-bubble:nth-child(2) { width: 80px; height: 80px; left: 180px; top: 45%; animation-delay: 2s; animation-duration: 11s; }
        .hero-bubble:nth-child(3) { width: 150px; height: 150px; left: 120px; top: 70%; animation-delay: 4s; animation-duration: 16s; }
        .hero-bubble:nth-child(4) { width: 60px; height: 60px; left: 200px; top: 25%; animation-delay: 1s; animation-duration: 10s; }
        .hero-bubble:nth-child(5) { width: 100px; height: 100px; left: 150px; top: 85%; animation-delay: 3s; animation-duration: 13s; }
        @keyframes bubbleFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(15px, -20px) scale(1.05); }
            50% { transform: translate(-10px, 15px) scale(0.95); }
            75% { transform: translate(20px, 10px) scale(1.02); }
        }

        /* ─── Hero Mobile Yellow Bubbles (Upward direction) ─── */
        .hero-mobile-bubbles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }
        .hero-mobile-bubbles .bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(249, 211, 71, 0.5), rgba(249, 211, 71, 0.2));
            filter: blur(1px);
            animation: mobileBubbleFloat 10s ease-in-out infinite;
        }
        .hero-mobile-bubbles .bubble:nth-child(1) { width: 90px; height: 90px; left: 10%; bottom: -100px; animation-delay: 0s; animation-duration: 12s; }
        .hero-mobile-bubbles .bubble:nth-child(2) { width: 60px; height: 60px; left: 75%; bottom: -80px; animation-delay: 2s; animation-duration: 9s; }
        .hero-mobile-bubbles .bubble:nth-child(3) { width: 120px; height: 120px; left: 40%; bottom: -120px; animation-delay: 4s; animation-duration: 14s; }
        .hero-mobile-bubbles .bubble:nth-child(4) { width: 50px; height: 50px; left: 20%; bottom: -60px; animation-delay: 1s; animation-duration: 8s; }
        .hero-mobile-bubbles .bubble:nth-child(5) { width: 80px; height: 80px; left: 85%; bottom: -90px; animation-delay: 3s; animation-duration: 11s; }

        @keyframes mobileBubbleFloat {
            0% { transform: translateY(0) translateX(0) scale(0.8); opacity: 0; }
            10% { opacity: 0.8; }
            50% { transform: translateY(-50vh) translateX(20px) scale(1.1); opacity: 0.7; }
            90% { opacity: 0.8; }
            100% { transform: translateY(-110vh) translateX(-20px) scale(0.9); opacity: 0; }
        }

        .section-slant-tech {
            clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
            margin-top: -8vh;
            padding-top: 12vh;
        }

        .vertical-text-90 {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            white-space: nowrap;
        }

        .lkmmpd-stroke {
            display: inline-block;
            -webkit-text-stroke: 2px #064fbd;
            paint-order: stroke fill;
            position: relative;
        }

        /* ─── Hero Mobile Responsive ─── */
        @media (max-width: 768px) {
            header.hero-mask-bottom {
                min-height: 100vh !important;
                height: 100vh !important;
                padding-top: 0 !important;
                padding-bottom: 0 !important;
                display: flex !important;
                flex-direction: column !important;
                justify-content: flex-start !important;
                position: relative !important;
                overflow: hidden !important;
            }

            /* Hide bubbles on mobile - replace with mobile version */
            .hero-bubbles {
                display: none;
            }

            /* Mobile Yellow Bubbles */
            .hero-mobile-bubbles {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                pointer-events: none;
                overflow: hidden;
            }

            .hero-mobile-bubbles .bubble {
                position: absolute;
                border-radius: 50%;
                background: radial-gradient(circle at 30% 30%, rgba(249, 211, 71, 0.5), rgba(249, 211, 71, 0.2));
                filter: blur(1px);
                animation: mobileBubbleFloat 10s ease-in-out infinite;
            }

            .hero-mobile-bubbles .bubble:nth-child(1) {
                width: 90px;
                height: 90px;
                left: 10%;
                bottom: -100px;
                animation-delay: 0s;
                animation-duration: 12s;
            }

            .hero-mobile-bubbles .bubble:nth-child(2) {
                width: 60px;
                height: 60px;
                left: 75%;
                bottom: -80px;
                animation-delay: 2s;
                animation-duration: 9s;
            }

            .hero-mobile-bubbles .bubble:nth-child(3) {
                width: 120px;
                height: 120px;
                left: 40%;
                bottom: -120px;
                animation-delay: 4s;
                animation-duration: 14s;
            }

            .hero-mobile-bubbles .bubble:nth-child(4) {
                width: 50px;
                height: 50px;
                left: 20%;
                bottom: -60px;
                animation-delay: 1s;
                animation-duration: 8s;
            }

            .hero-mobile-bubbles .bubble:nth-child(5) {
                width: 80px;
                height: 80px;
                left: 85%;
                bottom: -90px;
                animation-delay: 3s;
                animation-duration: 11s;
            }

            /* Hide gradient blurs */
            header.hero-mask-bottom > .absolute {
                display: none;
            }

            /* Hide the desktop tech-border background */
            header.hero-mask-bottom > .tech-border {
                display: none;
            }

            /* Hide glass cards container on mobile */
            #glass-cards-area,
            .glass-card-3d {
                display: none !important;
            }

            /* Hide the desktop container */
            header.hero-mask-bottom > .max-w-container-max {
                display: none !important;
            }

            /* Mobile hero content */
            .hero-mobile-content {
                display: flex !important;
                flex-direction: column;
                width: 100%;
                height: 100%;
                position: relative;
            }

            /* Student image - fills entire screen */
            .hero-mobile-image {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
            }

            .hero-mobile-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
            }

            /* Gradient overlay - subtle, lets image shine */
            .hero-mobile-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(
                    to top,
                    rgba(255, 255, 255, 0.85) 0%,
                    rgba(255, 255, 255, 0.4) 30%,
                    rgba(0, 0, 0, 0.1) 50%,
                    rgba(0, 0, 0, 0.15) 70%,
                    rgba(0, 0, 0, 0.1) 100%
                );
                z-index: 2;
            }

            /* Text content - transparent glassmorphism */
            .hero-mobile-text {
                position: absolute;
                top: 36%;
                left: 16px;
                right: 16px;
                transform: translateY(-50%);
                z-index: 3;
                color: #1a2332;
                background: rgba(255, 255, 255, 0.45);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, 0.5);
                border-radius: 20px;
                padding: 24px 20px;
                box-shadow: 
                    0 8px 32px rgba(0, 0, 0, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 0.6);
            }

            /* Bottom decorative wave */
            .hero-mobile-text::after {
                content: '';
                position: absolute;
                bottom: -30px;
                left: 50%;
                transform: translateX(-50%);
                width: 40px;
                height: 4px;
                background: rgba(255, 255, 255, 0.6);
                border-radius: 2px;
            }

            /* Yellow floating dots */
            .hero-mobile-dots {
                position: absolute;
                top: 55%;
                left: 0;
                right: 0;
                height: 200px;
                z-index: 2;
                pointer-events: none;
                overflow: hidden;
            }

            .hero-mobile-dots .dot {
                position: absolute;
                width: 8px;
                height: 8px;
                background: #f9d347;
                border-radius: 50%;
                opacity: 0;
                animation: dotFloat 4s ease-in-out infinite;
            }

            .hero-mobile-dots .dot:nth-child(1) {
                left: 15%;
                animation-delay: 0s;
                animation-duration: 5s;
            }

            .hero-mobile-dots .dot:nth-child(2) {
                left: 35%;
                animation-delay: 0.8s;
                animation-duration: 4.5s;
                width: 6px;
                height: 6px;
            }

            .hero-mobile-dots .dot:nth-child(3) {
                left: 55%;
                animation-delay: 1.6s;
                animation-duration: 5.5s;
                width: 10px;
                height: 10px;
            }

            .hero-mobile-dots .dot:nth-child(4) {
                left: 75%;
                animation-delay: 0.4s;
                animation-duration: 4s;
            }

            .hero-mobile-dots .dot:nth-child(5) {
                left: 90%;
                animation-delay: 2s;
                animation-duration: 6s;
                width: 5px;
                height: 5px;
            }

            @keyframes dotFloat {
                0% {
                    bottom: -10px;
                    opacity: 0;
                    transform: scale(0.5);
                }
                20% {
                    opacity: 0.8;
                    transform: scale(1);
                }
                80% {
                    opacity: 0.6;
                    transform: scale(0.9);
                }
                100% {
                    bottom: 180px;
                    opacity: 0;
                    transform: scale(0.3);
                }
            }

            /* Quick Stats */
            .hero-mobile-stats {
                position: absolute;
                bottom: 120px;
                left: 16px;
                right: 16px;
                z-index: 10;
                display: flex;
                justify-content: center;
                gap: 24px;
                background: rgba(255, 255, 255, 0.65);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-radius: 16px;
                padding: 12px 20px;
                border: 1px solid rgba(255, 255, 255, 0.8);
            }

            .hero-mobile-stats .stat-item {
                text-align: center;
            }

            .hero-mobile-stats .stat-value {
                font-size: 1.25rem;
                font-weight: 800;
                color: #064fbd;
                line-height: 1;
            }

            .hero-mobile-stats .stat-label {
                font-size: 0.625rem;
                font-weight: 600;
                color: #475569;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-top: 4px;
            }

            /* Swipe Up Indicator */
            .hero-mobile-scroll {
                position: absolute;
                bottom: 24px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 10;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 8px;
                animation: scrollBounce 2s ease-in-out infinite;
                background: rgba(255, 255, 255, 0.65);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-radius: 12px;
                padding: 8px 16px;
                border: 1px solid rgba(255, 255, 255, 0.8);
            }

            .hero-mobile-scroll .scroll-text {
                font-size: 0.625rem;
                font-weight: 600;
                color: #475569;
                text-transform: uppercase;
                letter-spacing: 0.1em;
            }

            .hero-mobile-scroll .scroll-arrow {
                width: 20px;
                height: 20px;
                border-left: 2px solid #064fbd;
                border-top: 2px solid #064fbd;
                transform: rotate(45deg);
                opacity: 0.7;
            }

            @keyframes scrollBounce {
                0%, 100% { transform: translateX(-50%) translateY(0); }
                50% { transform: translateX(-50%) translateY(-8px); }
            }

            .hero-mobile-text .hero-badge {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                background: rgba(255, 255, 255, 0.9);
                border: 1px solid rgba(6, 79, 189, 0.15);
                padding: 6px 14px;
                border-radius: 999px;
                font-size: 10px;
                font-weight: 700;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                color: #064fbd;
                margin-bottom: 16px;
            }

            .hero-mobile-text .hero-badge .dot {
                width: 6px;
                height: 6px;
                background: #064fbd;
                border-radius: 50%;
                animation: pulse 2s infinite;
            }

            .hero-mobile-text h1 {
                font-size: 1.5rem;
                font-weight: 800;
                line-height: 1.2;
                margin-bottom: 12px;
                color: #0a1628;
                text-shadow: none;
            }

            .hero-mobile-text h1 span {
                color: #064fbd;
                text-shadow: none;
            }

            .hero-mobile-text p {
                font-size: 0.875rem;
                line-height: 1.6;
                color: #ffffff;
                margin-bottom: 20px;
                max-width: 320px;
                text-shadow: none;
            }

            .hero-mobile-text .hero-buttons {
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .hero-mobile-text .btn-primary {
                background: #064fbd;
                color: white;
                padding: 10px 20px;
                border-radius: 999px;
                font-size: 12px;
                font-weight: 700;
                border: none;
                cursor: pointer;
                box-shadow: 0 4px 15px rgba(6,79,189,0.3);
                transition: all 0.3s ease;
            }

            .hero-mobile-text .btn-primary:hover {
                background: #053d9e;
                box-shadow: 0 6px 20px rgba(6,79,189,0.4);
            }

            .hero-mobile-text .btn-outline {
                display: flex;
                align-items: center;
                gap: 6px;
                background: white;
                color: #064fbd;
                padding: 10px 16px;
                border-radius: 999px;
                font-size: 12px;
                font-weight: 700;
                border: 1px solid rgba(6, 79, 189, 0.2);
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .hero-mobile-text .btn-outline:hover {
                background: #f0f4ff;
                border-color: rgba(6, 79, 189, 0.3);
            }

            .hero-mobile-text .btn-outline .material-symbols-outlined {
                font-size: 18px;
                color: #064fbd;
            }
        }

@media (min-width: 1024px) and (max-width: 1366px) {
    header.hero-mask-bottom {
        min-height: 750px !important;
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }
    header.hero-mask-bottom > .max-w-container-max {
        max-width: 1180px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    #glass-cards-area {
        width: 100% !important;
        max-width: 610px !important;
        margin-top: 20px !important;
    }
    .glass-card-3d.gc-1,
    .glass-card-3d.gc-2 {
        top: -25px !important;
    }
    .glass-card-3d.gc-3,
    .glass-card-3d.gc-4 {
        bottom: -5px !important;
    }
    .glass-card-3d.gc-2,
    .glass-card-3d.gc-4 {
        left: 610px !important;
    }
}

        @media (max-width: 480px) {
            .hero-mobile-text {
                left: 12px;
                right: 12px;
                padding: 20px 16px;
                border-radius: 16px;
            }

            .hero-mobile-text h1 {
                font-size: 1.25rem;
            }

            .hero-mobile-text p {
                font-size: 0.8125rem;
            }
        }

