/* =============================================
           BEYOND EDUTECH — PREMIUM STYLESHEET
           ============================================= */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Primary Palette */
            --primary: #4361EE;
            --primary-dark: #3A0CA3;
            --primary-light: #7B93FF;
            --accent: #7209B7;
            --accent-light: #B5179E;
            --secondary: #4CC9F0;
            --secondary-dark: #4895EF;

            /* Vibrant accents */
            --coral: #F72585;
            --mint: #2EC4B6;
            --amber: #FF9F1C;
            --lime: #06D6A0;

            /* Neutrals */
            --bg-white: #FFFFFF;
            --bg-light: #F0F4FF;
            --bg-soft: #F8FAFF;
            --text-dark: #0F172A;
            --text-body: #475569;
            --text-muted: #94A3B8;
            --border: #E2E8F0;

            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(67, 97, 238, 0.06);
            --shadow-md: 0 8px 30px rgba(67, 97, 238, 0.10);
            --shadow-lg: 0 16px 50px rgba(67, 97, 238, 0.14);
            --shadow-xl: 0 24px 70px rgba(67, 97, 238, 0.18);
            --shadow-glow: 0 0 40px rgba(67, 97, 238, 0.20);

            /* Radius */
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --radius-full: 9999px;

            /* Transitions */
            --ease: cubic-bezier(0.4, 0, 0.2, 1);
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

            /* Gradients */
            --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-primary: linear-gradient(135deg, #4361EE 0%, #7209B7 100%);
            --gradient-warm: linear-gradient(135deg, #F72585 0%, #FF9F1C 100%);
            --gradient-cool: linear-gradient(135deg, #4CC9F0 0%, #4361EE 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-body);
            background: var(--bg-white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

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

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-16px);
            }
        }

        @keyframes float-slow {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(3deg);
            }
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 15px rgba(67, 97, 238, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        @keyframes rotate-slow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes gradient-flow {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes blob {

            0%,
            100% {
                border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
                transform: translate(0, 0);
            }

            25% {
                border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
                transform: translate(10px, -10px);
            }

            50% {
                border-radius: 50% 60% 30% 60%/30% 40% 70% 60%;
                transform: translate(-5px, 10px);
            }

            75% {
                border-radius: 60% 30% 50% 40%/60% 70% 30% 50%;
                transform: translate(5px, 5px);
            }
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes count-pop {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }

            100% {
                transform: scale(1);
            }
        }

        @keyframes text-glow {

            0%,
            100% {
                text-shadow: 0 0 20px rgba(67, 97, 238, 0.3);
            }

            50% {
                text-shadow: 0 0 40px rgba(114, 9, 183, 0.4);
            }
        }

        /* Twinkling Stars — reusable on any dark section */
        @keyframes twinkle {

            0%,
            100% {
                opacity: 0.1;
                transform: scale(0.8);
            }

            50% {
                opacity: 0.9;
                transform: scale(1.3);
            }
        }

        .section-stars {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .section-stars .star {
            position: absolute;
            background: #fff;
            border-radius: 50%;
            animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }

        .reveal.active,
        .reveal-left.active,
        .reveal-right.active,
        .reveal-scale.active {
            opacity: 1;
            transform: translateY(0) translateX(0) scale(1);
        }

        .delay-1 {
            transition-delay: 0.1s !important;
        }

        .delay-2 {
            transition-delay: 0.2s !important;
        }

        .delay-3 {
            transition-delay: 0.3s !important;
        }

        .delay-4 {
            transition-delay: 0.4s !important;
        }

        .delay-5 {
            transition-delay: 0.5s !important;
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 14px 0;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: #fff;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
            padding: 8px 0;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .navbar-brand .brand-logo {
            height: 46px;
            width: 46px;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(0, 150, 220, 0.18));
            transition: var(--transition);
            border-radius: 50%;
        }

        .navbar.scrolled .brand-logo {
            height: 38px;
            width: 38px;
        }

        .navbar-brand:hover .brand-logo {
            filter: drop-shadow(0 4px 14px rgba(0, 150, 220, 0.35));
            transform: scale(1.08);
        }

        .navbar-brand .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .navbar-brand .brand-name {
            font-size: 1.18rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.01em;
            background: linear-gradient(135deg, #1a2a5e 0%, #2d4a9e 50%, #0097dc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-brand .brand-tagline {
            font-size: 0.58rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .navbar.scrolled .brand-name {
            font-size: 1.05rem;
        }

        .navbar.scrolled .brand-tagline {
            font-size: 0.52rem;
        }

        .nav-links {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .nav-links a {
            padding: 8px 16px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-body);
            border-radius: var(--radius-sm);
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            right: 50%;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: var(--transition);
        }

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

        .nav-links a:hover::after {
            left: 16px;
            right: 16px;
        }

        .nav-links .nav-cta {
            background: var(--gradient-primary);
            color: #fff !important;
            padding: 10px 24px;
            border-radius: var(--radius-full);
            font-weight: 600;
            margin-left: 12px;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        }

        .nav-links .nav-cta::after {
            display: none;
        }

        .nav-links .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
        }



        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 26px;
            height: 2.5px;
            background: var(--text-dark);
            border-radius: 4px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 130px 0 90px;
            background: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 25%, #ede4ff 45%, #f8e8ff 65%, #fce8f3 85%, #fff5f9 100%);
        }

        /* Animated blobs */
        .hero-blob {
            position: absolute;
            filter: blur(90px);
            opacity: 0.55;
            pointer-events: none;
            animation: blob 14s ease-in-out infinite;
        }

        .hero-blob.blob-1 {
            width: 550px;
            height: 550px;
            background: rgba(67, 97, 238, 0.18);
            top: -120px;
            right: -80px;
        }

        .hero-blob.blob-2 {
            width: 450px;
            height: 450px;
            background: rgba(114, 9, 183, 0.14);
            bottom: -100px;
            left: -60px;
            animation-delay: 4s;
        }

        .hero-blob.blob-3 {
            width: 350px;
            height: 350px;
            background: rgba(247, 37, 133, 0.1);
            top: 40%;
            left: 35%;
            animation-delay: 8s;
        }

        /* Floating geometric shapes */
        .geo-shape {
            position: absolute;
            pointer-events: none;
            opacity: 0.4;
        }

        .geo-shape.circle-1 {
            width: 80px;
            height: 80px;
            border: 3px solid var(--primary);
            border-radius: 50%;
            top: 15%;
            right: 8%;
            animation: float 7s ease-in-out infinite;
        }

        .geo-shape.circle-2 {
            width: 40px;
            height: 40px;
            background: var(--coral);
            border-radius: 50%;
            bottom: 25%;
            right: 20%;
            animation: float 5s ease-in-out infinite 2s;
            opacity: 0.2;
        }

        .geo-shape.ring {
            width: 120px;
            height: 120px;
            border: 3px solid var(--accent);
            border-radius: 50%;
            top: 60%;
            left: 5%;
            animation: float-slow 9s ease-in-out infinite 1s;
            opacity: 0.15;
        }

        .geo-shape.dots {
            width: 120px;
            height: 120px;
            background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
            background-size: 18px 18px;
            top: 25%;
            left: 3%;
            animation: float-slow 11s ease-in-out infinite;
            opacity: 0.2;
        }

        .geo-shape.plus {
            width: 30px;
            height: 30px;
            top: 40%;
            right: 12%;
            animation: float 6s ease-in-out infinite 3s;
        }

        .geo-shape.plus::before,
        .geo-shape.plus::after {
            content: '';
            position: absolute;
            background: var(--accent-light);
            border-radius: 2px;
        }

        .geo-shape.plus::before {
            width: 100%;
            height: 4px;
            top: 50%;
            transform: translateY(-50%);
        }

        .geo-shape.plus::after {
            width: 4px;
            height: 100%;
            left: 50%;
            transform: translateX(-50%);
        }


        .hero .container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInLeft 1s var(--ease) forwards;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(67, 97, 238, 0.15);
            border-radius: var(--radius-full);
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 16px rgba(67, 97, 238, 0.08);
            letter-spacing: 0.02em;
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
        }

        .hero-badge .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--lime);
            border-radius: 50%;
            animation: pulse-ring 2s infinite;
        }

        .hero h1 {
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.08;
            color: var(--text-dark);
            margin-bottom: 26px;
            letter-spacing: -0.03em;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #4361EE 0%, #7209B7 50%, #F72585 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradient-flow 5s ease-in-out infinite;
        }

        .hero h1 .line-accent {
            position: relative;
        }

        .hero h1 .line-accent::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 12px;
            background: rgba(247, 37, 133, 0.15);
            border-radius: 6px;
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1.12rem;
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 42px;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: var(--radius-full);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: 0.5s;
        }

        .btn:hover::before {
            transform: translateX(100%);
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: #fff;
            box-shadow: 0 6px 25px rgba(67, 97, 238, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(67, 97, 238, 0.45);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(1);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.7);
            color: var(--primary);
            border: 2px solid rgba(67, 97, 238, 0.2);
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            background: rgba(67, 97, 238, 0.06);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .btn svg {
            width: 18px;
            height: 18px;
        }

        .hero-stats {
            display: flex;
            gap: 16px;
            margin-top: 48px;
        }

        .hero-stat {
            text-align: center;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            border-radius: var(--radius-md);
            border: 1px solid rgba(67, 97, 238, 0.08);
            box-shadow: 0 2px 12px rgba(67, 97, 238, 0.05);
            flex: 1;
            transition: var(--transition);
        }

        .hero-stat:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.1);
            border-color: rgba(67, 97, 238, 0.15);
        }

        .hero-stat h3 {
            font-size: 1.6rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero-stat p {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 600;
            margin-top: 2px;
        }

        /* Hero visual — image card */
        .hero-visual {
            position: relative;
            animation: fadeInRight 1s var(--ease) forwards;
        }

        .hero-image-stack {
            position: relative;
        }

        .hero-img-main {
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            box-shadow: 0 25px 60px rgba(67, 97, 238, 0.14), 0 10px 24px rgba(114, 9, 183, 0.08);
            border: 3px solid rgba(255, 255, 255, 0.85);
            transition: var(--transition);
        }

        .hero-img-main::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: calc(var(--radius-lg) + 4px);
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.2), rgba(114, 9, 183, 0.15), rgba(247, 37, 133, 0.1));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .hero-img-main:hover::after {
            opacity: 1;
        }

        .hero-img-main img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.8s var(--ease);
        }

        .hero-img-main:hover img {
            transform: scale(1.05);
        }

        .hero-img-main .img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.5) 100%);
            pointer-events: none;
        }

        .hero-img-main .img-tag {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .img-tag .tag-dot {
            width: 8px;
            height: 8px;
            background: var(--lime);
            border-radius: 50%;
        }

        /* Floating cards on hero */
        .hero-float {
            position: absolute;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-radius: var(--radius-md);
            padding: 14px 20px;
            box-shadow: 0 8px 30px rgba(67, 97, 238, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .hero-float:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(67, 97, 238, 0.15);
        }

        .hero-float.hf-1 {
            top: -20px;
            right: -30px;
            animation: float 6s ease-in-out infinite;
        }

        .hero-float.hf-2 {
            bottom: 20px;
            left: -30px;
            animation: float 5s ease-in-out infinite 2s;
        }

        .hero-float .hf-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-float .hf-icon svg {
            width: 20px;
            height: 20px;
        }

        .hf-icon.hf-green {
            background: rgba(6, 214, 160, 0.15);
            color: var(--lime);
        }

        .hf-icon.hf-amber {
            background: rgba(255, 159, 28, 0.15);
            color: var(--amber);
        }

        .hero-float .hf-text {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .hero-float .hf-sub {
            font-size: 0.7rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Mini image thumbs */
        .hero-thumbs {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            justify-content: center;
        }

        .hero-thumb {
            width: 80px;
            height: 56px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 2px solid #fff;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            opacity: 0.7;
        }

        .hero-thumb:hover,
        .hero-thumb.active {
            opacity: 1;
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.25);
        }

        .hero-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: 110px 0;
        }

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

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
            padding: 6px 18px;
            border-radius: var(--radius-full);
            background: rgba(67, 97, 238, 0.06);
            border: 1px solid rgba(67, 97, 238, 0.1);
        }

        .section-label svg {
            width: 14px;
            height: 14px;
        }

        .section-title {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 18px;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .section-title .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-body);
            line-height: 1.8;
        }

        /* ========== SERVICE CARDS (IMAGE-BASED) ========== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .service-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border);
            transition: var(--transition);
            cursor: pointer;
            position: relative;

        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(67, 97, 238, 0.2);
        }

        .service-card-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--ease);
        }

        .service-card:hover .service-card-img img {
            transform: scale(1.1);
        }

        .service-card-img .card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            font-size: 0.7rem;
            font-weight: 700;
            color: #fff;
            backdrop-filter: blur(8px);
        }

        .card-badge.badge-blue {
            background: rgba(67, 97, 238, 0.85);
        }

        .card-badge.badge-purple {
            background: rgba(114, 9, 183, 0.85);
        }

        .card-badge.badge-teal {
            background: rgba(46, 196, 182, 0.85);
        }

        .card-badge.badge-coral {
            background: rgba(247, 37, 133, 0.85);
        }

        .service-card-img .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.4) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover .card-overlay {
            opacity: 1;
        }

        .service-card-body {
            padding: 24px;
            position: relative;
        }

        .service-card-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 24px;
            right: 24px;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
            border-radius: 3px;
        }

        .service-card:hover .service-card-body::before {
            transform: scaleX(1);
        }

        .service-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            transition: var(--transition);
        }

        .service-card-icon svg {
            width: 24px;
            height: 24px;
        }

        .icon-blue {
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
        }

        .icon-purple {
            background: rgba(114, 9, 183, 0.1);
            color: var(--accent);
        }

        .icon-teal {
            background: rgba(46, 196, 182, 0.1);
            color: var(--mint);
        }

        .icon-coral {
            background: rgba(247, 37, 133, 0.1);
            color: var(--coral);
        }

        .service-card:hover .icon-blue {
            background: var(--primary);
            color: #fff;
        }

        .service-card:hover .icon-purple {
            background: var(--accent);
            color: #fff;
        }

        .service-card:hover .icon-teal {
            background: var(--mint);
            color: #fff;
        }

        .service-card:hover .icon-coral {
            background: var(--coral);
            color: #fff;
        }

        .service-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .service-card-body p {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--primary);
            transition: var(--transition);
        }

        .card-link:hover {
            gap: 12px;
        }

        .card-link svg {
            width: 16px;
            height: 16px;
        }

        /* ========== DETAILED SERVICES — IMMERSIVE 3D ========== */
        @keyframes programmes-float-particle {

            0%,
            100% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0.4;
            }

            25% {
                transform: translateY(-30px) translateX(15px) scale(1.2);
                opacity: 0.7;
            }

            50% {
                transform: translateY(-60px) translateX(-10px) scale(0.8);
                opacity: 0.3;
            }

            75% {
                transform: translateY(-30px) translateX(20px) scale(1.1);
                opacity: 0.6;
            }
        }

        @keyframes programmes-border-glow {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 0.8;
            }
        }

        @keyframes programmes-shimmer-sweep {
            0% {
                transform: translateX(-100%) rotate(25deg);
            }

            100% {
                transform: translateX(200%) rotate(25deg);
            }
        }

        @keyframes programmes-stat-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .programmes-immersive {
            padding: 120px 0;
            background: linear-gradient(180deg, #182255 0%, #202660 30%, #241b52 60%, #1c1544 80%, #182255 100%);
            position: relative;
            overflow: hidden;
        }

        .programmes-immersive::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 20% 30%, rgba(123, 147, 255, 0.18) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(181, 23, 158, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 90%, rgba(76, 201, 240, 0.1) 0%, transparent 40%),
                radial-gradient(ellipse at 50% 50%, rgba(247, 37, 133, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        /* Floating particles */
        .prog-particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .prog-particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .prog-particle:nth-child(1) {
            width: 4px;
            height: 4px;
            background: rgba(67, 97, 238, 0.5);
            top: 15%;
            left: 10%;
            animation: programmes-float-particle 8s ease-in-out infinite;
        }

        .prog-particle:nth-child(2) {
            width: 6px;
            height: 6px;
            background: rgba(114, 9, 183, 0.4);
            top: 40%;
            right: 15%;
            animation: programmes-float-particle 10s ease-in-out 2s infinite;
        }

        .prog-particle:nth-child(3) {
            width: 3px;
            height: 3px;
            background: rgba(247, 37, 133, 0.5);
            bottom: 30%;
            left: 25%;
            animation: programmes-float-particle 7s ease-in-out 1s infinite;
        }

        .prog-particle:nth-child(4) {
            width: 5px;
            height: 5px;
            background: rgba(76, 201, 240, 0.4);
            top: 60%;
            right: 30%;
            animation: programmes-float-particle 9s ease-in-out 3s infinite;
        }

        .prog-particle:nth-child(5) {
            width: 4px;
            height: 4px;
            background: rgba(6, 214, 160, 0.4);
            top: 80%;
            left: 50%;
            animation: programmes-float-particle 11s ease-in-out 4s infinite;
        }

        .prog-particle:nth-child(6) {
            width: 3px;
            height: 3px;
            background: rgba(255, 159, 28, 0.4);
            top: 20%;
            right: 40%;
            animation: programmes-float-particle 8s ease-in-out 5s infinite;
        }

        /* Section header */
        .prog-header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 80px;
            position: relative;
            z-index: 2;
        }

        .prog-header .prog-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 22px;
            border-radius: var(--radius-full);
            background: rgba(67, 97, 238, 0.08);
            border: 1px solid rgba(67, 97, 238, 0.2);
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--primary-light);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 24px;
        }

        .prog-header .prog-label svg {
            width: 16px;
            height: 16px;
        }

        .prog-header h2 {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.15;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
        }

        .prog-header h2 .prog-gradient {
            background: linear-gradient(135deg, #7B93FF 0%, #B5179E 50%, #F72585 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradient-flow 4s ease-in-out infinite;
        }

        .prog-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Programme cards grid */
        .prog-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            position: relative;
            z-index: 2;
            perspective: 1200px;
        }

        /* Individual programme card */
        .prog-card-3d {
            position: relative;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            overflow: hidden;
            cursor: pointer;
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease, border-color 0.5s ease;
            transform-style: preserve-3d;
            will-change: transform, opacity;
        }

        .prog-card-3d::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 60%);
            pointer-events: none;
            z-index: 1;
        }

        /* Shimmer sweep on hover */
        .prog-card-3d::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 50%;
            height: 200%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
            transform: translateX(-100%) rotate(25deg);
            z-index: 3;
            pointer-events: none;
        }

        .prog-card-3d:hover::after {
            animation: programmes-shimmer-sweep 0.8s ease forwards;
        }

        .prog-card-3d:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(67, 97, 238, 0.15), 0 0 40px rgba(114, 9, 183, 0.08);
            border-color: rgba(123, 147, 255, 0.2);
        }

        /* Animated border glow */
        .prog-card-glow {
            position: absolute;
            inset: -1px;
            border-radius: 21px;
            background: linear-gradient(135deg, var(--primary), var(--accent), var(--coral), var(--primary));
            background-size: 300% 300%;
            animation: gradient-flow 6s ease-in-out infinite;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .prog-card-3d:hover .prog-card-glow {
            opacity: 0.4;
        }

        /* Image area */
        .prog-card-visual {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .prog-card-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
            filter: brightness(0.7) saturate(1.2);
        }

        .prog-card-3d:hover .prog-card-visual img {
            transform: scale(1.08);
            filter: brightness(0.85) saturate(1.3);
        }

        .prog-card-visual .prog-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(8, 12, 26, 0.9) 100%);
            pointer-events: none;
            z-index: 1;
        }

        /* Badge on image */
        .prog-card-visual .prog-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            padding: 6px 16px;
            border-radius: var(--radius-full);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            backdrop-filter: blur(12px);
        }

        .prog-badge.pb-flagship {
            background: rgba(67, 97, 238, 0.7);
            color: #fff;
            border: 1px solid rgba(123, 147, 255, 0.3);
        }

        .prog-badge.pb-popular {
            background: rgba(114, 9, 183, 0.7);
            color: #fff;
            border: 1px solid rgba(181, 23, 158, 0.3);
        }

        .prog-badge.pb-stem {
            background: rgba(46, 196, 182, 0.7);
            color: #fff;
            border: 1px solid rgba(46, 196, 182, 0.3);
        }

        .prog-badge.pb-active {
            background: rgba(247, 37, 133, 0.7);
            color: #fff;
            border: 1px solid rgba(247, 37, 133, 0.3);
        }

        /* Stats row floating over image bottom */
        .prog-stats-row {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            gap: 2px;
            z-index: 2;
            padding: 0 16px 16px;
        }

        .prog-stat-chip {
            flex: 1;
            text-align: center;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 10px 8px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }

        .prog-card-3d:hover .prog-stat-chip {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .prog-stat-chip h4 {
            font-size: 1rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }

        .prog-stat-chip p {
            font-size: 0.62rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Content area */
        .prog-card-content {
            padding: 28px 28px 32px;
            position: relative;
            z-index: 2;
        }

        .prog-card-content h3 {
            font-size: 1.35rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
            transition: var(--transition);
        }

        .prog-card-3d:hover .prog-card-content h3 {
            background: linear-gradient(135deg, #fff, var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .prog-card-content>p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.75;
            margin-bottom: 20px;
        }

        /* Feature list */
        .prog-features {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 24px;
        }

        .prog-feat {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 12px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .prog-feat:hover {
            background: rgba(255, 255, 255, 0.04);
            transform: translateX(4px);
        }

        .prog-feat-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prog-feat-icon.pfi-blue {
            background: rgba(67, 97, 238, 0.2);
            color: var(--primary-light);
        }

        .prog-feat-icon.pfi-purple {
            background: rgba(114, 9, 183, 0.2);
            color: #c77dff;
        }

        .prog-feat-icon.pfi-teal {
            background: rgba(46, 196, 182, 0.2);
            color: var(--mint);
        }

        .prog-feat-icon.pfi-coral {
            background: rgba(247, 37, 133, 0.2);
            color: #ff6b9d;
        }

        .prog-feat-icon svg {
            width: 12px;
            height: 12px;
        }

        .prog-feat span {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
            line-height: 1.4;
        }

        /* CTA link */
        .prog-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: var(--radius-full);
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .prog-card-cta.cta-blue {
            background: rgba(67, 97, 238, 0.15);
            color: var(--primary-light);
            border: 1px solid rgba(67, 97, 238, 0.25);
        }

        .prog-card-cta.cta-purple {
            background: rgba(114, 9, 183, 0.15);
            color: #c77dff;
            border: 1px solid rgba(114, 9, 183, 0.25);
        }

        .prog-card-cta.cta-teal {
            background: rgba(46, 196, 182, 0.15);
            color: var(--mint);
            border: 1px solid rgba(46, 196, 182, 0.25);
        }

        .prog-card-cta.cta-coral {
            background: rgba(247, 37, 133, 0.15);
            color: #ff6b9d;
            border: 1px solid rgba(247, 37, 133, 0.25);
        }

        .prog-card-cta:hover {
            gap: 14px;
            transform: translateX(4px);
        }

        .prog-card-cta svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .prog-card-cta:hover svg {
            transform: translateX(3px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .prog-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .prog-header h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .programmes-immersive {
                padding: 80px 0;
            }

            .prog-cards-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .prog-header h2 {
                font-size: 2rem;
            }

            .prog-header {
                margin-bottom: 50px;
            }

            .prog-card-visual {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .prog-header h2 {
                font-size: 1.6rem;
            }

            .prog-card-content {
                padding: 20px 20px 24px;
            }

            .prog-stats-row {
                padding: 0 12px 12px;
            }

            .prog-card-visual {
                height: 160px;
            }
        }

        /* ========== WHY CHOOSE US ========== */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .why-card {
            text-align: center;
            padding: 44px 28px;
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            transition: var(--transition);
            transform: scaleX(0);
            transform-origin: center;
        }

        .why-card:nth-child(1)::before {
            background: var(--gradient-primary);
        }

        .why-card:nth-child(2)::before {
            background: linear-gradient(135deg, var(--accent), var(--coral));
        }

        .why-card:nth-child(3)::before {
            background: linear-gradient(135deg, var(--mint), var(--secondary));
        }

        .why-card:nth-child(4)::before {
            background: var(--gradient-warm);
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .why-card:hover::before {
            transform: scaleX(1);
        }

        .why-icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            transition: var(--transition);
        }

        .why-icon svg {
            width: 30px;
            height: 30px;
        }

        .wi-blue {
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
        }

        .wi-purple {
            background: rgba(114, 9, 183, 0.1);
            color: var(--accent);
        }

        .wi-teal {
            background: rgba(46, 196, 182, 0.1);
            color: var(--mint);
        }

        .wi-coral {
            background: rgba(247, 37, 133, 0.1);
            color: var(--coral);
        }

        .why-card:hover .why-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .why-card:hover .wi-blue {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
        }

        .why-card:hover .wi-purple {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 8px 25px rgba(114, 9, 183, 0.3);
        }

        .why-card:hover .wi-teal {
            background: var(--mint);
            color: #fff;
            box-shadow: 0 8px 25px rgba(46, 196, 182, 0.3);
        }

        .why-card:hover .wi-coral {
            background: var(--coral);
            color: #fff;
            box-shadow: 0 8px 25px rgba(247, 37, 133, 0.3);
        }

        .why-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .why-card p {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.7;
        }

        /* ========== HOW IT WORKS ========== */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 52px;
            left: 12.5%;
            right: 12.5%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--coral), var(--amber));
            background-size: 300% 100%;
            animation: gradient-flow 6s ease-in-out infinite;
            opacity: 0.25;
            border-radius: 3px;
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 800;
            margin: 0 auto 24px;
            position: relative;
            z-index: 2;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.25);
        }

        .step-card:hover .step-number {
            transform: scale(1.15);
            box-shadow: 0 8px 30px rgba(67, 97, 238, 0.4);
        }

        .step-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: var(--primary);
            transition: var(--transition);
        }

        .step-card:hover .step-icon {
            background: rgba(67, 97, 238, 0.08);
            transform: translateY(-4px);
        }

        .step-icon svg {
            width: 24px;
            height: 24px;
        }

        .step-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.65;
        }

        /* ========== ABOUT ========== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .about-content p {
            font-size: 0.95rem;
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 16px;
        }

        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 36px;
        }

        .about-value {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px;
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .about-value:hover {
            border-color: rgba(67, 97, 238, 0.2);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .about-value .av-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-value .av-icon svg {
            width: 20px;
            height: 20px;
        }

        .av-blue {
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
        }

        .av-purple {
            background: rgba(114, 9, 183, 0.1);
            color: var(--accent);
        }

        .av-coral {
            background: rgba(247, 37, 133, 0.1);
            color: var(--coral);
        }

        .av-teal {
            background: rgba(46, 196, 182, 0.1);
            color: var(--mint);
        }

        .about-value h4 {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .about-value p {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* About visual */
        .about-visual {
            position: relative;
        }

        .about-img-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .about-img {
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .about-img img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: transform 0.6s var(--ease);
        }

        .about-img:hover img {
            transform: scale(1.08);
        }

        .about-img:first-child {
            grid-row: 1 / 2;
        }

        .about-img:first-child img {
            height: 180px;
        }

        .about-img .about-img-label {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            padding: 5px 14px;
            border-radius: var(--radius-full);
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .about-stat-bar {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .about-stat-item {
            flex: 1;
            background: #fff;
            border-radius: var(--radius-md);
            padding: 18px;
            text-align: center;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .about-stat-item:hover {
            border-color: rgba(67, 97, 238, 0.2);
            box-shadow: var(--shadow-sm);
        }

        .about-stat-item h4 {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-stat-item p {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* ========== FOUNDER'S NOTE ========== */
        .founder-section {
            padding: 110px 0;
            margin-top: 40px;
            background: linear-gradient(180deg, #f6f8ff 0%, #f0f4ff 50%, var(--bg-white) 100%);
            position: relative;
            overflow: hidden;
            border-top: 2px solid rgba(67, 97, 238, 0.15);
        }

        .founder-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(67, 97, 238, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(114, 9, 183, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .founder-card {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .founder-image-wrap {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .founder-img {
            width: 220px;
            height: 300px;
            border-radius: var(--radius-lg);
            object-fit: cover;
            object-position: top center;
            border: 3px solid rgba(67, 97, 238, 0.2);
            box-shadow: 0 16px 48px rgba(67, 97, 238, 0.12);
        }

        .founder-name {
            margin-top: 18px;
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.3px;
        }

        .founder-badge {
            margin-top: 6px;
            padding: 6px 22px;
            border-radius: var(--radius-full);
            background: var(--gradient-primary);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .founder-content {
            position: relative;
        }

        .founder-quote-mark {
            font-size: 5rem;
            line-height: 1;
            font-family: Georgia, serif;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.25;
            position: absolute;
            top: -30px;
            left: -10px;
        }

        .founder-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .founder-content p {
            font-size: 1rem;
            color: var(--text-body);
            line-height: 1.9;
            margin-bottom: 16px;
        }

        .founder-content p:last-child {
            margin-bottom: 0;
        }

        .founder-content strong {
            color: var(--text-dark);
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .founder-card {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .founder-image-wrap {
                justify-self: center;
            }

            .founder-img {
                width: 180px;
                height: 240px;
            }

            .founder-title {
                font-size: 1.6rem;
            }

            .founder-quote-mark {
                position: static;
                font-size: 3rem;
                margin-bottom: -20px;
            }

            .founder-section {
                padding: 80px 0;
            }
        }

        /* ========== GALLERY CTA ========== */
        .gallery-cta-section {
            padding: 110px 0;
            background: linear-gradient(180deg, #0F172A 0%, #141a30 50%, #0F172A 100%);
            position: relative;
            overflow: hidden;
        }

        .gallery-cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(67, 97, 238, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(114, 9, 183, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .gallery-cta-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .gallery-cta-previews {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .preview-img {
            border-radius: var(--radius-md);
            overflow: hidden;
            aspect-ratio: 4/3;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }

        .preview-img:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(67, 97, 238, 0.2);
        }

        .preview-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            transition: transform 0.5s ease;
        }

        .preview-img:hover img {
            transform: scale(1.08);
        }

        @media (max-width: 768px) {
            .gallery-cta-card {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .gallery-cta-section {
                padding: 80px 0;
            }
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: var(--gradient-primary);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
            border-radius: 50%;
            top: -200px;
            right: -100px;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
            border-radius: 50%;
            bottom: -150px;
            left: -50px;
        }

        .cta-banner .container {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-banner h2 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta-banner p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-white {
            background: #fff;
            color: var(--primary);
            padding: 16px 40px;
            border-radius: var(--radius-full);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
        }

        .btn-white:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-white svg {
            width: 18px;
            height: 18px;
        }

        /* ========== CONTACT ========== */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: start;
        }

        .contact-info {
            padding: 44px;
            border-radius: var(--radius-lg);
            color: #fff;
            position: relative;
            overflow: hidden;
            background: var(--gradient-primary);
        }

        .contact-info::before {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            top: -80px;
            right: -80px;
        }

        .contact-info::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
        }

        .contact-info h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .contact-info>p {
            font-size: 0.9rem;
            opacity: 0.85;
            margin-bottom: 36px;
            line-height: 1.7;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }

        .contact-detail .cd-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-detail .cd-icon svg {
            width: 22px;
            height: 22px;
        }

        .contact-detail .cd-text h4 {
            font-size: 0.88rem;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .contact-detail .cd-text p {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        /* Form */
        .contact-form-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 44px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
        }

        .contact-form-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .contact-form-card>p {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-bottom: 28px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            color: var(--text-dark);
            background: var(--bg-soft);
            border: 2px solid transparent;
            border-radius: var(--radius-sm);
            outline: none;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 110px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            background: var(--gradient-primary);
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.25);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(67, 97, 238, 0.35);
        }

        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .btn-submit svg {
            width: 18px;
            height: 18px;
        }

        /* Workshop selector chips */
        .workshop-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .workshop-chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 18px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-body);
            background: var(--bg-soft);
            border: 2px solid transparent;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: var(--transition);
            user-select: none;
        }

        .workshop-chip:hover {
            border-color: rgba(67, 97, 238, 0.3);
            background: rgba(67, 97, 238, 0.04);
        }

        .workshop-chip.active {
            background: rgba(67, 97, 238, 0.08);
            border-color: var(--primary);
            color: var(--primary);
        }

        .workshop-chip .chip-check {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .workshop-chip.active .chip-check {
            background: var(--primary);
            border-color: var(--primary);
        }

        .workshop-chip .chip-check svg {
            width: 10px;
            height: 10px;
            color: #fff;
            opacity: 0;
            transition: var(--transition);
        }

        .workshop-chip.active .chip-check svg {
            opacity: 1;
        }

        .form-message {
            margin-top: 16px;
            padding: 14px 18px;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            font-weight: 600;
            display: none;
        }

        .form-message.success {
            display: block;
            background: rgba(6, 214, 160, 0.1);
            color: #059669;
            border: 1px solid rgba(6, 214, 160, 0.2);
            animation: slideDown 0.4s ease;
        }

        .form-message.error {
            display: block;
            background: rgba(239, 68, 68, 0.08);
            color: #DC2626;
            border: 1px solid rgba(239, 68, 68, 0.2);
            animation: slideDown 0.4s ease;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #0F172A;
            color: #fff;
            padding: 70px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--coral), var(--amber), var(--mint));
            background-size: 200% 100%;
            animation: gradient-flow 4s linear infinite;
        }

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

        .footer-brand h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 14px;
            background: linear-gradient(135deg, #7B93FF, #B5179E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 320px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-social a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
        }

        .footer-social a svg {
            width: 18px;
            height: 18px;
        }

        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-col a {
            display: block;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 12px;
            transition: var(--transition);
        }

        .footer-col a:hover {
            color: var(--primary-light);
            transform: translateX(5px);
        }

        .footer-bottom {
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: var(--gradient-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            box-shadow: 0 6px 25px rgba(67, 97, 238, 0.35);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(67, 97, 238, 0.45);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
        }

        /* ========== LOADING SPINNER ========== */
        .spinner {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2.5px solid rgba(255, 255, 255, 0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

        /* ========== SUCCESS CELEBRATION OVERLAY ========== */
        .success-overlay {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .success-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .success-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 50px 60px;
            text-align: center;
            max-width: 440px;
            width: 90%;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
            transform: scale(0.7) translateY(30px);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
        }

        .success-overlay.active .success-card {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .success-checkmark {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(135deg, #06D6A0 0%, #2EC4B6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            box-shadow: 0 10px 40px rgba(6, 214, 160, 0.35);
            position: relative;
            animation: success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
        }

        .success-checkmark::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 3px solid rgba(6, 214, 160, 0.3);
            animation: success-ring-expand 0.8s ease 0.4s both;
        }

        .success-checkmark svg {
            width: 44px;
            height: 44px;
            color: #fff;
            stroke-dasharray: 50;
            stroke-dashoffset: 50;
            animation: draw-check 0.5s ease 0.5s forwards;
        }

        @keyframes success-pop {
            0% {
                transform: scale(0) rotate(-45deg);
                opacity: 0;
            }

            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }

        @keyframes success-ring-expand {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        @keyframes draw-check {
            to {
                stroke-dashoffset: 0;
            }
        }

        .success-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 10px;
            animation: fadeInUp 0.5s ease 0.3s both;
        }

        .success-card p {
            font-size: 0.95rem;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 28px;
            animation: fadeInUp 0.5s ease 0.45s both;
        }

        .success-card .success-close {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 32px;
            border-radius: var(--radius-full);
            background: var(--gradient-primary);
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(67, 97, 238, 0.3);
            animation: fadeInUp 0.5s ease 0.55s both;
        }

        .success-card .success-close:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(67, 97, 238, 0.4);
        }

        /* Confetti particles */
        .confetti-container {
            position: fixed;
            inset: 0;
            z-index: 10001;
            pointer-events: none;
            overflow: hidden;
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            top: -10px;
            opacity: 0;
        }

        .confetti.active {
            opacity: 1;
            animation: confetti-fall linear forwards;
        }

        @keyframes confetti-fall {
            0% {
                transform: translateY(0) rotate(0deg) scale(1);
                opacity: 1;
            }

            80% {
                opacity: 1;
            }

            100% {
                transform: translateY(100vh) rotate(720deg) scale(0.3);
                opacity: 0;
            }
        }

        /* ========== CURSOR TRAIL (Interactive) ========== */
        .cursor-glow {
            position: fixed;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
        }

        /* ========== WHATSAPP FLOATING BUTTON ========== */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 998;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .whatsapp-float:hover {
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
        }

        .whatsapp-float:active {
            transform: translateY(-1px) scale(1.02);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: #fff;
        }

        /* Pulse ring animation */
        .whatsapp-float::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid rgba(37, 211, 102, 0.5);
            animation: whatsapp-pulse 2.5s ease-in-out infinite;
        }

        .whatsapp-float::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 1.5px solid rgba(37, 211, 102, 0.25);
            animation: whatsapp-pulse 2.5s ease-in-out 0.4s infinite;
        }

        @keyframes whatsapp-pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.12);
                opacity: 0.5;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Tooltip */
        .whatsapp-float .wa-tooltip {
            position: absolute;
            right: 72px;
            top: 50%;
            transform: translateY(-50%) translateX(8px);
            background: #fff;
            color: var(--text-dark);
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 0.82rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .whatsapp-float .wa-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 6px solid #fff;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

        .whatsapp-float:hover .wa-tooltip {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }



        /* ========== SOCIAL MEDIA SECTION ========== */
        .social-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--bg-white) 0%, #f0f4ff 100%);
        }

        .social-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .social-header h2 {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 10px;
            letter-spacing: -1px;
        }

        .social-header h2 .gradient-text {
            background: linear-gradient(135deg, #4361EE, #7209B7, #F72585);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .social-header p {
            font-size: 1rem;
            color: var(--text-muted);
        }

        .social-cards {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .social-card {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 24px 36px;
            border-radius: var(--radius-lg);
            background: #fff;
            border: 1px solid var(--border);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 300px;
        }

        .social-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
        }

        .social-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .social-icon svg {
            width: 28px;
            height: 28px;
        }

        .social-instagram .social-icon {
            background: linear-gradient(135deg, #405DE6, #833AB4, #C13584, #E1306C);
            color: #fff;
        }

        .social-instagram .social-icon svg {
            stroke: #fff;
        }

        .social-instagram:hover {
            border-color: #C13584;
        }

        .social-whatsapp .social-icon {
            background: #25D366;
            color: #fff;
        }

        .social-whatsapp .social-icon svg {
            fill: #fff;
            width: 26px;
            height: 26px;
        }

        .social-whatsapp:hover {
            border-color: #25D366;
        }

        .social-linkedin .social-icon {
            background: #0077b5;
            color: #fff;
        }

        .social-linkedin .social-icon svg {
            stroke: #fff;
        }

        .social-linkedin:hover {
            border-color: #0077b5;
        }

        .social-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .social-name {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .social-handle {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .social-arrow {
            width: 20px;
            height: 20px;
            color: var(--text-muted);
            margin-left: auto;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social-card:hover .social-arrow {
            transform: translateX(5px);
            color: var(--primary);
        }

        @media (max-width: 640px) {
            .social-card {
                min-width: 100%;
                padding: 20px 24px;
            }

            .social-header h2 {
                font-size: 1.8rem;
            }
        }

        /* ========== PERFORMANCE: Reduce motion for users who prefer it ========== */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-visual {
                max-width: 560px;
            }

            .services-grid,
            .why-grid,
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-container::before {
                display: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-visual {
                max-width: 560px;
                margin: 0 auto;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {

            /* --- PERFORMANCE: optimize heavy effects on mobile --- */
            .hero-blob {
                opacity: 0.3 !important;
                will-change: transform;
            }

            .geo-shape {
                animation: none !important;
            }

            .prog-card-3d::after {
                display: none;
            }

            /* shimmer sweep is expensive */
            .prog-particle {
                will-change: transform;
            }

            .prog-card-glow {
                will-change: opacity;
            }

            .cursor-glow {
                display: none;
            }

            /* --- NAV --- */
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                padding: 90px 24px 32px;
                gap: 4px;
                box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
                transition: var(--transition);
                z-index: 1000;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links a {
                width: 100%;
                padding: 14px 16px;
                font-size: 1rem;
                min-height: 48px;
                display: flex;
                align-items: center;
            }

            .nav-links a::after {
                display: none;
            }

            .nav-links .nav-cta {
                margin-left: 0;
                margin-top: 16px;
                text-align: center;
                justify-content: center;
            }

            .mobile-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.4);
                z-index: 999;
            }

            .mobile-overlay.active {
                display: block;
            }

            /* --- HERO --- */
            .hero {
                padding-top: 100px;
                padding-bottom: 50px;
                min-height: auto;
            }

            .hero .container {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .hero-content {
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.1;
            }

            .hero-subtitle {
                font-size: 0.92rem;
                margin-bottom: 28px;
                max-width: 480px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                gap: 8px;
                margin-top: 32px;
            }

            .hero-stat {
                padding: 14px 10px;
            }

            .hero-stat h3 {
                font-size: 1.15rem;
            }

            .hero-stat p {
                font-size: 0.68rem;
            }

            .geo-shape.circle-1,
            .geo-shape.dots,
            .geo-shape.ring,
            .geo-shape.plus,
            .geo-shape.circle-2 {
                display: none;
            }

            .hero-float {
                display: none;
            }

            .hero-thumbs {
                display: none;
            }

            .hero-img-main img {
                height: 280px;
            }

            .section-stars {
                display: none;
            }

            /* --- SECTIONS --- */
            .section {
                padding: 70px 0;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 0.92rem;
            }

            .container {
                padding: 0 20px;
            }

            /* --- SERVICE CARDS --- */
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card:hover {
                transform: none;
            }

            .service-card-img {
                height: 180px;
            }

            /* --- PROGRAMMES (dark section) --- */
            .programmes-immersive {
                padding: 70px 0;
            }

            .prog-header {
                margin-bottom: 40px;
            }

            .prog-header h2 {
                font-size: 1.8rem;
            }

            .prog-header p {
                font-size: 0.92rem;
            }

            .prog-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .prog-card-visual {
                height: 180px;
            }

            .prog-card-3d {
                border-color: rgba(255, 255, 255, 0.1);
            }

            /* Reset hover & transform effects for mobile */
            .prog-card-3d:hover {
                box-shadow: none;
                border-color: rgba(255, 255, 255, 0.12);
            }

            /* Clear stagger delays on mobile so they animate in as you scroll */
            .prog-card-3d.reveal {
                transition-delay: 0s !important;
                transform: translateY(40px);
            }

            .prog-card-3d.reveal.active {
                transform: translateY(0);
            }

            .prog-card-content {
                padding: 22px 20px 26px;
            }

            .prog-card-content h3 {
                font-size: 1.15rem;
            }

            .prog-card-content>p {
                font-size: 0.84rem;
                margin-bottom: 16px;
            }

            .prog-feat {
                padding: 6px 8px;
            }

            .prog-feat span {
                font-size: 0.78rem;
            }

            .prog-stat-chip {
                padding: 8px 4px;
            }

            .prog-stat-chip h4 {
                font-size: 0.88rem;
            }

            .prog-stat-chip p {
                font-size: 0.58rem;
            }

            /* --- WHY US --- */
            .why-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .why-card {
                padding: 30px 24px;
            }

            .why-card:hover {
                transform: none;
            }

            /* --- HOW IT WORKS --- */
            .steps-container {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            /* --- ABOUT --- */
            .about-content h2 {
                font-size: 1.8rem;
            }

            .about-values {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .about-img-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .about-img:first-child img {
                height: 220px;
            }

            .about-img img {
                height: 170px !important;
            }

            .about-stat-bar {
                gap: 10px;
            }

            /* --- GALLERY CTA --- */
            .gallery-cta-card {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .gallery-cta-section {
                padding: 70px 0;
            }

            /* --- CTA BANNER --- */
            .cta-banner {
                padding: 60px 0;
            }

            .cta-banner h2 {
                font-size: 1.7rem;
            }

            .cta-banner p {
                font-size: 0.9rem;
                margin-bottom: 28px;
            }

            /* --- CONTACT --- */
            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-info {
                padding: 30px;
            }

            .contact-form-card {
                padding: 28px;
            }

            .contact-info h3 {
                font-size: 1.3rem;
            }

            /* Founder responsive rules already defined above — removed duplicate */

            /* --- SOCIAL --- */
            .social-card {
                min-width: 100%;
                padding: 20px 24px;
            }

            .social-header h2 {
                font-size: 1.8rem;
            }

            /* --- FOOTER --- */
            .navbar-brand .brand-logo {
                height: 36px;
                width: 36px;
            }

            .navbar-brand .brand-name {
                font-size: 1rem;
            }

            .navbar-brand .brand-tagline {
                font-size: 0.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 0.88rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .btn {
                width: 100%;
                justify-content: center;
                padding: 14px 28px;
            }

            .hero-stats {
                gap: 6px;
            }

            .hero-stat {
                padding: 10px 6px;
                border-radius: 12px;
            }

            .hero-stat h3 {
                font-size: 1rem;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-subtitle {
                font-size: 0.85rem;
            }

            .steps-container {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .about-stat-bar {
                flex-direction: column;
            }

            .about-content h2 {
                font-size: 1.5rem;
            }

            .prog-header h2 {
                font-size: 1.5rem;
            }

            .prog-card-visual {
                height: 160px;
            }

            .prog-card-content {
                padding: 18px 16px 22px;
            }

            .prog-card-content h3 {
                font-size: 1.05rem;
            }

            .prog-stats-row {
                padding: 0 10px 10px;
                gap: 4px;
            }

            .prog-stat-chip {
                padding: 6px 2px;
                border-radius: 8px;
            }

            .prog-stat-chip h4 {
                font-size: 0.8rem;
            }

            .cta-banner h2 {
                font-size: 1.4rem;
            }

            .cta-banner p {
                font-size: 0.85rem;
            }

            .btn-white {
                padding: 14px 28px;
                font-size: 0.9rem;
            }

            .contact-info {
                padding: 24px;
            }

            .contact-form-card {
                padding: 22px;
            }

            .contact-info h3 {
                font-size: 1.15rem;
            }

            .workshop-chips {
                gap: 8px;
            }

            .workshop-chip {
                padding: 8px 14px;
                font-size: 0.78rem;
            }

            .whatsapp-float {
                display: none;
            }

            .whatsapp-float svg {
                width: 26px;
                height: 26px;
            }

            .back-to-top {
                right: 16px;
                bottom: 20px;
                width: 44px;
                height: 44px;
            }

            .whatsapp-float .wa-tooltip {
                display: none;
            }

            .footer-brand p {
                font-size: 0.82rem;
            }

            .success-card {
                padding: 36px 28px;
            }

            .success-checkmark {
                width: 70px;
                height: 70px;
            }

            .success-card h3 {
                font-size: 1.2rem;
            }

            .success-card p {
                font-size: 0.88rem;
            }
        }
        /* =============================================
           TESTIMONIALS / REVIEWS SECTION
           ============================================= */
        .testimonials-section {
            padding: 110px 0;
            background: var(--bg-white);
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            max-width: 780px;
            margin: 0 auto;
            position: relative;
        }

        .testimonials-slider {
            position: relative;
        }

        .review-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            padding: 48px 40px 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            text-align: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

        .review-card.active {
            opacity: 1;
            pointer-events: auto;
            position: relative;
        }

        .review-quote-mark {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            opacity: 0.35;
        }

        .review-stars {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            gap: 6px;
        }

        .review-stars svg {
            width: 20px;
            height: 20px;
            fill: #FFD700;
            stroke: #FFD700;
        }

        .review-stars svg.empty-star {
            fill: none;
            stroke: var(--border);
        }

        .review-text {
            font-size: 1.1rem;
            color: var(--text-body);
            font-style: italic;
            margin-bottom: 28px;
            line-height: 1.85;
        }

        .review-divider {
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
            margin: 0 auto 20px;
        }

        .review-author h4 {
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .review-author p {
            color: var(--text-muted);
            font-size: 0.88rem;
        }

        .slider-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .slider-btn {
            background: var(--bg-white);
            border: 1px solid var(--border);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-body);
            transition: var(--transition);
        }

        .slider-btn:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: scale(1.1);
            box-shadow: 0 4px 20px rgba(67, 97, 238, 0.3);
        }

        .slider-btn svg {
            width: 20px;
            height: 20px;
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border);
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background: var(--primary);
            box-shadow: 0 0 8px rgba(67, 97, 238, 0.4);
            transform: scale(1.3);
        }

        .dot:hover:not(.active) {
            background: var(--text-muted);
        }

        .add-review-wrapper {
            text-align: center;
            margin-top: 48px;
        }

        .add-review-wrapper .btn {
            background: var(--bg-light);
            border: 1px solid var(--border);
            color: var(--primary);
            padding: 14px 36px;
            border-radius: var(--radius-full);
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .add-review-wrapper .btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(67, 97, 238, 0.3);
        }

        .add-review-wrapper .btn svg {
            width: 18px;
            height: 18px;
        }

        .loading-reviews {
            text-align: center;
            color: var(--text-muted);
            font-style: italic;
            padding: 80px 0;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 80px 0;
            }
            .review-card {
                padding: 36px 24px 32px;
            }
            .review-text {
                font-size: 1rem;
            }
            .review-quote-mark {
                font-size: 3rem;
            }
            .slider-btn {
                width: 40px;
                height: 40px;
            }
        }

        /* Review Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-white);
            width: 90%;
            max-width: 520px;
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            position: relative;
            transform: translateY(30px) scale(0.95);
            transition: all 0.4s var(--ease);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            background: var(--bg-light);
            border: none;
            cursor: pointer;
            color: var(--text-muted);
            transition: var(--transition);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: #fef2f2;
            color: #ef4444;
            transform: rotate(90deg);
        }

        .modal-close svg {
            width: 18px;
            height: 18px;
        }

        .modal-header {
            margin-bottom: 28px;
            text-align: center;
        }

        .modal-header h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .modal-header p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.5;
        }

        .review-form .form-group {
            margin-bottom: 18px;
            text-align: left;
        }

        .review-form label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.88rem;
            letter-spacing: 0.01em;
        }

        .review-form input,
        .review-form textarea {
            width: 100%;
            padding: 13px 16px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition);
            background: var(--bg-soft);
            color: var(--text-dark);
        }

        .review-form input:focus,
        .review-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--bg-white);
            box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.08);
        }

        .review-form input::placeholder,
        .review-form textarea::placeholder {
            color: var(--text-muted);
        }

        .review-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .star-rating-input {
            display: flex;
            gap: 8px;
            cursor: pointer;
            padding: 4px 0;
        }

        .star-rating-input svg {
            width: 32px;
            height: 32px;
            fill: transparent;
            stroke: var(--border);
            stroke-width: 1.5;
            transition: all 0.2s ease;
        }

        .star-rating-input svg.active,
        .star-rating-input svg.hover {
            fill: #FFD700;
            stroke: #FFD700;
            filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.3));
            transform: scale(1.1);
        }

        .review-form .btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--gradient-primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 6px 25px rgba(67, 97, 238, 0.35);
            margin-top: 8px;
        }

        .review-form .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 35px rgba(67, 97, 238, 0.45);
        }

        .review-form .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        @media (max-width: 480px) {
            .modal-content {
                padding: 30px 24px;
                border-radius: var(--radius-lg);
            }
        }

        /* ========== SKELETON LOADER FOR REVIEWS ========== */
        .review-skeleton {
            padding: 48px 40px 40px;
            text-align: center;
        }

        .skeleton-line {
            height: 14px;
            background: linear-gradient(90deg, var(--bg-light) 25%, rgba(67, 97, 238, 0.06) 50%, var(--bg-light) 75%);
            background-size: 200% 100%;
            animation: skeleton-shimmer 1.8s ease-in-out infinite;
            border-radius: 8px;
            margin: 0 auto;
        }

        .skeleton-line.sk-quote {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            margin-bottom: 16px;
        }

        .skeleton-line.sk-stars {
            width: 140px;
            height: 20px;
            margin-bottom: 24px;
        }

        .skeleton-line.sk-text-1 {
            width: 90%;
            margin-bottom: 10px;
        }

        .skeleton-line.sk-text-2 {
            width: 75%;
            margin-bottom: 10px;
        }

        .skeleton-line.sk-text-3 {
            width: 60%;
            margin-bottom: 28px;
        }

        .skeleton-line.sk-divider {
            width: 50px;
            height: 3px;
            margin-bottom: 20px;
        }

        .skeleton-line.sk-name {
            width: 160px;
            height: 18px;
            margin-bottom: 8px;
        }

        .skeleton-line.sk-school {
            width: 120px;
            height: 14px;
        }

        @keyframes skeleton-shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* ========== ANCHOR HIGHLIGHT ON PROGRAMME CARDS ========== */
        @keyframes anchor-highlight {
            0% {
                box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.5);
                border-color: rgba(123, 147, 255, 0.5);
            }
            50% {
                box-shadow: 0 0 30px 8px rgba(67, 97, 238, 0.25);
                border-color: rgba(123, 147, 255, 0.6);
            }
            100% {
                box-shadow: none;
                border-color: rgba(255, 255, 255, 0.12);
            }
        }

        .prog-card-3d.anchor-highlight {
            animation: anchor-highlight 1.5s ease-out forwards;
        }
