/* ══════════════════════════════════════════
       RESET & TOKENS
    ══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:     #1b305c;
      --navy-lt:  #243f75;
      --maroon:   #972836;
      --cream:    #f8f6f2;
      --grey:     #f2f4f7;
      --text:     #1a1a2e;
      --muted:    #5a6478;
      --white:    #ffffff;
      --radius:   12px;
      --shadow:   0 4px 24px rgba(27,48,92,0.10);
      --font-body: 'DM Sans', Arial, sans-serif;
      --font-display: 'DM Serif Display', Georgia, serif;
    }

    body { font-family: var(--font-body); color: var(--text); overflow-x: hidden; }

    .container { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--maroon);
      margin-bottom: 10px; display: block;
    }

    h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 42px);
      color: var(--navy); line-height: 1.15; margin-bottom: 16px;
    }

    h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }

    p { font-size: 15px; line-height: 1.7; color: var(--muted); }

    section { padding: 72px 20px; }

    /* ══════════════════════════════════════════
       HERO — TOP FOLD (headline left, form right)
    ══════════════════════════════════════════ */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, #0f1e40 100%);
      padding: 0;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: stretch;
    }

    .hero::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(151,40,54,0.20) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute; bottom: -80px; left: -80px;
      width: 360px; height: 360px; border-radius: 50%;
      background: radial-gradient(circle, rgba(36,63,117,0.40) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 0;
      align-items: stretch;
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1200px;
    }

    /* ── Hero Left ── */
    .hero-left {
      padding: 64px 48px 64px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-left img{
    width: 50%;
    margin-bottom: 30vh;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: #f4a0aa;
      margin-bottom: 20px;
    }

    .hero-eyebrow span {
      display: inline-block; width: 28px; height: 2px;
      background: var(--maroon); border-radius: 2px;
    }

    .hero-left h1 {
      font-family: var(--font-display);
      font-size: clamp(32px, 4.5vw, 52px);
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .hero-left p {
      font-size: 16px;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 36px;
    }

    .hero-proof {
      display: flex; flex-wrap: wrap; gap: 12px;
    }

    .proof-chip {
      font-size: 12px; font-weight: 600;
      color: rgba(255,255,255,0.85);
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.18);
      padding: 7px 14px; border-radius: 30px;
    }

    /* ── Hero Right — Form Panel ── */
    .hero-form-panel {
      background: var(--white);
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    }

    .form-title {
      font-family: var(--font-display);
      font-size: 22px; color: var(--navy);
      line-height: 1.2; margin-bottom: 6px;
    }

    .form-sub {
      font-size: 13px; color: var(--muted);
      margin-bottom: 24px; line-height: 1.5;
    }

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

    .form-group label {
      display: block; font-size: 12px; font-weight: 600;
      color: var(--navy); letter-spacing: 0.5px;
      text-transform: uppercase; margin-bottom: 6px;
    }

    .form-group input,
    .form-group select {
      width: 100%; padding: 11px 14px;
      font-family: var(--font-body); font-size: 14px;
      color: var(--text);
      border: 1.5px solid #d0d6e3; border-radius: 8px;
      background: var(--grey); outline: none;
      transition: border-color 0.2s;
      appearance: none; -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus { border-color: var(--navy); background: var(--white); }

    .form-group input::placeholder { color: #9aa3b0; }

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

    .btn-submit {
      width: 100%; padding: 14px;
      background: var(--maroon); color: var(--white);
      font-family: var(--font-body); font-size: 15px; font-weight: 700;
      border: none; border-radius: 8px; cursor: pointer;
      letter-spacing: 0.3px; margin-top: 4px;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-submit:hover { background: #7a1f2b; transform: translateY(-1px); }

    .form-privacy {
      font-size: 11px; color: var(--muted);
      text-align: center; margin-top: 12px; line-height: 1.5;
    }

    /* ══════════════════════════════════════════
       S1 — DUAL HERO COPY STRIP
    ══════════════════════════════════════════ */
    .hero-copy-strip { background: var(--navy); padding: 0; }

    .hc-grid { display: grid; grid-template-columns: 1fr 1fr; }

    .hc-card {
      padding: 48px 44px;
      border-right: 1px solid rgba(255,255,255,0.12);
    }

    .hc-card:last-child { border-right: none; }

    .hc-tag {
      display: inline-block; font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 12px; border-radius: 20px; margin-bottom: 16px;
    }

    .hc-card.student .hc-tag { background: rgba(151,40,54,0.25); color: #f4a0aa; }
    .hc-card.parent  .hc-tag { background: rgba(255,255,255,0.12); color: #a8b8d8; }

    .hero-copy-strip h2 {
      font-family: var(--font-display); color: var(--white);
      font-size: clamp(22px, 3vw, 32px); margin-bottom: 14px;
    }

    .hero-copy-strip p {
      color: rgba(255,255,255,0.72); font-size: 15px;
      line-height: 1.7; margin-bottom: 0;
    }

    .hc-card.student { background: var(--navy); }
    .hc-card.parent  { background: #243f75; }

    /* ══════════════════════════════════════════
       S2 — STATS BAR
    ══════════════════════════════════════════ */
    .stats-bar { background: var(--maroon); padding: 32px 20px; }

    .stats-bar .container {
      display: grid;
      grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr;
      align-items: center;
    }

    .stat-item { text-align: center; padding: 8px 16px; }

    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 36px);
      color: var(--white); display: block; line-height: 1; margin-bottom: 6px;
    }

    .stat-label {
      font-size: 11px; color: rgba(255,255,255,0.80);
      font-weight: 500; letter-spacing: 0.5px;
      text-transform: uppercase; line-height: 1.4;
    }

    .stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.25); justify-self: center; }

    /* ══════════════════════════════════════════
       S3 — PROGRAMMES
    ══════════════════════════════════════════ */
    .programmes-section { background: var(--cream); }

    .campus-tabs {
      display: flex; gap: 8px; margin-bottom: 40px;
      border-bottom: 2px solid #dde2eb;
    }

    .campus-tab {
      padding: 12px 24px; font-family: var(--font-body);
      font-size: 14px; font-weight: 600; cursor: pointer;
      border: none; background: none; color: var(--muted);
      border-bottom: 3px solid transparent; margin-bottom: -2px;
      transition: all 0.2s;
    }

    .campus-tab.active { color: var(--navy); border-bottom-color: var(--maroon); }
    .campus-tab:hover:not(.active) { color: var(--navy); }

    .campus-panel { display: none; }
    .campus-panel.active { display: block; }

    .prog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px; margin-top: 16px;
    }

    .prog-card {
      background: var(--white); border-radius: var(--radius);
      padding: 32px 28px; box-shadow: var(--shadow);
      border-top: 4px solid var(--navy);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .prog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,48,92,0.16); }
    .prog-card.highlight { border-top-color: var(--maroon); }

    .prog-badge {
      display: inline-block; font-size: 10px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 4px;
      background: rgba(151,40,54,0.10); color: var(--maroon); margin-bottom: 16px;
    }

    .prog-card h3 {
      font-family: var(--font-display); font-size: 22px;
      margin-bottom: 12px; color: var(--navy);
    }

    .prog-card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 20px; }

    .spec-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

    .spec-tag {
      font-size: 12px; font-weight: 500; color: var(--navy);
      background: var(--grey); padding: 5px 12px;
      border-radius: 20px; border: 1px solid #dde2eb;
    }

    .minor-strip {
      background: var(--navy); border-radius: var(--radius);
      padding: 24px 28px; margin-top: 24px;
    }

    .ms-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,0.55);
      margin-bottom: 12px; display: block;
    }

    .minor-list { display: flex; flex-wrap: wrap; gap: 10px; }

    .minor-list span {
      font-size: 12px; color: var(--white);
      background: rgba(255,255,255,0.12);
      padding: 5px 12px; border-radius: 4px;
    }

    /* ══════════════════════════════════════════
       S4 — CURRICULUM
    ══════════════════════════════════════════ */
    .curriculum-section { background: var(--white); }

    .year-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 40px; }

    .year-card {
      background: var(--cream); border-radius: var(--radius);
      padding: 28px; border-left: 4px solid var(--navy);
    }

    .year-card:nth-child(3), .year-card:nth-child(4) { border-left-color: var(--maroon); }

    .year-num {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--maroon);
      margin-bottom: 8px; display: block;
    }

    .year-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }

    .course-pills { display: flex; flex-wrap: wrap; gap: 8px; }

    .course-pill {
      font-size: 12px; background: var(--white); color: var(--text);
      padding: 5px 11px; border-radius: 4px;
      border: 1px solid #d0d6e3; line-height: 1.4;
    }

    /* ══════════════════════════════════════════
       S5 — SPECIALISATIONS
    ══════════════════════════════════════════ */
    .specs-section { background: var(--grey); }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
      gap: 16px; margin-top: 40px;
    }

    .spec-block {
      background: var(--white); border-radius: var(--radius);
      padding: 24px 20px; text-align: center;
      box-shadow: var(--shadow); transition: transform 0.2s;
    }

    .spec-block:hover { transform: translateY(-3px); }

    .spec-icon {
      width: 52px; height: 52px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--navy-lt));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px; font-size: 22px;
    }

    .spec-block h4 { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; }

    /* ══════════════════════════════════════════
       S6 — INTERNSHIPS
    ══════════════════════════════════════════ */
    .internships-section { background: var(--navy); }

    .internships-section .section-label { color: #f4a0aa; }
    .internships-section h2 { color: var(--white); }
    .internships-section > .container > p { color: rgba(255,255,255,0.72); }

    .org-groups { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }

    .org-group {
      background: rgba(255,255,255,0.07); border-radius: var(--radius);
      padding: 24px 22px; border: 1px solid rgba(255,255,255,0.12);
    }

    .og-icon { font-size: 24px; margin-bottom: 12px; display: block; }

    .org-group h4 {
      font-size: 13px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px;
    }

    .org-group ul { list-style: none; }

    .org-group ul li {
      font-size: 14px; color: rgba(255,255,255,0.85);
      padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .org-group ul li:last-child { border-bottom: none; }

    .skills-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }

    .skill-chip {
      font-size: 13px; background: rgba(255,255,255,0.10);
      color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.18);
      padding: 7px 16px; border-radius: 30px; font-weight: 500;
    }

    /* ══════════════════════════════════════════
       S7 — CAREERS
    ══════════════════════════════════════════ */
    .careers-section { background: var(--cream); }

    .career-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; align-items: start; }

    .career-list { list-style: none; }

    .career-list li {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 14px 0; border-bottom: 1px solid #dde2eb;
      font-size: 15px; color: var(--text);
    }

    .career-list li:last-child { border-bottom: none; }

    .career-list li .ci {
      width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
      background: rgba(151,40,54,0.10);
      display: flex; align-items: center; justify-content: center; font-size: 15px;
    }

    .sector-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    .sector-card {
      background: var(--white); border-radius: 8px;
      padding: 16px 18px; box-shadow: 0 2px 10px rgba(27,48,92,0.07);
    }

    .sector-card .sc-icon { font-size: 20px; margin-bottom: 8px; display: block; }

    .sector-card h5 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }

    .sector-card p { font-size: 12px; color: var(--muted); }

    /* ══════════════════════════════════════════
       S8 — SCHOLARSHIPS
    ══════════════════════════════════════════ */
    .scholarships-section { background: var(--white); }

    .schol-type-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
      gap: 20px; margin-top: 40px;
    }

    .schol-type-card {
      background: var(--grey); border-radius: var(--radius);
      padding: 28px 24px; border-top: 4px solid var(--navy); box-shadow: var(--shadow);
    }

    .schol-type-card.highlight { border-top-color: var(--maroon); }

    .schol-icon { font-size: 28px; display: block; margin-bottom: 14px; }

    .schol-type-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

    .schol-type-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    .schol-note {
      font-size: 13px; color: var(--muted); margin-top: 28px;
      padding: 16px 20px; background: var(--cream);
      border-radius: 8px; line-height: 1.7;
    }

    .schol-note strong { color: var(--navy); }

    /* ══════════════════════════════════════════
       S9 — ADMISSION PROCESS
    ══════════════════════════════════════════ */
    .admission-section { background: var(--grey); }

    .steps-row {
      display: grid; grid-template-columns: repeat(5,1fr);
      margin-top: 48px; position: relative;
    }

    .steps-row::before {
      content: ''; position: absolute;
      top: 28px; left: calc(10%); right: calc(10%);
      height: 2px; background: #dde2eb; z-index: 0;
    }

    .step-item { text-align: center; padding: 0 12px; position: relative; z-index: 1; }

    .step-circle {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--navy); display: flex;
      align-items: center; justify-content: center;
      margin: 0 auto 16px; font-size: 20px; font-weight: 700;
      color: var(--white); border: 3px solid var(--white);
      box-shadow: 0 0 0 2px var(--navy);
    }

    .step-item h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

    .step-item p { font-size: 12px; color: var(--muted); line-height: 1.5; }

    .eligibility-box {
      background: var(--white); border-radius: var(--radius);
      padding: 28px 32px; margin-top: 40px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 24px; box-shadow: var(--shadow);
    }

    .elig-item h4 {
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--maroon); margin-bottom: 8px;
    }

    .elig-item p { font-size: 14px; color: var(--text); }

    /* ══════════════════════════════════════════
       S10 — FINAL CTA
    ══════════════════════════════════════════ */
    .cta-section {
      background: linear-gradient(135deg, var(--navy) 0%, #0f1e40 100%);
      padding: 72px 20px; text-align: center; position: relative; overflow: hidden;
    }

    .cta-section::before {
      content: ''; position: absolute;
      top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%;
      background: radial-gradient(circle, rgba(151,40,54,0.25) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-section h2 { color: var(--white); font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }

    .cta-section p { color: rgba(255,255,255,0.72); font-size: 16px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    .btn-white {
      display: inline-block; background: var(--white); color: var(--navy);
      font-family: var(--font-body); font-size: 14px; font-weight: 700;
      padding: 14px 32px; border-radius: 6px; text-decoration: none;
      transition: all 0.2s;
    }

    .btn-white:hover { background: #e8eef7; }

    .btn-ghost {
      display: inline-block; background: transparent;
      color: rgba(255,255,255,0.85); font-family: var(--font-body);
      font-size: 14px; font-weight: 600; padding: 13px 30px;
      border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.35);
      text-decoration: none; transition: all 0.2s;
    }

    .btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

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

    @media (max-width: 860px) {
      .hero { min-height: auto; }
      .hero .container { grid-template-columns: 1fr; }
      .hero-left { padding: 48px 20px 36px; }
      .hero-form-panel { padding: 40px 20px; box-shadow: none; border-top: 1px solid rgba(255,255,255,0.1); }
      .hc-grid { grid-template-columns: 1fr; }
      .hc-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
      .org-groups { grid-template-columns: 1fr; }
      .year-grid { grid-template-columns: 1fr; }
      .career-cols { grid-template-columns: 1fr; }
      .steps-row { grid-template-columns: 1fr; gap: 24px; }
      .steps-row::before { display: none; }
      .eligibility-box { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .stats-bar .container { grid-template-columns: 1fr 1fr; gap: 20px 0; }
      .stat-divider { display: none; }
      .stat-item { padding: 12px 8px; }
      .form-row { grid-template-columns: 1fr; }
      .hero-left img{ width: 100%;margin-bottom:5vh; }
    }

    @media (max-width: 480px) {
      section { padding: 48px 16px; }
      .hc-card { padding: 36px 24px; }
      .stats-bar .container { grid-template-columns: 1fr; }
      .stat-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
      .stat-item:last-child { border-bottom: none; }
      .hero-left img{ width: 100%;margin-bottom: 2vh; }
    }