      :root {
        --brand: #184080;
        --brand-d: #0f2c5c;
        --brand-l: #e7eef9;
        --sky: #1890d0;
        --sky-l: #e3f2fa;
        --ink: #0f1d3a;
        --ink-2: #3d4b6b;
        --muted: #6b7488;
        --line: #e3e7f0;
        --bg: #f4f7fb;
        --card: #ffffff;
        --gold: #e3a008;
        --green: #11845b;
        --green-l: #e6f5ee;
        --blue: #1890d0;
        --shadow: 0 4px 18px rgba(24, 64, 128, 0.08);
        --shadow-h: 0 10px 32px rgba(24, 64, 128, 0.16);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
      }

      html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
      }

      body {
        font-family: "Mulish", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        background: var(--bg);
        color: var(--ink);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }

      h1, h2, h3, h4 {
        font-family: "Sora", sans-serif;
        line-height: 1.25;
        font-weight: 700;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: color 0.2s ease, background-color 0.2s ease;
      }

      img {
        display: block;
        max-width: 100%;
        height: auto;
      }

      .wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
      }

      .sec {
        padding: 42px 0;
      }

      .sec-h {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 24px;
        gap: 16px;
        flex-wrap: wrap;
      }

      .sec-h h2 {
        font-size: clamp(20px, 2.8vw, 28px);
      }

      .sec-h .sub {
        font-size: 14px;
        color: var(--muted);
        margin-top: 4px;
      }

      .sec-h a.all {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--brand);
        white-space: nowrap;
      }
      
      .sec-h a.all:hover {
        color: var(--sky);
      }

      .pill {
        display: inline-block;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 6px;
        background: var(--brand-l);
        color: var(--brand);
      }

      /* ===== TOP STRIP ===== */
      .top {
        background: var(--ink);
        color: #c6cde0;
        font-size: 12.5px;
      }

      .top .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 36px;
        gap: 14px;
        padding-top: 4px;
        padding-bottom: 4px;
      }

      .top .lt {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .top b {
        color: var(--gold);
      }

      .top .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #3ddc91;
        animation: pulse 2s infinite;
        flex-shrink: 0;
      }

      @keyframes pulse {
        50% { box-shadow: 0 0 0 6px rgba(61, 220, 145, 0); }
        0%, 100% { box-shadow: 0 0 0 0 rgba(61, 220, 145, 0.5); }
      }

      .top .rt {
        display: flex;
        gap: 18px;
      }

      .top .rt a {
        white-space: nowrap;
      }

      .top .rt a:hover {
        color: var(--gold);
      }

      /* ===== HEADER ===== */
      header {
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 900;
        box-shadow: 0 2px 12px rgba(24, 64, 128, 0.08);
        border-bottom: 1px solid var(--line);
      }

      .hd {
        display: flex;
        align-items: center;
        gap: 18px;
        height: 80px;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--brand);
        flex-shrink: 0;
      }

      .logo img {
        height: 56px;
        width: auto;
        object-fit: contain;
      }

      .search-box-wrapper {
        position: relative;
        flex: 1;
        max-width: 520px;
      }

      .search {
        display: flex;
        background: #fff;
        border: 1.5px solid var(--line);
        border-radius: 10px;
        overflow: hidden;
        transition: border-color 0.18s;
      }

      .search:focus-within {
        border-color: var(--brand);
      }

      .search select {
        border: none;
        background: var(--bg);
        padding: 0 12px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink-2);
        border-right: 1px solid var(--line);
        outline: none;
        cursor: pointer;
      }

      .search input {
        flex: 1;
        border: none;
        padding: 11px 14px;
        font-family: inherit;
        font-size: 14px;
        outline: none;
        color: var(--ink);
        min-width: 0;
      }

      .search button {
        border: none;
        background: var(--brand);
        color: #fff;
        padding: 0 20px;
        font-family: inherit;
        font-weight: 800;
        font-size: 13.5px;
        cursor: pointer;
        transition: background-color 0.18s;
      }

      .search button:hover {
        background: var(--brand-d);
      }

      .hd-act {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        flex-shrink: 0;
      }

      .hd-act a {
        color: var(--ink);
        font-size: 13.5px;
        font-weight: 700;
        padding: 9px 14px;
        border-radius: 8px;
        display: inline-block;
      }

      .hd-act a:hover {
        background: var(--brand-l);
        color: var(--brand);
      }

      .hd-act .apply {
        background: var(--brand);
        color: #fff;
      }

      .hd-act .apply:hover {
        background: var(--brand-d);
        color: #fff;
      }

      .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin-left: auto;
        min-width: 44px;
        min-height: 44px;
      }

      .burger span {
        width: 25px;
        height: 2.5px;
        background: var(--brand);
        border-radius: 2px;
        transition: transform 0.25s, opacity 0.25s;
      }

      .burger.on span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
      }

      .burger.on span:nth-child(2) {
        opacity: 0;
      }

      .burger.on span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
      }

      /* NAV ROW */
      .navbar {
        background: var(--brand);
        border-bottom: 1px solid var(--brand-d);
        position: sticky;
        top: 80px;
        z-index: 880;
      }

      .navbar .wrap {
        display: flex;
        gap: 2px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .navbar .wrap::-webkit-scrollbar {
        display: none;
      }

      .navbar a {
        padding: 13px 16px;
        font-size: 13.5px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.88);
        white-space: nowrap;
        border-bottom: 3px solid transparent;
        transition: color 0.18s, border-color 0.18s;
      }

      .navbar a:hover {
        color: #fff;
        border-color: var(--sky);
      }

      .mmenu {
        display: none;
        background: #fff;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 890;
        flex-direction: column;
        padding: 12px 20px;
        overflow-y: auto;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
      }

      .mmenu.open {
        display: flex;
      }

      .mmenu a {
        padding: 14px 6px;
        font-weight: 700;
        font-size: 16px;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
      }

      /* ===== HERO ===== */
      .hero {
        position: relative;
        background: linear-gradient(180deg, #0f2c5c 0%, #184080 100%);
        color: #fff;
        overflow: hidden;
      }

      .hero img.bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.28;
      }

      .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 29, 58, 0.4), rgba(15, 29, 58, 0.85));
      }

      .hero .wrap {
        position: relative;
        z-index: 2;
        padding: 60px 20px 64px;
      }

      .hero h1 {
        font-size: clamp(26px, 4.5vw, 44px);
        max-width: 800px;
        letter-spacing: -0.01em;
      }

      .hero h1 span {
        color: var(--gold);
      }

      .hero p {
        font-size: clamp(14.5px, 2vw, 16.5px);
        opacity: 0.92;
        max-width: 600px;
        margin: 16px 0 28px;
      }

      .hero-search-wrapper {
        position: relative;
        max-width: 680px;
      }

      .hero-search {
        background: #fff;
        border-radius: 14px;
        padding: 8px;
        display: flex;
        gap: 8px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
      }

      .hero-search select,
      .hero-search input {
        border: none;
        outline: none;
        font-family: inherit;
        font-size: 14.5px;
        padding: 13px 14px;
        border-radius: 9px;
        background: #f4f6fa;
        color: var(--ink);
      }

      .hero-search select {
        font-weight: 700;
        color: var(--ink-2);
        cursor: pointer;
      }

      .hero-search input {
        flex: 1;
        min-width: 120px;
      }

      .hero-search button {
        border: none;
        background: var(--brand);
        color: #fff;
        font-family: inherit;
        font-weight: 800;
        font-size: 14.5px;
        padding: 0 26px;
        border-radius: 9px;
        cursor: pointer;
        white-space: nowrap;
        min-height: 46px;
      }

      .hero-search button:hover {
        background: var(--brand-d);
      }

      /* SEARCH SUGGESTIONS DROPDOWN STYLING */
      .suggestions-box {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 10px;
        box-shadow: 0 12px 32px rgba(15, 29, 58, 0.18);
        z-index: 1000;
        max-height: 280px;
        overflow-y: auto;
        margin-top: 6px;
        display: none;
      }

      .suggestion-item {
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        border-bottom: 1px solid #f0f3f8;
        font-size: 14px;
        color: var(--ink);
        transition: background-color 0.15s;
      }

      .suggestion-item:last-child {
        border-bottom: none;
      }

      .suggestion-item:hover {
        background: var(--brand-l);
        color: var(--brand);
      }

      .suggestion-tag {
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        background: #f4f6fa;
        padding: 3px 8px;
        border-radius: 5px;
        color: var(--ink-2);
      }

      .hero-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 36px;
        max-width: 800px;
      }

      .hero-stats div .n {
        font-family: "Sora", sans-serif;
        font-size: clamp(22px, 3.5vw, 28px);
        font-weight: 800;
        color: var(--gold);
      }

      .hero-stats div .l {
        font-size: 12.5px;
        opacity: 0.85;
      }

      /* ===== GOALS CARDS ===== */
      .goals {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
      }

      .goal {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 20px 16px;
        box-shadow: var(--shadow);
        transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, outline 0.2s;
        cursor: pointer;
      }

      .goal:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-h);
        border-color: var(--brand);
      }

      .goal .ic {
        width: 46px;
        height: 46px;
        border-radius: 11px;
        background: var(--brand-l);
        display: grid;
        place-items: center;
        font-size: 22px;
        margin-bottom: 12px;
      }

      .goal h3 {
        font-size: 15.5px;
        margin-bottom: 4px;
      }

      .goal .cnt {
        font-size: 12.5px;
        color: var(--muted);
        font-weight: 600;
      }

      .goal ul {
        list-style: none;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 5px;
      }

      .goal ul li {
        font-size: 12px;
        color: var(--ink-2);
        font-weight: 600;
      }

      .goal ul li::before {
        content: "› ";
        color: var(--brand);
        font-weight: 800;
      }

      /* ===== PEOPLE CARDS (6 PER ROW IN ONE LINE) ===== */
      .people {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
      }

      .pp {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 16px 8px;
        text-align: center;
        box-shadow: var(--shadow);
      }

      .pp img {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        object-position: top;
        object-fit: cover;
        margin: 0 auto 10px;
      }

      .pp b {
        font-size: 13.5px;
        display: block;
        line-height: 1.3;
      }

      .pp span {
        font-size: 11.5px;
        color: var(--muted);
        margin-top: 2px;
        display: block;
      }

      /* ===== INSTITUTION CARDS ===== */
      .icards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .ic-card {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.2s, outline 0.2s;
      }

      .ic-card:hover {
        box-shadow: var(--shadow-h);
      }

      .ic-banner {
        height: 160px;
        position: relative;
        overflow: hidden;
        background: #184080;
      }

      .ic-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
      }

      .ic-card:hover .ic-banner img {
        transform: scale(1.05);
      }

      .ic-rank {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--ink);
        color: #fff;
        font-size: 11.5px;
        font-weight: 800;
        padding: 5px 11px;
        border-radius: 7px;
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .ic-rank b {
        color: var(--gold);
      }

      .ic-fav {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.92);
        display: grid;
        place-items: center;
        font-size: 15px;
        cursor: pointer;
      }

      .ic-body {
        padding: 18px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      .ic-logo-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
      }

      .ic-logo {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        border: 1px solid var(--line);
        object-fit: cover;
        flex-shrink: 0;
      }

      .ic-body h3 {
        font-size: 17px;
        line-height: 1.25;
      }

      .ic-loc {
        font-size: 12.5px;
        color: var(--muted);
        font-weight: 600;
        margin-top: 2px;
      }

      .ic-meta {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin: 8px 0 12px;
      }

      .chip {
        font-size: 11.5px;
        font-weight: 700;
        padding: 4px 9px;
        border-radius: 6px;
        background: #f4f6fa;
        color: var(--ink-2);
      }

      .chip.rate {
        background: var(--green-l);
        color: var(--green);
      }

      .ic-desc {
        font-size: 13.5px;
        color: var(--ink-2);
        margin-bottom: 16px;
        flex: 1;
      }

      .ic-actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        border-top: 1px solid var(--line);
        padding-top: 14px;
      }

      .ic-actions a {
        font-size: 12.5px;
        font-weight: 800;
        padding: 9px 12px;
        border-radius: 8px;
        flex: 1;
        text-align: center;
        white-space: nowrap;
        min-width: 90px;
      }

      .a-primary {
        background: var(--brand);
        color: #fff;
      }

      .a-primary:hover {
        background: var(--brand-d);
      }

      .a-ghost {
        border: 1.5px solid var(--line);
        color: var(--ink-2);
      }

      .a-ghost:hover {
        border-color: var(--brand);
        color: var(--brand);
      }

      /* ===== PROGRAM TILES ===== */
      .ptiles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }

      .ptile {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: transform 0.2s, box-shadow 0.2s, outline 0.2s;
        display: flex;
        flex-direction: column;
      }

      .ptile:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-h);
      }

      .ptile .ph {
        height: 140px;
        position: relative;
        overflow: hidden;
        background: #0f2c5c;
      }

      .ptile .ph img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .ptile .ph::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 20%, rgba(15, 29, 58, 0.85));
      }

      .ptile .ph .tag {
        position: absolute;
        bottom: 12px;
        left: 14px;
        color: #fff;
        font-family: "Sora", sans-serif;
        font-weight: 700;
        font-size: 16px;
        z-index: 2;
      }

      .ptile .pb {
        padding: 16px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      .ptile .pb p {
        font-size: 13px;
        color: var(--ink-2);
        margin-bottom: 12px;
        flex: 1;
      }

      .ptile .pb a {
        font-size: 13px;
        font-weight: 800;
        color: var(--brand);
      }

      /* ===== JOURNEY RIBBON ===== */
      .journey {
        background: var(--ink);
        color: #fff;
      }

      .jrow {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
        position: relative;
        margin-top: 16px;
      }

      .jrow::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 8%;
        right: 8%;
        height: 3px;
        background: linear-gradient(90deg, var(--brand), var(--sky), var(--green));
        z-index: 0;
      }

      .jstep {
        text-align: center;
        position: relative;
        z-index: 1;
      }

      .jstep .d {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        margin: 0 auto 12px;
        display: grid;
        place-items: center;
        font-size: 24px;
        border: 4px solid var(--ink);
        background: var(--brand);
      }

      .jstep:nth-child(2) .d { background: #1d5fa3; }
      .jstep:nth-child(3) .d { background: var(--sky); color: var(--ink); }
      .jstep:nth-child(4) .d { background: #1d6fb0; }
      .jstep:nth-child(5) .d { background: #2b8acc; }
      .jstep:nth-child(6) .d { background: var(--green); }

      .jstep h4 {
        font-size: 14.5px;
        margin-bottom: 3px;
      }

      .jstep span {
        font-size: 12px;
        opacity: 0.7;
      }

      /* ===== RANKING TABLE ===== */
      .tablecard {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      .ranking-scroll {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13.5px;
        min-width: 680px;
      }

      thead th {
        background: #fbf3ee;
        color: var(--brand-d);
        text-align: left;
        padding: 14px 16px;
        font-family: "Sora", sans-serif;
        font-size: 12px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }

      tbody td {
        padding: 14px 16px;
        border-top: 1px solid var(--line);
        vertical-align: middle;
      }

      tbody tr:hover {
        background: #fafbfd;
      }

      .rk {
        font-family: "Sora", sans-serif;
        font-weight: 800;
        color: var(--brand);
        font-size: 15px;
      }

      .tc-name {
        font-weight: 800;
        color: var(--ink);
      }

      .tc-sub {
        font-size: 12px;
        color: var(--muted);
        font-weight: 600;
      }

      td .rate {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: var(--green-l);
        color: var(--green);
        font-weight: 800;
        padding: 3px 8px;
        border-radius: 6px;
        font-size: 12.5px;
      }

      td .feebtn {
        background: var(--brand);
        color: #fff;
        font-weight: 800;
        font-size: 12px;
        padding: 8px 14px;
        border-radius: 7px;
        display: inline-block;
      }

      /* ===== EXAM CARDS ===== */
      .exams {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }

      .exam {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 13px;
        padding: 18px;
        box-shadow: var(--shadow);
        transition: transform 0.2s, box-shadow 0.2s, outline 0.2s;
      }

      .exam:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-h);
      }

      .exam .mode {
        font-size: 11px;
        font-weight: 800;
        color: var(--blue);
        background: #eaf1fb;
        padding: 3px 8px;
        border-radius: 5px;
        display: inline-block;
      }

      .exam h4 {
        font-size: 16.5px;
        margin: 10px 0 12px;
      }

      .exam .erow {
        display: flex;
        justify-content: space-between;
        font-size: 12.5px;
        padding: 6px 0;
        border-top: 1px dashed var(--line);
      }

      .exam .erow span {
        color: var(--muted);
        font-weight: 600;
      }

      .exam .erow b {
        font-weight: 800;
      }

      .exam .ego {
        margin-top: 12px;
        font-size: 13px;
        font-weight: 800;
        color: var(--brand);
        display: inline-block;
      }

      /* ===== PARTNERS ===== */
      .plogos {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 12px;
      }

      .plogo {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 11px;
        height: 64px;
        display: grid;
        place-items: center;
        font-weight: 800;
        font-size: 13px;
        color: var(--ink-2);
        box-shadow: var(--shadow);
        transition: transform 0.2s, border-color 0.2s, color 0.2s;
        text-align: center;
        padding: 4px;
      }

      .plogo:hover {
        color: var(--brand);
        border-color: var(--brand);
        transform: translateY(-3px);
      }

      /* ===== TESTIMONIALS ===== */
      .tcards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }

      .tc {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 22px;
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
      }

      .tc .st {
        color: var(--gold);
        letter-spacing: 2px;
        margin-bottom: 10px;
      }

      .tc q {
        font-size: 14px;
        color: var(--ink-2);
        font-style: normal;
        line-height: 1.6;
        flex: 1;
      }

      .tc .who {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 18px;
      }

      .tc .who img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
      }

      .tc .who b {
        display: block;
        font-size: 14px;
      }

      .tc .who span {
        font-size: 12px;
        color: var(--muted);
      }

      /* ===== AWARDS ===== */
      .awards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }

      .aw {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        box-shadow: var(--shadow);
      }

      .aw .ai {
        font-size: 26px;
        flex-shrink: 0;
      }

      .aw p {
        font-size: 13.5px;
        font-weight: 600;
      }

      .aw p b {
        color: var(--brand);
      }

      /* ===== STAT BAND ===== */
      .band {
        background: linear-gradient(120deg, var(--brand), var(--brand-d));
        color: #fff;
      }

      .bgrid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }

      .bstat {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 13px;
        padding: 20px 14px;
        text-align: center;
      }

      .bstat .n {
        font-family: "Sora", sans-serif;
        font-size: clamp(26px, 3vw, 32px);
        font-weight: 800;
      }

      .bstat .l {
        font-size: 12.5px;
        opacity: 0.9;
        margin-top: 4px;
      }

      /* ===== NEWS ===== */
      .news {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }

      .ncard {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        flex-direction: column;
      }

      .ncard:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-h);
      }

      .ncard .np {
        height: 160px;
        overflow: hidden;
        background: #184080;
      }

      .ncard .np img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
      }

      .ncard:hover .np img {
        transform: scale(1.05);
      }

      .ncard .nb {
        padding: 18px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      .ncard .nd {
        font-size: 11.5px;
        font-weight: 800;
        color: var(--brand);
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }

      .ncard .nb h3 {
        font-size: 16px;
        margin: 8px 0;
        line-height: 1.35;
      }

      .ncard .nb p {
        font-size: 13px;
        color: var(--ink-2);
        margin-bottom: 12px;
        flex: 1;
      }

      .ncard .nb a {
        font-size: 12.5px;
        font-weight: 800;
        color: var(--green);
      }

      /* ===== CTA / ENQUIRY ===== */
      .cta {
        background: var(--ink);
        color: #fff;
        border-radius: 18px;
        padding: 40px;
        display: grid;
        grid-template-columns: 1fr 0.85fr;
        gap: 36px;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      .cta-l {
        position: relative;
        z-index: 2;
      }

      .cta-l h2 {
        font-size: clamp(22px, 3.2vw, 32px);
        margin-bottom: 14px;
      }

      .cta-l ul {
        list-style: none;
        margin-top: 18px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .cta-l li {
        display: flex;
        gap: 12px;
        align-items: center;
        font-size: 14.5px;
        opacity: 0.92;
      }

      .cta-l li::before {
        content: "✓";
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--green);
        color: #fff;
        display: grid;
        place-items: center;
        font-size: 12px;
        flex-shrink: 0;
        font-weight: 800;
      }

      .cform {
        background: #fff;
        border-radius: 14px;
        padding: 24px;
        position: relative;
        z-index: 2;
      }

      .cform h3 {
        color: var(--ink);
        font-size: 19px;
        margin-bottom: 16px;
      }

      .cform .fld {
        margin-bottom: 12px;
      }

      .cform label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: var(--ink-2);
        margin-bottom: 5px;
      }

      .cform input,
      .cform select,
      .cform textarea {
        width: 100%;
        padding: 12px;
        border: 1.5px solid var(--line);
        border-radius: 9px;
        font-family: inherit;
        font-size: 14px;
        color: var(--ink);
        outline: none;
        transition: border-color 0.18s;
        background: #fff;
      }

      .cform input:focus,
      .cform select:focus,
      .cform textarea:focus {
        border-color: var(--brand);
      }

      .cform .row2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .cform button {
        width: 100%;
        background: var(--brand);
        color: #fff;
        border: none;
        padding: 13px;
        border-radius: 9px;
        font-family: inherit;
        font-weight: 800;
        font-size: 14.5px;
        cursor: pointer;
        margin-top: 6px;
        min-height: 46px;
      }

      .cform button:hover {
        background: var(--brand-d);
      }

      /* ===== FOOTER ===== */
      footer {
        background: #15171f;
        color: #9aa1b3;
        padding: 48px 0 24px;
        margin-top: 40px;
      }

      .fgrid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 32px;
      }

      .fb p {
        font-size: 13.5px;
        max-width: 320px;
        margin-bottom: 18px;
        line-height: 1.6;
      }

      .soc {
        display: flex;
        gap: 10px;
      }

      .soc a {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.08);
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 15px;
        transition: background-color 0.2s;
      }

      .soc a:hover {
        background: var(--brand);
      }

      footer h4 {
        color: #fff;
        font-family: "Sora", sans-serif;
        font-size: 12.5px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 16px;
      }

      footer ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      footer ul a {
        font-size: 13.5px;
      }

      footer ul a:hover {
        color: #fff;
      }

      .fc div {
        font-size: 13.5px;
        margin-bottom: 12px;
        display: flex;
        gap: 10px;
      }

      .fbot {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 36px;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12.5px;
      }

      .fbot a:hover {
        color: #fff;
      }

      /* STICKY MOBILE BAR */
      .mbar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 870;
        background: #fff;
        border-top: 1px solid var(--line);
        padding: 10px 14px;
        gap: 10px;
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
      }

      .mbar a {
        flex: 1;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        font-weight: 800;
        font-size: 14px;
      }

      .mbar .e {
        border: 1.5px solid var(--line);
        color: var(--ink-2);
      }

      .mbar .a {
        background: var(--brand);
        color: #fff;
      }

      /* REVEAL ANIMATION */
      .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
      }

      .reveal.in {
        opacity: 1;
        transform: translateY(0);
      }

      /* ===== RESPONSIVE BREAKPOINTS ===== */
      @media (min-width: 1600px) {
        .wrap {
          max-width: 1440px;
        }
      }

      @media (max-width: 1200px) {
        .goals {
          grid-template-columns: repeat(3, 1fr);
        }
        .plogos {
          grid-template-columns: repeat(6, 1fr);
        }
        .fgrid {
          grid-template-columns: 1.4fr 1fr 1fr 1fr;
        }
        .people {
          grid-template-columns: repeat(6, 1fr);
          gap: 10px;
        }
      }

      @media (max-width: 1024px) {
        .exams {
          grid-template-columns: repeat(2, 1fr);
        }
        .people {
          grid-template-columns: repeat(3, 1fr);
          gap: 14px;
        }
        .bgrid {
          grid-template-columns: repeat(2, 1fr);
        }
        .fgrid {
          grid-template-columns: 1fr 1fr;
          gap: 28px;
        }
        .plogos {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      @media (max-width: 768px) {
        header {
          height: 70px;
        }
        
        .navbar {
          top: 70px;
        }

        .hd {
          height: 70px;
        }

        .logo img {
          height: 48px;
        }

        .search-box-wrapper, .hd-act {
          display: none;
        }

        .burger {
          display: flex;
        }

        .hero-stats {
          grid-template-columns: repeat(2, 1fr);
          gap: 16px;
        }

        .icards {
          grid-template-columns: 1fr;
        }

        .ptiles, .news, .tcards, .awards {
          grid-template-columns: repeat(2, 1fr);
        }

        .cta {
          grid-template-columns: 1fr;
          padding: 28px 20px;
        }

        .jrow {
          grid-template-columns: repeat(3, 1fr);
          gap: 24px 12px;
        }

        .jrow::before {
          display: none;
        }

        .top .rt {
          display: none;
        }

        .top .wrap {
          justify-content: center;
        }
      }

      @media (max-width: 576px) {
        body {
          padding-bottom: 64px;
        }

        .sec {
          padding: 32px 0;
        }

        .hero .wrap {
          padding: 40px 16px 48px;
        }

        .hero-search {
          flex-direction: column;
        }

        .hero-search button {
          width: 100%;
        }

        .goals {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }

        .people {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
        }

        .ptiles, .news, .tcards, .awards, .exams {
          grid-template-columns: 1fr;
        }

        .plogos {
          grid-template-columns: repeat(3, 1fr);
        }

        .bgrid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
        }

        .jrow {
          grid-template-columns: repeat(2, 1fr);
        }

        .cform .row2 {
          grid-template-columns: 1fr;
        }

        .fgrid {
          grid-template-columns: 1fr;
        }

        .mbar {
          display: flex;
        }
        
        .cform input, .cform select, .cform textarea, .hero-search input, .hero-search select {
          font-size: 16px;
        }
      }

      @media (max-width: 380px) {
        .goals {
          grid-template-columns: 1fr;
        }

        .people {
          grid-template-columns: 1fr;
        }

        .plogos {
          grid-template-columns: repeat(2, 1fr);
        }

        .bgrid {
          grid-template-columns: 1fr;
        }
      }

/* ===== CMS Page additions ===== */
main { display:block; }

.page-hero {
  background: linear-gradient(135deg, var(--brand-d, #0f2c5c) 0%, var(--brand, #184080) 100%);
  color: #fff;
  padding: 70px 20px 60px;
  text-align: center;
}
.page-hero.page-hero-img { background-size: cover; background-position: center; }
.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 10px;
  line-height: 1.2;
}
.page-hero p {
  font-family: 'Mulish', sans-serif;
  font-size: 17px;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0.95;
}

.section { padding: 50px 0 70px; }
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-narrow { max-width: 860px; }

.page-content {
  font-family: 'Mulish', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #1a2340;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4 {
  font-family: 'Sora', sans-serif;
  color: #0f2c5c;
  line-height: 1.25;
  margin: 1.6em 0 0.6em;
}
.page-content h2 { font-size: 28px; }
.page-content h3 { font-size: 22px; }
.page-content h4 { font-size: 18px; }
.page-content p { margin: 0 0 1.1em; }
.page-content a { color: #184080; text-decoration: underline; }
.page-content a:hover { color: #e3a008; }
.page-content ul, .page-content ol { margin: 0 0 1.2em 1.4em; }
.page-content li { margin-bottom: 0.4em; }
.page-content img { max-width: 100%; height: auto; border-radius: 8px; }
.page-content blockquote {
  border-left: 4px solid #184080;
  padding: 6px 18px;
  margin: 1.2em 0;
  background: #f5f8fc;
  color: #334;
  font-style: italic;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
}
.page-content table th, .page-content table td {
  border: 1px solid #dfe6ef;
  padding: 10px 12px;
  text-align: left;
}
.page-content table th { background: #f5f8fc; color: #0f2c5c; }
