 /* ══════════════════════════════════════════
       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
    ══════════════════════════════════════════ */
    .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 {
      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; }

    /* ── 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;
    }

    .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); }

    /* ══════════════════════════════════════════
       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; }

    /* ══════════════════════════════════════════
       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;
    }

    /* ══════════════════════════════════════════
       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; }

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

    .internships-section .section-label { color: #f4a0aa; }
    .internships-section h2 { color: var(--white); }

    .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;
    }

    /* ══════════════════════════════════════════
       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); }

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

    .steps-row {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      gap: 16px; margin-top: 40px;
    }

    .step-item { text-align: center; }

    .step-circle {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--navy); color: var(--white);
      font-family: var(--font-display); font-size: 20px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
    }

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

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

    .elig-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .elig-item p { font-size: 14px; color: var(--muted); }

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

    .cta-section::before {
      content: ''; position: absolute; top: -60px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 300px; 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; }

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

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

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

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 900px) {
      .hero .container { grid-template-columns: 1fr; }
      .hero-left { padding: 48px 20px 32px; }
      .hero-form-panel { padding: 40px 20px; box-shadow: none; border-top: 1px solid rgba(255,255,255,0.1); }
      .stats-bar .container { grid-template-columns: 1fr 1px 1fr; row-gap: 20px; }
      .org-groups { grid-template-columns: 1fr; }
      .career-cols { grid-template-columns: 1fr; }
      .sector-grid { grid-template-columns: 1fr 1fr; }
      .steps-row { grid-template-columns: 1fr 1fr; }
      .eligibility-box { grid-template-columns: 1fr; }
      .prog-grid { grid-template-columns: 1fr; }
      .hero-left img{ width: 100%;margin-bottom:5vh; }
    }

    @media (max-width: 600px) {
      .hero-left { padding: 36px 20px 24px; }
      .stats-bar .container { grid-template-columns: 1fr; }
      .stat-divider { display: none; }
      .steps-row { grid-template-columns: 1fr; }
      .sector-grid { grid-template-columns: 1fr; }
      .hero-left img{ width: 100%;margin-bottom: 2vh; }
    }