        :root {
            --primary-color: #012f62;
            --primary-dark: #01204d;
            --secondary-color: #034078;
            --accent-color: #0a4d8c;
            --success-color: #10b981;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
        }

        /* utility helpers for theme colors */
        .bg-accent { background-color: var(--accent-color) !important; }
        .btn-accent {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: #fff;
        }
        .btn-accent:hover,
        .btn-accent:focus {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
        }

        /* shared page header (hero) for static pages — compact height, left-aligned */
        .page-header {
            position: relative;
            overflow: hidden;
            color: #fff;
            min-height: 0;
            display: flex;
            align-items: center;
            padding: 1.15rem 0 1.35rem;
        }
        .page-header__media {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.03);
            z-index: 0;
        }
        .page-header__scrim {
            position: absolute;
            inset: 0;
            background: linear-gradient(125deg, rgba(2, 56, 108, 0.94) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(6, 182, 212, 0.5) 100%);
            z-index: 1;
        }
        .page-header__shine {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 90% 60% at 50% -20%, rgba(255, 255, 255, 0.2) 0%, transparent 55%),
                radial-gradient(ellipse 50% 40% at 100% 100%, rgba(245, 158, 11, 0.12) 0%, transparent 50%);
            z-index: 2;
            pointer-events: none;
        }
        .page-header__grid {
            position: absolute;
            inset: 0;
            opacity: 0.07;
            z-index: 2;
            pointer-events: none;
            background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 32px 32px;
        }
        .page-header__content {
            position: relative;
            z-index: 3;
            padding-top: 0.35rem;
        }
        .page-header__nav {
            margin-bottom: 0.65rem;
        }
        .page-header__breadcrumb {
            background: rgba(255, 255, 255, 0.09) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 999px;
            padding: 0.45rem 1.15rem !important;
            display: inline-flex !important;
            border: 1px solid rgba(255, 255, 255, 0.14);
            margin-bottom: 0 !important;
        }
        .page-header .breadcrumb-item,
        .page-header .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.92) !important;
            font-size: 0.875rem;
            font-weight: 500;
        }
        .page-header .breadcrumb-item a:hover {
            color: #fff !important;
            text-decoration: underline;
        }
        .page-header .breadcrumb-item.active {
            color: rgba(255, 255, 255, 0.72) !important;
            font-weight: 600;
        }
        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.55) !important;
        }
        .page-header__kicker {
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.88);
            margin: 0 0 0.4rem;
        }
        .page-header-title {
            font-size: clamp(1.35rem, 3vw, 1.85rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.4rem;
            color: #fff !important;
            letter-spacing: -0.02em;
            text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
        }
        .page-header-subtitle {
            font-size: clamp(0.85rem, 1.5vw, 0.98rem);
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.9);
            max-width: 36rem;
            margin-left: 0;
            margin-right: auto;
            margin-bottom: 0;
            opacity: 1;
            font-weight: 400;
            text-align: left;
        }
        .page-header__rule {
            width: 3rem;
            height: 3px;
            border-radius: 999px;
            margin: 0.75rem 0 0;
            background: linear-gradient(90deg, var(--accent-color, #f59e0b), #06b6d4);
            box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
        }

        @media (max-width: 575px) {
            .page-header {
                padding: 0.95rem 0.85rem 1.1rem;
                min-height: unset;
            }
            .page-header__breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.9rem !important;
            }
        }

        * {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-weight: 400;
        }

        span {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
            line-height: 27px;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
        }

        /* Custom Container Width - All containers set to 1400px */
        .container,
        .container-lg,
        .container-md,
        .container-sm,
        .container-xl,
        .container-xxl {
            max-width: 1400px !important;
            margin-left: auto !important;
            margin-right: auto !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

        @media (max-width: 1400px) {
            .container,
            .container-lg,
            .container-md,
            .container-sm,
            .container-xl,
            .container-xxl {
                max-width: 100% !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
        }


        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        /* Cards */
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .course-card {
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
        }

        .course-card img {
            transition: transform 0.5s;
        }

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

        /* Buttons */
        .btn {
            border-radius: 10px;
            font-weight: 500;
            padding: 0.6rem 1.5rem;
            transition: all 0.3s;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
        }

        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline-primary:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }


        /* Alerts */
        .alert {
            border-radius: 10px;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* Badges */
        .badge {
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
            font-weight: 500;
        }

        /* Section Spacing */
        section {
            padding: 20px 0;
        }

        /* Form Styles */
        .form-control, .form-select {
            border-radius: 10px;
            border: 2px solid #e2e8f0;
            padding: 0.75rem 1rem;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
        }

        /* Table Styles */
        .table {
            border-radius: 10px;
            overflow: hidden;
        }

        .table thead {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        /* Stats Cards */
        .stats-card {
            background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
            border-left: 4px solid var(--primary-color);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s;
        }

        .stats-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 30px 0;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* Enhanced Navbar */
        .navbar {
            background: white !important;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
            transition: all 0.3s;
            z-index: 1030;
        }

        .navbar .dropdown-menu {
            z-index: 1040;
        }

        .navbar.scrolled {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-weight: 600;
            font-size: 1.75rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand i {
            font-size: 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Keep main menu right-aligned on desktop */
        .navbar .navbar-collapse {
            justify-content: flex-end;
        }

        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            transition: all 0.3s;
            margin: 0 0.25rem;
            padding: 0.5rem 0.5rem !important;
            border-radius: 8px;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
            background: rgba(99, 102, 241, 0.1);
        }

        .nav-link i {
            margin-right: 0.25rem;
        }

        #cartLink {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(1, 47, 98, 0.28);
            border-radius: 50%;
            background: #fff;
            margin-left: 0.35rem;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
            animation: cartPulse 2.2s ease-in-out infinite;
        }

        #cartLink i {
            margin-right: 0;
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        #cartLink:hover {
            background: rgba(1, 47, 98, 0.07);
            border-color: var(--primary-color);
            box-shadow: 0 8px 18px rgba(1, 47, 98, 0.24);
            transform: translateY(-2px) scale(1.04);
        }

        #cartLink #cartBadge {
            font-size: 0.68rem;
            min-width: 18px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
        }

        @keyframes cartPulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(1, 47, 98, 0.22);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(1, 47, 98, 0);
            }
        }

        /* Courses dropdown: submenu on hover (Oracle etc.) */
        .dropdown-submenu {
            position: relative;
        }
        .dropdown-submenu > .dropdown-menu {
            display: none;
            position: absolute;
            left: 100%;
            top: 0;
            margin-top: 0;
            margin-left: 2px;
            min-width: 220px;
        }
        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }
        .dropdown-submenu.has-submenu > .dropdown-item::after {
            content: "›";
            float: right;
            font-size: 1.2rem;
            margin-left: 0.5rem;
        }

        /* Footer — brand-aligned, readable columns */
        .footer {
            background: linear-gradient(160deg, #010c1a 0%, #0a1e3a 35%, #0c2d4a 100%);
            color: #e2e8f0;
            padding: 0 0 2.5rem;
            margin-top: 4.5rem;
            position: relative;
            overflow: hidden;
        }

        .instagram-feed-strip {
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            padding: 2.1rem 0 2.3rem;
            margin-top: 2.6rem;
        }

        .instagram-feed-strip__head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .instagram-feed-strip__title {
            font-size: 1.05rem !important;
            margin: 0;
            font-weight: 700 !important;
            color: #0f172a;
            letter-spacing: 0;
        }

        .instagram-feed-strip__title i {
            display: inline-block !important;
            color: #e1306c;
            margin-right: 0.4rem;
        }

        .instagram-feed-strip__cta {
            border-radius: 999px;
            padding: 0.42rem 0.9rem;
            font-size: 0.82rem;
            font-weight: 600;
            border: 1px solid rgba(1, 47, 98, 0.25);
            color: #012f62;
            text-decoration: none;
        }

        .instagram-feed-strip__cta:hover {
            color: #fff;
            background: #012f62;
            border-color: #012f62;
        }

        .instagram-feed-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 0.8rem;
        }

        .instagram-feed-item {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            aspect-ratio: 4 / 5;
            display: block;
        }

        .instagram-feed-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.25s ease;
            display: block;
            background: #fff;
        }

        .instagram-feed-item--broken {
            background: linear-gradient(135deg, #e2e8f0, #f8fafc);
            border-color: #cbd5e1;
        }

        .instagram-feed-item:hover img {
            transform: scale(1.06);
        }

        .instagram-feed-empty {
            padding: 1rem;
            border: 1px dashed #cbd5e1;
            border-radius: 12px;
            color: #64748b;
            font-size: 0.9rem;
        }

        @media (max-width: 991px) {
            .instagram-feed-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 576px) {
            .instagram-feed-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.65rem;
            }
            .instagram-feed-strip__head {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f59e0b, #06b6d4, #012f62);
        }

        .footer::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 45% at 80% -10%, rgba(6, 182, 212, 0.12), transparent 55%);
            pointer-events: none;
        }

        .footer .container {
            position: relative;
            z-index: 1;
            padding-top: 3.25rem;
        }

        .footer__brand-logo {
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
        }

        .footer__tagline {
            color: rgba(226, 232, 240, 0.82);
            font-size: 0.92rem;
            line-height: 1.75;
            max-width: 26rem;
            margin-bottom: 0;
        }

        .footer .footer-col-heading {
            font-weight: 800;
            margin-bottom: 1.15rem;
            color: #fff;
            font-size: 0.72rem !important;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            opacity: 0.95;
        }

        .footer .footer-col-heading i {
            margin-right: 0.45rem;
            color: #06b6d4;
            font-size: 1rem;
            vertical-align: -0.05em;
        }

        /* Global heading icon hide must not strip footer nav icons */
        .footer .footer-col-heading > i:first-child {
            display: inline-block !important;
        }

        .footer ul.list-unstyled li a {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.2rem 0;
            font-size: 0.92rem;
            color: rgba(226, 232, 240, 0.78);
        }

        .footer ul.list-unstyled li a .bi-chevron-right {
            font-size: 0.65rem;
            opacity: 0.65;
            transition: transform 0.2s ease;
        }

        .footer ul.list-unstyled li a:hover {
            color: #fff;
            transform: none;
        }

        .footer ul.list-unstyled li a:hover .bi-chevron-right {
            transform: translateX(3px);
            opacity: 1;
            color: #06b6d4;
        }

        /* Hide left-side heading icons globally */
        h1 > i:first-child,
        h2 > i:first-child,
        h3 > i:first-child,
        h4 > i:first-child,
        h5 > i:first-child,
        h6 > i:first-child {
            display: none !important;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-size: 24px !important;
            line-height: 1.1;
        }

        @media (max-width: 768px) {
            h1,
            h2,
            h3,
            h4,
            h5,
            h6 {
                font-size: 22px !important;
            }
        }

        .footer-social {
            gap: 0.5rem;
            display: flex;
            flex-wrap: wrap;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff !important;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
            margin-right: 0;
        }

        .footer-social a:hover {
            background: rgba(6, 182, 212, 0.25);
            border-color: rgba(6, 182, 212, 0.45);
            transform: translateY(-3px);
            color: #fff !important;
        }

        .footer-newsletter .input-group {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(2, 24, 54, 0.45);
        }

        .footer-newsletter input.form-control {
            background: transparent;
            border: none;
            color: #fff;
            padding: 0.65rem 1rem;
            font-size: 0.9rem;
        }

        .footer-newsletter input::placeholder {
            color: rgba(226, 232, 240, 0.45);
        }

        .footer-newsletter input:focus {
            box-shadow: none;
            background: rgba(255, 255, 255, 0.04);
            color: #fff;
        }

        .footer-newsletter .btn-primary {
            border: none;
            padding-left: 1.1rem;
            padding-right: 1.1rem;
            background: linear-gradient(135deg, #012f62, #0369a1) !important;
        }

        .footer-newsletter .btn-primary:hover {
            background: linear-gradient(135deg, #0369a1, #06b6d4) !important;
        }

        .footer__contact-block {
            padding: 1rem 1.1rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer__contact-row {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            font-size: 0.9rem;
            color: rgba(226, 232, 240, 0.85);
            margin-bottom: 0.65rem;
        }

        .footer__contact-row:last-child {
            margin-bottom: 0;
        }

        .footer__contact-row i {
            color: #06b6d4;
            font-size: 1.05rem;
            margin-top: 0.1rem;
        }

        .footer__contact-row a {
            color: rgba(226, 232, 240, 0.92) !important;
            word-break: break-word;
        }

        .footer__contact-row a:hover {
            color: #fff !important;
        }

        .footer-col-heading--contact {
            margin-bottom: 0.85rem !important;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.75rem;
            margin-top: 2.75rem;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: rgba(226, 232, 240, 0.55) !important;
        }

        .footer-bottom a {
            color: rgba(226, 232, 240, 0.75);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        /* Footer h3/h4 must not inherit global 24px heading rule */
        .footer h3.footer-col-heading {
            line-height: 1.3 !important;
        }

        .footer h4 {
            font-size: 0.72rem !important;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 800 !important;
            color: rgba(255, 255, 255, 0.85) !important;
        }

        /* Scroll enquiry modal (must live in head — style not allowed under body/main) */
        #scrollEnquiryModal .modal-dialog { max-width: 470px; }
        .scroll-enquiry-modal-content {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 32px 64px -16px rgba(1, 32, 77, 0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
        }
        .scroll-enquiry-modal-header {
            position: relative;
            background: linear-gradient(145deg, #011a3d 0%, #012f62 42%, #0a4d8c 100%);
            color: #fff;
            padding: 0;
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 0;
            overflow: hidden;
        }
        .scroll-enquiry-modal-header::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, transparent 70%);
            pointer-events: none;
        }
        .scroll-enquiry-modal-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(255,255,255, 0.08) 0%, transparent 65%);
            pointer-events: none;
        }
        .scroll-enquiry-modal-header-inner {
            flex: 1;
            padding: 0.85rem 0.75rem 0.8rem 1rem;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.35rem;
        }
        .scroll-enquiry-modal-header-top {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            width: 100%;
        }
        .scroll-enquiry-modal-icon-wrap {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            flex-shrink: 0;
        }
        .scroll-enquiry-modal-icon { font-size: 1.35rem; line-height: 1; }

        .scroll-enquiry-modal-title-wrap { flex: 1; min-width: 0; }
        .scroll-enquiry-modal-badge {
            display: inline-block;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
            background: rgba(255,255,255,0.12);
            padding: 0.15rem 0.5rem;
            border-radius: 100px;
            margin-bottom: 0.25rem;
        }
        .scroll-enquiry-modal-header .modal-title {
            font-size: 1.08rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin: 0 0 0.2rem 0;
            color: #fff;
            line-height: 1.2;
        }
        .scroll-enquiry-modal-subtitle {
            margin: 0;
            font-size: 0.75rem;
            line-height: 1.35;
            color: rgba(255,255,255,0.88);
            max-width: 22rem;
        }
        .scroll-enquiry-close {
            position: relative;
            z-index: 2;
            align-self: flex-start;
            margin: 0.65rem 0.65rem 0 0;
            opacity: 0.85;
            filter: brightness(0) invert(1);
            padding: 0.5rem;
            border-radius: 10px;
            transition: background .2s, opacity .2s, transform .2s;
        }
        .scroll-enquiry-close:hover { opacity: 1; background: rgba(255,255,255,0.12); transform: scale(1.05); }

        .scroll-enquiry-modal-body {
            padding: 0.8rem 0.95rem 0.5rem;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
        }
        .scroll-enquiry-modal-body .form-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: #334155;
            margin-bottom: 0.25rem;
            letter-spacing: 0.01em;
        }
        .scroll-enquiry-input-wrap {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            background: #fff;
            transition: border-color .2s, box-shadow .2s;
        }
        .scroll-enquiry-input-wrap:focus-within {
            border-color: #012f62;
            box-shadow: 0 0 0 4px rgba(1, 47, 98, 0.12);
        }
        .scroll-enquiry-input-wrap .input-group-text {
            background: #f1f5f9;
            border: none;
            color: #64748b;
            padding: 0.45rem 0.5rem 0.45rem 0.7rem;
        }
        .scroll-enquiry-input {
            border: none;
            padding: 0.45rem 0.75rem;
            font-size: 0.9rem;
        }
        .scroll-enquiry-input::placeholder { color: #94a3b8; }
        .scroll-enquiry-textarea-wrap .input-group-text { align-items: flex-start; padding-top: 0.55rem; }
        .scroll-enquiry-textarea { min-height: 48px; max-height: 96px; resize: vertical; }
        .scroll-enquiry-trust {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.45rem;
            padding: 0.35rem 0.55rem;
            background: #f1f5f9;
            border-radius: 8px;
            font-size: 0.68rem;
            line-height: 1.35;
            color: #475569;
        }
        .scroll-enquiry-trust i { color: #012f62; font-size: 0.9rem; flex-shrink: 0; }

        .scroll-enquiry-modal-footer {
            padding: 0.5rem 0.95rem 0.75rem;
            background: #fff;
            border-top: 1px solid #f1f5f9;
            gap: 0.65rem;
            flex-wrap: wrap;
        }
        .scroll-enquiry-btn-close {
            border-radius: 10px;
            padding: 0.45rem 1rem;
            font-weight: 500;
            font-size: 0.9rem;
            border-color: #cbd5e1;
            color: #475569;
        }
        .scroll-enquiry-btn-close:hover { background: #f8fafc; border-color: #94a3b8; color: #334155; }
        .scroll-enquiry-btn-submit {
            background: linear-gradient(135deg, #012f62 0%, #034078 50%, #0a4d8c 100%);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 0.45rem 1.2rem;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 10px 24px -6px rgba(1, 47, 98, 0.45);
            transition: transform .2s, box-shadow .2s, filter .2s;
        }
        .scroll-enquiry-btn-submit:hover {
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 14px 28px -6px rgba(1, 47, 98, 0.5);
            filter: brightness(1.05);
        }
        @media (max-width: 576px) {
            .scroll-enquiry-modal-header-inner { padding: 0.75rem 0.55rem 0.75rem 0.85rem; }
            .scroll-enquiry-modal-header .modal-title { font-size: 1rem; }
            .scroll-enquiry-modal-icon-wrap { width: 40px; height: 40px; }
        }

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
            animation: kpexpert-wa-pulse 2s infinite;
        }
        .ai-chat-float {
            position: fixed;
            right: 20px;
            bottom: 95px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(135deg, #012f62, #0a4d8c);
            color: #fff;
            box-shadow: 0 12px 24px rgba(1, 47, 98, 0.35);
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform .2s ease, box-shadow .2s ease;
        }
        .ai-chat-float:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 16px 30px rgba(1, 47, 98, 0.45);
        }
        .ai-chat-panel {
            position: fixed;
            right: 20px;
            bottom: 165px;
            width: min(360px, calc(100vw - 24px));
            max-height: min(56vh, 470px);
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 24px 40px rgba(15, 23, 42, 0.28);
            border: 1px solid #e2e8f0;
            z-index: 1002;
            display: none;
            overflow: hidden;
        }
        .ai-chat-panel.is-open { display: flex; flex-direction: column; }
        .ai-chat-header {
            background: linear-gradient(140deg, #012f62 0%, #0a4d8c 100%);
            color: #fff;
            padding: 0.8rem 0.95rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
        }
        .ai-chat-header h4 {
            font-size: 1rem !important;
            margin: 0;
            font-weight: 700 !important;
            color: #fff !important;
        }
        .ai-chat-close {
            border: none;
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 8px;
        }
        .ai-chat-body {
            padding: 0.75rem;
            overflow-y: auto;
            background: #f8fafc;
            flex: 1;
        }
        .ai-chat-note {
            font-size: 0.76rem;
            color: #64748b;
            margin-bottom: 0.5rem;
        }
        .ai-chat-section-title {
            font-size: 0.86rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }
        .ai-chat-body .form-label {
            font-size: 0.76rem;
            margin-bottom: 0.25rem;
            font-weight: 600;
            color: #334155;
        }
        .ai-chat-body .form-control, .ai-chat-body .form-select {
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            padding: 0.48rem 0.65rem;
            font-size: 0.84rem;
        }
        .ai-chat-cta {
            border: none;
            width: 100%;
            border-radius: 10px;
            padding: 0.52rem 0.75rem;
            font-size: 0.84rem;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #012f62 0%, #0a4d8c 100%);
        }
        .ai-chat-courses { display: grid; gap: 0.6rem; }
        .ai-course-card {
            border: 1px solid #dbeafe;
            border-radius: 12px;
            background: #fff;
            padding: 0.55rem;
            cursor: pointer;
            transition: border-color .2s ease, transform .2s ease;
        }
        .ai-course-card:hover { border-color: #0a4d8c; transform: translateY(-1px); }
        .ai-course-card.is-selected {
            border-color: #0a4d8c;
            box-shadow: 0 0 0 2px rgba(10, 77, 140, 0.15) inset;
        }
        .ai-course-card h5 {
            font-size: 0.84rem !important;
            margin: 0 0 0.25rem;
            color: #0f172a !important;
            font-weight: 700 !important;
        }
        .ai-course-card-name-only h5 {
            margin-bottom: 0.15rem;
            line-height: 1.35;
        }
        .ai-course-click-hint {
            font-size: 0.71rem;
            color: #0284c7;
            font-weight: 600;
        }
        .ai-course-meta {
            font-size: 0.72rem;
            color: #475569;
            margin-bottom: 0.25rem;
        }
        .ai-course-price {
            font-size: 0.78rem;
            font-weight: 700;
            color: #012f62;
        }
        .ai-chat-hidden { display: none !important; }
        .ai-chat-success {
            padding: 0.75rem;
            border-radius: 10px;
            background: #ecfdf5;
            border: 1px solid #86efac;
            font-size: 0.84rem;
            color: #166534;
        }
        .ai-chat-tabbar {
            display: flex;
            gap: 0.4rem;
            margin-bottom: 0.55rem;
        }
        .ai-chat-tab-btn {
            border: 1px solid #cbd5e1;
            background: #fff;
            color: #334155;
            border-radius: 999px;
            padding: 0.25rem 0.6rem;
            font-size: 0.72rem;
            font-weight: 600;
            cursor: pointer;
        }
        .ai-chat-tab-btn.is-active {
            background: #012f62;
            border-color: #012f62;
            color: #fff;
        }
        .ai-enroll-process {
            margin: 0 0 0.5rem;
            padding-left: 1rem;
            color: #334155;
            font-size: 0.76rem;
            line-height: 1.45;
        }
        .ai-contact-grid {
            display: grid;
            gap: 0.45rem;
        }
        .ai-contact-card {
            border: 1px solid #dbeafe;
            border-radius: 12px;
            background: #fff;
            padding: 0.65rem 0.7rem;
            font-size: 0.8rem;
            color: #334155;
            line-height: 1.45;
            margin-bottom: 0.55rem;
        }
        .ai-contact-card strong {
            color: #0f172a;
        }
        .ai-contact-card a {
            color: #012f62;
            text-decoration: none;
            font-weight: 600;
        }
        .ai-contact-card a:hover {
            text-decoration: underline;
        }
        .ai-chat-error {
            padding: 0.6rem 0.7rem;
            border-radius: 10px;
            background: #fef2f2;
            border: 1px solid #fecaca;
            font-size: 0.8rem;
            color: #b91c1c;
            margin-bottom: 0.6rem;
        }
        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
        }
        .whatsapp-float i { margin-top: 5px; }
        @keyframes kpexpert-wa-pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
                bottom: 15px;
                right: 15px;
            }
            .ai-chat-float {
                width: 50px;
                height: 50px;
                bottom: 75px;
                right: 15px;
                font-size: 1.3rem;
            }
            .ai-chat-panel {
                right: 10px;
                bottom: 135px;
                width: calc(100vw - 20px);
                max-height: min(58vh, 440px);
            }
        }

        .fake-enroll-popup {
            position: fixed;
            left: 16px;
            bottom: 20px;
            width: min(320px, calc(100vw - 32px));
            z-index: 1010;
            background: #ffffff;
            border: 1px solid #dbeafe;
            border-left: 4px solid #0ea5e9;
            border-radius: 12px;
            box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
            padding: 0.7rem 0.75rem;
            display: flex;
            gap: 0.65rem;
            align-items: flex-start;
            transform: translateY(24px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .fake-enroll-popup.is-visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .fake-enroll-popup__icon {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: rgba(2, 132, 199, 0.12);
            color: #0369a1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
            margin-top: 0.05rem;
        }

        .fake-enroll-popup__content {
            min-width: 0;
        }

        .fake-enroll-popup__title {
            font-size: 0.71rem;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: #0284c7;
            font-weight: 700;
            margin-bottom: 0.15rem;
            line-height: 1.2;
        }

        .fake-enroll-popup__text {
            margin: 0;
            color: #0f172a;
            font-size: 0.86rem;
            line-height: 1.35;
        }

        .fake-enroll-popup__course-link {
            display: inline-block;
            margin-top: 0.25rem;
            font-size: 0.8rem;
            color: #012f62;
            font-weight: 600;
            text-decoration: none;
            line-height: 1.3;
        }

        .fake-enroll-popup__course-link:hover {
            color: #0a4d8c;
            text-decoration: underline;
        }
        .video-reel-widget {
            position: fixed;
            left: 14px;
            bottom: 120px;
            z-index: 1011;
            width: 186px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 14px 26px rgba(15, 23, 42, 0.25);
            border: 1px solid #dbeafe;
            overflow: hidden;
        }
        .video-reel-widget.is-maximized {
            width: min(320px, calc(100vw - 22px));
        }
        .video-reel-widget__body {
            background: #0f172a;
            position: relative;
            aspect-ratio: 9 / 16;
        }
        .video-reel-widget__body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 58px;
            z-index: 2;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0) 100%);
        }
        .video-reel-widget__audio-btn {
            position: absolute;
            right: 8px;
            bottom: 8px;
            z-index: 3;
            border: none;
            border-radius: 999px;
            background: rgba(2, 6, 23, 0.68);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 0.3rem 0.55rem;
            line-height: 1.1;
        }
        .video-reel-widget__icon-btn {
            border: none;
            width: 24px;
            height: 24px;
            border-radius: 7px;
            background: rgba(2, 6, 23, 0.58);
            color: #fff;
            font-size: 0.72rem;
        }
        .video-reel-widget__overlay-controls {
            position: absolute;
            top: 8px;
            right: 8px;
            display: flex;
            gap: 0.32rem;
            z-index: 3;
        }
        .video-reel-widget iframe,
        .video-reel-widget video {
            width: 100%;
            height: 100%;
            display: block;
            border: 0;
            object-fit: cover;
            background: #000;
        }
        .video-reel-widget iframe {
            pointer-events: none;
        }
        .video-reel-widget__fallback {
            color: #cbd5e1;
            font-size: 0.74rem;
            text-align: center;
            padding: 1rem 0.6rem;
        }
        .video-reel-widget__actions {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            padding: 0.45rem;
            background: #fff;
        }
        .video-reel-widget__btn {
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 0.38rem 0.45rem;
            background: #f8fafc;
            color: #1e293b;
            text-align: center;
            text-decoration: none;
        }
        .video-reel-widget__btn--primary {
            grid-column: span 1;
            background: linear-gradient(135deg, #012f62 0%, #0a4d8c 100%);
            color: #fff;
            border-color: #012f62;
        }
        .video-reel-widget.is-minimized .video-reel-widget__body,
        .video-reel-widget.is-minimized .video-reel-widget__actions {
            display: none;
        }

        @media (max-width: 576px) {
            .fake-enroll-popup {
                left: 10px;
                right: 10px;
                width: auto;
                bottom: 74px;
            }
            .video-reel-widget {
                left: 10px;
                width: 156px;
                bottom: 200px;
            }
            .video-reel-widget.is-maximized {
                width: calc(100vw - 20px);
            }
        }
