    :root {
        --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

        --ink: #111827;
        --ink-2: #374151;
        --ink-3: #6b7280;
        --ink-4: #9ca3af;

        --bg: #f9fafb;
        --bg-2: #f3f4f6;
        --white: #ffffff;
        --border: #e5e7eb;
        --border-2: #d1d5db;

        --blue: #1d4ed8;
        --blue-dk: #1e40af;
        --blue-lt: #eff6ff;
        --blue-mid: #bfdbfe;

        --green: #059669;
        --green-lt: #ecfdf5;

        --amber: #d97706;
        --amber-lt: #fffbeb;

        --red: #dc2626;
        --red-lt: #fef2f2;

        --dark: #0f172a;
        --dark-2: #1e293b;

        --r-sm: 6px;
        --r-md: 10px;
        --r-lg: 16px;
        --r-xl: 20px;
        --r-pill: 100px;

        --sh-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
        --sh-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
        --sh-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
        --sh-lg: 0 10px 40px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font);
        background: var(--bg);
        color: var(--ink);
        -webkit-font-smoothing: antialiased;
    }

    /* ═══════════════════════════════════
   TOPBAR
═══════════════════════════════════ */
    .tp-bar {
        background: var(--dark);
        padding: 9px 0;
        font-size: 0.78rem;
    }

    .tp-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tp-contacts {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .tp-contact-link {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-size: 0.77rem;
        font-weight: 400;
        transition: color 0.15s;
    }

    .tp-contact-link:hover {
        color: rgba(255, 255, 255, 0.85);
    }

    .tp-contact-link i {
        color: var(--blue);
        font-size: 0.7rem;
        width: 14px;
        text-align: center;
    }

    .tp-right {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .tp-note {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.2);
        letter-spacing: 0.04em;
    }

    .tp-socials {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .tp-soc {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.68rem;
        text-decoration: none;
        transition: all 0.18s;
    }

    .tp-soc:hover {
        background: var(--blue);
        border-color: var(--blue);
        color: #fff;
    }

    /* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
    .nx-bar {
        position: sticky;
        top: 0;
        z-index: 1030;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--sh-sm);
    }

    .nx-inner {
        display: flex;
        align-items: center;
        height: 64px;
        gap: 1rem;
        padding: 0 1rem;
    }

    .nx-brand {
        flex-shrink: 0;
        text-decoration: none;
    }

    .nx-brand img {
        height: 40px;
        width: auto;
        display: block;
    }

    /* Category pills */
    .nx-cats-wrap {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    @media (max-width: 991px) {
        .nx-cats-wrap {
            display: none;
            position: absolute;
            top: 64px;
            left: 0;
            right: 0;
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 1rem;
            justify-content: flex-start;
            flex-wrap: wrap;
            box-shadow: var(--sh-md);
            z-index: 1020;
        }

        .nx-cats-wrap.open {
            display: flex;
        }
    }

    .nx-cats {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 2px;
        flex-wrap: wrap;
    }

    .nx-cat-link {
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 0.9rem;
        border-radius: var(--r-pill);
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--ink-3);
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.15s;
        border: 1px solid transparent;
    }

    .nx-cat-link:hover {
        color: var(--blue);
        background: var(--blue-lt);
    }

    .nx-cat-link.active {
        color: var(--blue);
        background: var(--blue-lt);
        border-color: var(--blue-mid);
        font-weight: 600;
    }

    /* Auth */
    .nx-auth {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }

    .nx-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0.4rem 1rem;
        border-radius: var(--r-md);
        font-size: 0.82rem;
        font-weight: 600;
        font-family: var(--font);
        text-decoration: none;
        transition: all 0.15s;
        border: none;
        cursor: pointer;
        white-space: nowrap;
    }

    .nx-btn-ghost {
        background: transparent;
        color: var(--ink-2);
        border: 1.5px solid var(--border-2);
    }

    .nx-btn-ghost:hover {
        background: var(--bg-2);
        color: var(--ink);
        border-color: var(--ink-4);
    }

    .nx-btn-solid {
        background: var(--blue);
        color: #fff;
        box-shadow: 0 1px 4px rgba(29, 78, 216, 0.2);
    }

    .nx-btn-solid:hover {
        background: var(--blue-dk);
        color: #fff;
        box-shadow: 0 3px 12px rgba(29, 78, 216, 0.3);
    }

    /* Avatar dropdown */
    .nx-avatar-wrap {
        position: relative;
    }

    .nx-avatar-trigger {
        display: flex;
        align-items: center;
        gap: 7px;
        background: none;
        border: 1.5px solid var(--border);
        border-radius: var(--r-pill);
        padding: 4px 10px 4px 4px;
        cursor: pointer;
        transition: all 0.15s;
    }

    .nx-avatar-trigger:hover {
        border-color: var(--blue-mid);
        background: var(--blue-lt);
    }

    .nx-avatar-img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: block;
    }

    .nx-avatar-name {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--ink-2);
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nx-avatar-chevron {
        color: var(--ink-4);
        font-size: 0.62rem;
        transition: transform 0.18s;
    }

    .nx-avatar-wrap.open .nx-avatar-chevron {
        transform: rotate(180deg);
    }

    .nx-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 200px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        box-shadow: var(--sh-lg);
        padding: 0.4rem;
        z-index: 9999;
        opacity: 0;
        transform: translateY(6px) scale(0.98);
        pointer-events: none;
        transition: all 0.18s;
        transform-origin: top right;
    }

    .nx-dropdown.open {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .nx-dd-header {
        padding: 0.5rem 0.75rem 0.4rem;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--ink);
        border-bottom: 1px solid var(--border);
        margin-bottom: 0.3rem;
        letter-spacing: 0.01em;
    }

    .nx-dd-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0.5rem 0.75rem;
        border-radius: var(--r-sm);
        font-size: 0.83rem;
        font-weight: 500;
        color: var(--ink-2);
        text-decoration: none;
        transition: all 0.12s;
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        font-family: var(--font);
        text-align: left;
    }

    .nx-dd-item:hover {
        background: var(--bg-2);
        color: var(--ink);
    }

    .nx-dd-item i {
        font-size: 0.78rem;
        color: var(--ink-4);
        width: 14px;
        text-align: center;
    }

    .nx-dd-item:hover i {
        color: var(--blue);
    }

    .nx-dd-item.danger {
        color: var(--red);
    }

    .nx-dd-item.danger:hover {
        background: var(--red-lt);
    }

    .nx-dd-item.danger i,
    .nx-dd-item.danger:hover i {
        color: var(--red);
    }

    .nx-dd-divider {
        height: 1px;
        background: var(--border);
        margin: 0.3rem 0;
    }

    /* Toggler */
    .nx-toggler {
        display: none;
        background: none;
        border: 1.5px solid var(--border);
        border-radius: var(--r-sm);
        padding: 5px 9px;
        cursor: pointer;
        color: var(--ink-3);
        font-size: 1rem;
        transition: all 0.15s;
        margin-left: auto;
    }

    .nx-toggler:hover {
        background: var(--bg-2);
        border-color: var(--border-2);
    }

    @media (max-width: 991px) {
        .nx-toggler {
            display: flex;
            align-items: center;
        }
    }

    /* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
    .hp-hero {
        background: var(--dark);
        padding: 4rem 0 3.5rem;
        position: relative;
        overflow: hidden;
    }

    .hp-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 65% 110% at 80% 50%, rgba(29, 78, 216, 0.22) 0%, transparent 60%),
            radial-gradient(ellipse 45% 70% at 5% 90%, rgba(5, 150, 105, 0.12) 0%, transparent 55%);
        pointer-events: none;
    }

    .hp-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
        background-size: 44px 44px;
        pointer-events: none;
    }

    .hp-inner {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .hp-tag {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 0.3rem 0.9rem;
        background: rgba(29, 78, 216, 0.18);
        border: 1px solid rgba(29, 78, 216, 0.35);
        border-radius: var(--r-pill);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.65);
        margin-bottom: 1.25rem;
    }

    .hp-tag .dot {
        width: 5px;
        height: 5px;
        background: #60a5fa;
        border-radius: 50%;
        animation: blink 2s infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: 0.25
        }
    }

    .hp-title {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.14;
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
    }

    .hp-title span {
        color: #93c5fd;
        font-style: italic;
    }

    .hp-sub {
        font-size: 0.98rem;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 400;
        max-width: 460px;
        margin: 0 auto;
        line-height: 1.65;
    }

    /* ═══════════════════════════════════
   SEARCH
═══════════════════════════════════ */
    .search-wrap {
        max-width: 520px;
        margin: 0 auto 2.75rem;
        padding: 0 1rem;
    }

    .search-inner {
        display: flex;
        align-items: center;
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: var(--r-pill);
        box-shadow: var(--sh-md);
        padding: 0.3rem 0.3rem 0.3rem 1.1rem;
        gap: 0.5rem;
        transition: border-color 0.18s, box-shadow 0.18s;
    }

    .search-inner:focus-within {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1), var(--sh-sm);
    }

    .search-inner>i {
        color: var(--ink-4);
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    #examSearch {
        flex: 1;
        border: none;
        outline: none;
        font-family: var(--font);
        font-size: 0.88rem;
        color: var(--ink);
        background: transparent;
        padding: 0.5rem 0;
    }

    #examSearch::placeholder {
        color: var(--ink-4);
    }

    .search-clear {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--bg-2);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--ink-4);
        font-size: 0.8rem;
        transition: all 0.15s;
        flex-shrink: 0;
        opacity: 0;
        pointer-events: none;
    }

    .search-clear.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .search-clear:hover {
        background: var(--blue-lt);
        color: var(--blue);
    }

    /* ═══════════════════════════════════
   SECTION HEADER
═══════════════════════════════════ */
    .sec-header {
        text-align: center;
        margin-bottom: 2.25rem;
    }

    .sec-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 0.6rem;
    }

    .sec-eyebrow::before,
    .sec-eyebrow::after {
        content: '';
        display: inline-block;
        width: 22px;
        height: 1.5px;
        background: var(--blue);
        opacity: 0.35;
    }

    .sec-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 0.4rem;
        letter-spacing: -0.02em;
    }

    .sec-sub {
        font-size: 0.88rem;
        color: var(--ink-4);
        font-weight: 400;
    }

    /* ═══════════════════════════════════
   SUBCATEGORY HEADER
═══════════════════════════════════ */
    .subcat-header {
        margin: 2.25rem 0 1.25rem;
    }

    .subcat-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--ink);
        letter-spacing: -0.01em;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .subcat-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    /* ═══════════════════════════════════
   EXAM CARDS
═══════════════════════════════════ */
    .exam-grid-card .ec-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-xl);
        overflow: hidden;
        box-shadow: var(--sh-xs);
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .exam-grid-card .ec-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh-lg);
        border-color: var(--blue-mid);
    }

    .ec-img-wrap {
        position: relative;
        overflow: hidden;
    }

    .ec-img-wrap img {
        width: 100%;
        height: 175px;
        object-fit: cover;
        display: block;
        transition: transform 0.38s ease;
    }

    .exam-grid-card .ec-card:hover .ec-img-wrap img {
        transform: scale(1.03);
    }

    .ec-price-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 0.25rem 0.65rem;
        border-radius: var(--r-pill);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .ec-price-badge.paid {
        background: rgba(15, 23, 42, 0.75);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .ec-price-badge.free {
        background: rgba(5, 150, 105, 0.88);
        color: #fff;
    }

    .ec-body {
        padding: 1.1rem 1.2rem 0.75rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
    }

    .ec-title {
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.38;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.75em;
        letter-spacing: -0.005em;
    }

    .ec-meta {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        flex-wrap: wrap;
    }

    .ec-meta-item {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 0.74rem;
        color: var(--ink-4);
        font-weight: 500;
        background: var(--bg-2);
        padding: 0.18rem 0.55rem;
        border-radius: var(--r-pill);
    }

    .ec-meta-item i {
        font-size: 0.68rem;
        color: var(--blue);
    }

    .ec-divider {
        height: 1px;
        background: var(--border);
        margin: 0;
    }

    .ec-footer {
        padding: 0.85rem 1.2rem;
    }

    .ec-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        padding: 0.55rem 1rem;
        border-radius: var(--r-md);
        font-size: 0.83rem;
        font-weight: 600;
        font-family: var(--font);
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.15s;
    }

    .ec-btn-enroll {
        background: var(--blue);
        color: #fff;
        box-shadow: 0 1px 4px rgba(29, 78, 216, 0.2);
    }

    .ec-btn-enroll:hover {
        background: var(--blue-dk);
        color: #fff;
        box-shadow: 0 3px 14px rgba(29, 78, 216, 0.3);
    }

    .ec-btn-enrolled {
        background: var(--green-lt);
        color: var(--green);
        border: 1.5px solid rgba(5, 150, 105, 0.2);
    }

    .ec-btn-enrolled:hover {
        background: #d1fae5;
        color: var(--green);
    }

    /* View more */
    #moreButtonContainer {
        margin-top: 1.5rem;
    }

    .vmore-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 0.6rem 1.6rem;
        border-radius: var(--r-md);
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--blue);
        background: var(--blue-lt);
        border: 1.5px solid var(--blue-mid);
        cursor: pointer;
        font-family: var(--font);
        transition: all 0.15s;
    }

    .vmore-btn:hover {
        background: var(--blue);
        color: #fff;
        border-color: var(--blue);
        box-shadow: 0 3px 12px rgba(29, 78, 216, 0.25);
    }

    /* Empty */
    .ec-empty {
        text-align: center;
        padding: 4rem 1rem;
        color: var(--ink-4);
    }

    .ec-empty-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        opacity: 0.25;
    }

    .ec-empty-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--ink-3);
        margin-bottom: 0.35rem;
    }

    /* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
    .contact-section {
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 5rem 0 4.5rem;
    }

    .contact-info-card {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.35rem;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        transition: box-shadow 0.18s, transform 0.18s;
        height: 100%;
    }

    .contact-info-card:hover {
        box-shadow: var(--sh-md);
        transform: translateY(-2px);
    }

    .ci-icon {
        width: 46px;
        height: 46px;
        border-radius: var(--r-md);
        background: var(--blue-lt);
        color: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .ci-label {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--ink-4);
        margin-bottom: 3px;
    }

    .ci-value {
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--ink);
        text-decoration: none;
        display: block;
        line-height: 1.45;
        transition: color 0.15s;
    }

    .ci-value:hover {
        color: var(--blue);
    }

    /* Form */
    .cf-input {
        width: 100%;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        padding: 0.7rem 0.95rem;
        font-family: var(--font);
        font-size: 0.88rem;
        color: var(--ink);
        outline: none;
        transition: border-color 0.15s, box-shadow 0.15s;
        margin-bottom: 0.9rem;
    }

    .cf-input:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.08);
    }

    .cf-input::placeholder {
        color: var(--ink-4);
    }

    .cf-submit {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 0.6rem 1.4rem;
        background: var(--blue);
        color: #fff;
        border: none;
        border-radius: var(--r-md);
        font-size: 0.85rem;
        font-weight: 600;
        font-family: var(--font);
        cursor: pointer;
        transition: all 0.15s;
    }

    .cf-submit:hover {
        background: var(--blue-dk);
        box-shadow: 0 3px 12px rgba(29, 78, 216, 0.25);
    }

    .cf-map {
        background: var(--bg-2);
        border: 1px solid var(--border);
        border-radius: var(--r-xl);
        overflow: hidden;
        height: 100%;
        min-height: 340px;
    }

    .cf-map iframe {
        width: 100%;
        height: 100%;
        min-height: 340px;
        display: block;
        border: none;
    }

    /* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
    .ft-wrap {
        background: var(--dark);
        padding: 4rem 0 0;
    }

    .ft-brand img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 0.9rem;
        display: block;
    }

    .ft-desc {
        font-size: 0.83rem;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.7;
        margin-bottom: 1.2rem;
        font-weight: 400;
    }

    .ft-socials {
        display: flex;
        gap: 7px;
    }

    .ft-soc-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.35);
        font-size: 0.73rem;
        text-decoration: none;
        transition: all 0.15s;
    }

    .ft-soc-btn:hover {
        background: var(--blue);
        border-color: var(--blue);
        color: #fff;
        transform: translateY(-2px);
    }

    .ft-heading {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 1.2rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ft-heading::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.07);
    }

    .ft-link {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 0.83rem;
        color: rgba(255, 255, 255, 0.35);
        text-decoration: none;
        padding: 0.28rem 0;
        transition: color 0.15s;
        font-weight: 400;
    }

    .ft-link i {
        font-size: 0.6rem;
        color: var(--blue);
        opacity: 0.6;
    }

    .ft-link:hover {
        color: rgba(255, 255, 255, 0.75);
    }

    .ft-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 0.7rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ft-contact-item:last-child {
        border-bottom: none;
    }

    .ft-contact-item i {
        color: var(--blue);
        font-size: 0.82rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .ft-contact-text {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
        font-weight: 400;
        text-decoration: none;
        line-height: 1.5;
        transition: color 0.15s;
    }

    .ft-contact-text:hover {
        color: rgba(255, 255, 255, 0.65);
    }

    .ft-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin-top: 3rem;
        padding: 1.2rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .ft-bottom-text {
        font-size: 0.76rem;
        color: rgba(255, 255, 255, 0.22);
        font-weight: 400;
    }

    .ft-bottom-text a {
        color: rgba(255, 255, 255, 0.38);
        text-decoration: none;
    }

    .ft-bottom-text a:hover {
        color: rgba(255, 255, 255, 0.65);
    }

    /* ═══════════════════════════════════
   MODAL
═══════════════════════════════════ */
    #enrollModal .modal-content {
        border: none;
        border-radius: var(--r-xl);
        box-shadow: var(--sh-lg);
        font-family: var(--font);
        overflow: hidden;
    }

    #enrollModal .modal-header {
        background: var(--dark);
        border: none;
        padding: 1.4rem 1.6rem 1.2rem;
        position: relative;
        overflow: hidden;
    }

    #enrollModal .modal-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 120% at 90% 50%, rgba(29, 78, 216, 0.25), transparent 60%);
        pointer-events: none;
    }

    #enrollModal .modal-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        position: relative;
        z-index: 1;
        letter-spacing: -0.01em;
    }

    #enrollModal .btn-close {
        filter: invert(1) opacity(0.45);
        position: relative;
        z-index: 1;
    }

    #enrollModal .btn-close:hover {
        opacity: 1;
        filter: invert(1);
    }

    #enrollModal .modal-body {
        padding: 1.6rem;
        background: var(--white);
    }

    #enrollModal #modalExamTitle {
        font-size: 1rem;
        font-weight: 700;
        color: var(--ink);
        display: block;
        margin-bottom: 1.1rem;
        letter-spacing: -0.01em;
    }

    .modal-meta-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.65rem;
        margin-bottom: 1.1rem;
    }

    .modal-meta-item {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        padding: 0.75rem;
        text-align: center;
    }

    .modal-meta-label {
        font-size: 0.66rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--ink-4);
        margin-bottom: 3px;
    }

    .modal-meta-value {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--ink);
    }

    #enrollModal #modalExamNote {
        font-size: 0.8rem;
        color: var(--ink-3);
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        padding: 0.7rem 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 400;
    }

    #enrollModal #modalExamNote::before {
        content: '→';
        color: var(--blue);
        font-size: 0.78rem;
        flex-shrink: 0;
    }

    #enrollModal .modal-footer {
        background: var(--bg);
        border-top: 1px solid var(--border);
        padding: 0.9rem 1.6rem;
        gap: 0.5rem;
    }

    #enrollModal .btn-secondary {
        background: transparent;
        color: var(--ink-3);
        border: 1.5px solid var(--border-2);
        border-radius: var(--r-md);
        font-family: var(--font);
        font-size: 0.83rem;
        font-weight: 600;
        padding: 0.48rem 1.1rem;
        transition: all 0.15s;
    }

    #enrollModal .btn-secondary:hover {
        background: var(--bg-2);
        color: var(--ink);
    }

    #enrollModal #modalProceedBtn {
        background: var(--blue);
        color: #fff;
        border: none;
        border-radius: var(--r-md);
        font-family: var(--font);
        font-size: 0.83rem;
        font-weight: 600;
        padding: 0.48rem 1.35rem;
        box-shadow: 0 1px 4px rgba(29, 78, 216, 0.2);
        transition: all 0.15s;
    }

    #enrollModal #modalProceedBtn:hover {
        background: var(--blue-dk);
        box-shadow: 0 3px 12px rgba(29, 78, 216, 0.3);
    }

    /* Back to top */
    .back-to-top-custom {
        position: fixed;
        bottom: 1.75rem;
        right: 1.75rem;
        width: 40px;
        height: 40px;
        background: var(--dark-2);
        color: rgba(255, 255, 255, 0.7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        text-decoration: none;
        box-shadow: var(--sh-md);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.18s;
        z-index: 999;
    }

    .back-to-top-custom:hover {
        background: var(--blue);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: var(--sh-lg);
    }

    /* Fade-in animation */
    .fd-in {
        opacity: 0;
        transform: translateY(14px);
        animation: fdIn 0.45s ease forwards;
    }

    @keyframes fdIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .exam-grid-card {
        opacity: 0;
        animation: fdIn 0.4s ease forwards;
    }

    @for ($i =1; $i <=24; $i++) .exam-grid-card:nth-child({
            {
            $i
        }

    }) {
        animation-delay: {
                {
                0.04+(($i - 1) * 0.055)
            }
        }

        
    }

    @endfor

    /* Exams section bg */
    .exams-section {
        background: var(--bg);
        padding-bottom: 3.5rem;
    }
