*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #004181;
  --blue-hover: #1C60A6;
  --navy: #00366E;
  --light-blue: #9CC4E5;
  --light-blue-2: #256EBA;
  --orange: #F67121;
  --orange-hover: #FC8640;
  --dark-orange: #C95813;
  --light-yellow: #FFF5D4;
  --yellow: #FAA627;
  --white:#ffffff;
  --off-white: #f5f5f5;
  --black: #000000;
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
  --box-shadow: 0px 1px 4px 0px #00000040;
  --btn-shadow: 0px 2px 5px 0px #00000040;
  --dropdown-shadow: 0px 4px 4px 0px #00000040;
  --video-card-shadow: 0px 10px 10px 0px #00000040;
  --snav-height: 70px;
}

html, body {
  height: 100%;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}

/* ── GLOBAL STYLES ── */
h1.header-text{
  font-size: 37px;
  line-height: 1;
  font-weight: 500;
  color: var(--orange);
  box-shadow: var(--box-shadow);
  margin-bottom: 10px;
}

h2.header-text {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  color: var(--navy);
}

h3.header-text {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: var(--navy);
}

.body-text,
.body-text-lg,
.body-text-xl {
  font-size: 16px;
  line-height: 1.1;
  color: var(--black);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: all 0.3s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
}
.btn-primary:hover { background: var(--orange-hover); color: var(--white); }

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border: none;
}
.btn-secondary:hover { background: var(--blue-hover); color: var(--white); }

@media (min-width: 992px) {
  h1.header-text{
    font-size: 55px;
    line-height: 1.1;
  }

  h2.header-text {
    font-size: 35px;
    line-height: 1.1;
  }

  h3.header-text {
    font-size: 22px;
    line-height: 1.1;
  }

  .body-text-lg {
    font-size: 20px;
  }
  .body-text-xl {
    font-size: 22px;
  }

  .btn {
    padding: 16px 32px;
  }

  .btn-bigger{
    font-size: 20px;
  }
}

/* ── KEYFRAMES ── */
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}


/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Overlay that fades from dark-left to transparent-right */
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

/* Fallback: if no video, a dark gradient placeholder */
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1228 0%, #1a2a4a 40%, #2d4068 70%, #1a2a4a 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-video-placeholder .placeholder-art {
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(232,93,4,0.18) 0%, transparent 60%), radial-gradient(ellipse at 60% 80%, rgba(0,61,124,0.3) 0%, transparent 55%);
  position: relative;
  overflow: hidden;
}

.placeholder-art::before {
  content: '';
  position: absolute;
  top: 20%; right: 10%;
  width: 320px; 
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.15), transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

/* Headline */
.hero-headline {
  opacity: 0;
  transform: translateY(32px);
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  margin-bottom: 10px;
  max-width: 500px;
}

.hero-text-block {
  max-width: 511px;
}

/* Subheading */
.hero-sub {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

/* Timeline card */
.hero-card {
  background: var(--white);
  border-radius: 10px;
  padding: 16px 32px;
  max-width: 500px;
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.78s forwards;
}

.card-title {
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 1rem;
}

.intake {
  margin-bottom: 20px;
}

.intake:last-of-type { margin-bottom: 0; }

.intake-label {
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 0;
}

.intake-text {
  color: var(--black);
}

.card-note {
  margin-top: 20px;
  margin-bottom: 0;
}

/* CTA Buttons */
.hero-ctas {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

/* ── MOBILE ── */
@media (max-width: 991px) {
  .hero {
    min-height: 765px;
    align-items: flex-start;
  }

  .hero-video-wrap::after {
    background: linear-gradient(278.91deg, rgba(0, 0, 0, 0) 24.01%, #000 42.37%);
    rotate: -90deg;
  }

  /* Image area at top (video shows through) */
  .hero-img-space {
    width: 100%;
    height: 230px;
    flex-shrink: 0;
    position: relative;
  }

  /* Text block below image area */
  .hero-text-block { max-width: 100%; }

  .hero-headline { max-width: 100%; }

  .hero-card { 
    border-radius: 5px;
    max-width: 100%; 
    padding: 24px 60px 24px 20px;
  }

  .hero-ctas {
    gap: 16px;
  }

  .hero-ctas .btn {
    min-width: 160px;
  }
}

/* ── PROGRAMME DROPDOWN ── */
.programme-banner {
  background: var(--yellow);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;   /* JS upgrades to fixed when sticky */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

.programme-banner.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Spacer to prevent layout jump when banner goes fixed */
.programme-banner-spacer {
  display: none;
  height: 36px;
}
.programme-banner-spacer.visible { display: block; }

/* Trigger button */
.programme-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  height: 36px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: background 0.15s;
}

.programme-trigger .prog-label {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.programme-trigger .prog-name {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.programme-trigger .chevron-icon {
  font-size: 0.75rem;
  color: var(--white);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.programme-trigger[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
}

/* ── DROPDOWN MENU ── */
.programme-dropdown {
  position: absolute;
  top: 100%;
  left: 75px;
  min-width: 120px;
  background: var(--white);
  box-shadow: var(--dropdown-shadow);
  padding: 5px 0;
  margin: 0;
  list-style: none;
  z-index: 1060;

  /* Animation */
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.programme-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.programme-dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  transition: all 0.12s;
  white-space: nowrap;
}

.programme-dropdown li a:hover {
  background: var(--light-yellow);
  font-weight: 700;
}

.programme-dropdown li a.active-programme {
  font-weight: 700;
}


/* ══════════════════════════════════════════
   ── SECTION NAV ──
   ══════════════════════════════════════════ */

/* Sentinel: invisible element that sits where the nav naturally lives.
   When sentinel scrolls out of view we make the nav sticky. */
.section-nav-sentinel {
  height: 0;
  pointer-events: none;
}

.section-nav {
  background: #F7F7F7E5;
  height: var(--snav-height);
  z-index: 900;
  /* starts in normal flow; JS adds .is-sticky when sentinel leaves viewport */
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--dropdown-shadow);
  transition: position 0.25s;
}

.section-nav.is-sticky {
  backdrop-filter: blur(4px);
  position: fixed;
  top: 36px;   /* sits directly below the sticky programme-banner */
  left: 0;
  right: 0;
}

/* Spacer injected by JS to prevent layout jump when nav goes sticky */
.section-nav-spacer {
  display: none;
  height: var(--snav-height);
}

.section-nav-spacer.visible { display: block; }

.section-nav-inner {
  display: flex;
  align-items: center;
  height: var(--snav-height);
  gap: 0;
}

/* ── Desktop link list ── */
.section-nav-links {
  list-style: none;
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow: hidden; /* clip if window is too narrow */
}

.section-nav-links li {
  display: flex;
  align-items: stretch;
}

/* Pipe divider between items */
.section-nav-links li + li::before {
  content: '';
  display: block;
  width: 1px;
  height: 60%;
  background: #ccc;
  align-self: center;
  flex-shrink: 0;
}

.snav-link {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.2;
  max-width: 125px;
}

.section-nav-links li:first-child .snav-link{ padding-left: 0; }

.snav-link:hover {
  color: var(--orange);
}

.snav-link.active {
  color: var(--orange);
}

/* ── Desktop CTAs ── */
.section-nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 12px;
}

.snav-btn {
  padding: 8px 20px !important;
  font-size: 0.875rem !important;
  border-radius: 5px;
  white-space: nowrap;
}

/* ── Mobile trigger — hidden on desktop ── */
.section-nav-mobile {
  display: none;
}

/* ── MOBILE ── */
@media (max-width: 991px) {

  /* Hide desktop links & ctas */
  .section-nav-links,
  .section-nav-ctas {
    display: none;
  }

  /* Show mobile trigger */
  .section-nav-mobile {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .snav-mobile-trigger {
    width: 100%;
    border: none;
    border-radius: 5px;
    height: 38px;
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--white);
    background: var(--blue-hover);
    box-shadow: var(--btn-shadow);
    cursor: pointer;
  }

  /* Dropdown panel */
  .snav-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 950;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .snav-mobile-menu.open {
    max-height: 600px;
    border: 2px solid var(--blue-hover);
    border-top-width: 0;
    border-radius: 0 0 5px 5px;
  }

  .snav-mobile-menu ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
  }

  .snav-mobile-link {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    text-align: center;
    transition: background 0.12s, color 0.12s;
  }

  .snav-mobile-link:hover,
  .snav-mobile-link.active {
    color: var(--blue-hover);
    font-weight: 700;
  }

  /* CTA buttons inside mobile menu */
  .snav-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 24px 20px;
  }

  .snav-btn-mobile {
    width: 100%;
    padding: 10px 20px !important;
    font-size: 14px !important;
    border-radius: 5px;
    justify-content: center;
  }
}

@media (min-width: 1366px) {
  .snav-link {
    font-size: 1rem;
  }
  .snav-btn {
    font-size: 1rem !important;
  }
}

/* ── ABOUT THE PROGRAMME SECTION ── */
.about-section {
  background: var(--white);
  padding: 80px 0 90px;
  overflow: hidden;
}
 
/* Two-column layout */
.about-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
 
/* ── LEFT column ── */
.about-left {
  flex: 0 0 42%;
  max-width: 42%;
}
 
.about-title {
  color: var(--navy);
}
 
/* Body content: hidden until hover triggers animation */
.about-body {
  max-width: 490px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);

}
 
.about-section.is-revealed .about-body {
  opacity: 1;
  transform: translateY(0);
}
 
.about-body p {
  margin-bottom: 0;
}
 
.about-list {
  padding: 0;
  margin: 0 0 16px 24px;
}
 
.about-list li {
  position: relative;
  padding-left: 10px;
  color: var(--navy);
  margin-bottom: 0px;
}
 
.about-link {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

.about-link:hover { color: var(--orange-hover); text-decoration: underline; }
 
/* ── RIGHT column ── */
.about-right {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;

}
 
.about-section.is-revealed .about-right {
  opacity: 1;
  transform: translateY(0);
}
 
/* Decorative offset shadow block */
.about-card-wrap {
  position: relative;
  max-width: 611px;
}

/* Bottom-right yellow shadow */
.about-card-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: #F6C946CC;
  transform: translate(20px, 20px);
  z-index: 0;
}
 
/* Top-left orange accent box */
.about-card-wrap::before {
  content: '';
  position: absolute;
  width: 374px;
  height: 405px;
  border-radius: 10px;
  background: #FFDEA14D;
  top: -20px;
  left: -20px;
  z-index: 0;
}
 
.about-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 2px solid #F9C148;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

/* ── Card rows ── */
.acard-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 40px 24px 40px;
  border-bottom: 2px solid #F9C148;
}
 
.acard-row--inline {
  padding-bottom: 0;
  border-bottom-width: 0;
}
 
.acard-row.last-row {
  padding-top: 10px;
}
 
.acard-label {
  flex: 0 0 120px;
  font-weight: 700;
  color: var(--blue);
}
 
.acard-content {
  flex: 1;
  max-width: 340px
}
 
.acard-intake-title {
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0;
}
 
.acard-intake-text {
  color: var(--black);
  margin-bottom: 0;
}
 
.acard-note {
  font-size: 14px;
  color: var(--black);
  margin: 6px 0;
}
 
.acard-link {
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}
.acard-link:hover { color: var(--orange-hover); text-decoration: underline; }
 
.acard-ctas {
  display: flex;
  gap: 16px;
  padding: 20px 40px 24px 40px;
  flex-wrap: wrap;
}
 
.acard-ctas .btn {
  padding: 12px 28px;
}
 
/* ── MOBILE ── */
@media (max-width: 991px) {
  .about-section { padding: 40px 0 60px; }
 
  .about-inner {
    flex-direction: column;
    gap: 36px;
  }

  .about-body { max-width: 100%; }
 
  .about-left,
  .about-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .about-right{ justify-content: center; }
  .about-card-wrap{ max-width: 97%; }

  .about-card-wrap::before {
    height: 450px;
    top: -12px;
    left: -12px;
  }

  .about-card-wrap::after { transform: translate(12px, 12px); }
  
  .acard-row { padding: 20px 12px 24px 12px; }
  .acard-row--inline { padding-bottom: 0; }
  .acard-label { flex: 0 0 100px; }
  .acard-content { max-width: 100%; }
  .acard-ctas { padding: 20px 12px 24px 12px; }
}


/* ── WHAT TO EXPECT SECTION ── */
.wte-section {
  background: var(--off-white);
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.wte-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 140px;
  background-image: url('../img/what_to_expect-bg-nsu_iss.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  pointer-events: none;
  z-index: 0;
}
 
/* Title: always visible, centered */
.wte-title {
  text-align: center;
}
 
/* ─── ICON BOX wrapper (with pseudo-element accents) ─── */
.wte-icon-wrap {
  margin: 60px 0 40px 0;
}
 
.wte-icon-box {
  position: relative;
  border: 2px solid var(--orange);
  border-radius: 20px;
  padding: 24px 0 12px 0;
  overflow: visible;
  background: var(--white);
  z-index: 1;
}
 
/* Top-left light-yellow accent block — bleeds behind top-left corner */
.wte-icon-wrap::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 184px;
  border-radius: 10px;
  background: #FFDEA14D;
  transform: translate(-16px, -16px);
  top: 0;
  left: 0;
  z-index: 0;
}
 
/* Bottom-right yellow shadow offset */
.wte-icon-wrap::after {
  content: '';
  position: absolute;
  background: #FFDEA1;
  transform: translate(20px, 20px);
  width: 75%;
  height: 210px;
  border-radius: 10px;
  bottom: 0;
  right: 0;
  z-index: 0;
}
 
/* 6-column grid for icons */
.wte-icons-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 8px;
  align-items: start;
  justify-items: center;
}
 
.wte-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
 
.wte-icon-circle {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
 
.wte-icon-circle img {
  width: 94px;
  height: 94px;
  object-fit: contain;
}
 
.wte-icon-label {
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}
 
/* ─── PARAGRAPHS ─── */
.wte-para {
  margin-bottom: 40px;
}
 
/* ─── OUTCOME CARDS ─── */
.wte-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
 
.wte-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
 
.wte-card-img-wrap {
  position: absolute;
  inset: 0;
}
 
.wte-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
/* Icon badge top-left */
.wte-card-icon-badge {
  position: absolute;
  top: 30px;
  left: 48px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
 
.wte-card-icon-badge img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}
 
.wte-card-body {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 95%;
}
 
.header-text.wte-card-title {
  color: var(--white);
  margin-bottom: 10px;
}
 
.wte-card-text {
  color: var(--white);
  margin: 0;
}
 
/* ── WHAT TO EXPECT: ANIMATIONS ── */
/* Slide up — for icon box and paragraph 1 */
.wte-anim-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
 
.wte-section.is-revealed .wte-anim-up:nth-of-type(1) {
  transition-delay: 0s;
}
.wte-section.is-revealed .wte-anim-up {
  opacity: 1;
  transform: translateY(0);
}
 
/* Paragraph 1 staggered slightly after the icon box */
.wte-section.is-revealed .wte-para.wte-anim-up {
  transition-delay: 0.22s;
}
 
/* Slide from left — left outcome card */
.wte-anim-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}
 
.wte-section.is-revealed .wte-anim-left {
  opacity: 1;
  transform: translateX(0);
}
 
/* Slide from right — right outcome card */
.wte-anim-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.28s,
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
}
 
.wte-section.is-revealed .wte-anim-right {
  opacity: 1;
  transform: translateX(0);
}
 
/* Fade only — last paragraph */
.wte-anim-fade {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.wte-section.is-revealed .wte-anim-fade {
  opacity: 1;
}
 
/* ─── MOBILE ─── */
@media (max-width: 991px) {
  .wte-section { padding: 52px 0 24px; }
  .wte-section::before {
    width: 110px;
    height: 80px;
    right: -20px;
  }
  .wte-section .container { max-width: 97%; margin: 0 auto; }
 
  .wte-icon-box { padding: 24px 0; }
  .wte-icon-wrap { margin: 40px 0; }
  .wte-icon-wrap::before {
    width: 179px;
    height: 184px;
    transform: translate(-12px, -12px);
  }
  .wte-icon-wrap::after {
    width: 349px;
    height: 210px;
    transform: translate(12px, 12px);
  }
 
  /* 3-column icon grid on mobile */
  .wte-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 8px;
  }
  .wte-icon-circle {
    width: 78px;
    height: 78px;
  }
  .wte-icon-circle img {
    width: 78px;
    height: 78px;
  }
  .wte-icon-label { font-size: 14px; line-height: 1.1; }
 
  /* Stack outcome cards vertically */
  .wte-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
 
  .wte-card {
    min-height: 275px;
  }

  .wte-card-icon-badge {
    width: 55px;
    height: 55px;
    top: 32px;
    left: 20px;
  }
  .wte-card-icon-badge img {
    width: 55px;
    height: 55px;
  }
  .wte-card-body {
    padding: 28px 20px;
  }
 
  /* On mobile: left card slides up instead of from left */
  .wte-anim-left {
    transform: translateY(50px);
  }
  .wte-section.is-revealed .wte-anim-left {
    transform: translateY(0);
  }
 
  /* Right card also slides up */
  .wte-anim-right {
    transform: translateY(50px);
  }
  .wte-section.is-revealed .wte-anim-right {
    transform: translateY(0);
  }
}

@media (min-width: 1400px) {
  .wte-section .container {
    max-width: 1167px;
    margin: 0 auto;
  }
}


/* ── WHAT SETS THIS PROGRAMME APART ── */
.wspa-section {
  position: relative;
  background: var(--white);
  padding: 60px 0 80px;
  overflow: hidden;
  text-align: center;
}
 
.wspa-ornament-top,
.wspa-ornament-bottom {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
 
.wspa-ornament-top {
  top: 0;
  left: 3%;
}
 
.wspa-ornament-top img,
.wspa-ornament-bottom img {
  display: block;
  height: auto;
}

.wspa-ornament-top img{
  max-width: 320px;
}

.wspa-ornament-bottom img {
  max-width: 156px;
}
 
.wspa-ornament-bottom {
  bottom: 0;
  right: 3%;
}
 
.wspa-ornament-bottom img {
  max-width: 140px;
}
 
.wspa-section .container {
  position: relative;
  z-index: 1;
}
 
.wspa-title {
  text-align: center;
  margin-bottom: 60px;
}
 
/* Video grid */
.wspa-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1167px;
  margin: 0 auto 40px;
}
 
/* Each card */
.wspa-video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
 
/* Thumbnail wrapper */
.wspa-thumb-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wspa-video-card:hover .wspa-thumb-wrap {
  margin-top: 5px;
  box-shadow: var(--video-card-shadow);
}
 
.wspa-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.3s ease;
}
 
/* Play button */
.wspa-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 60px;
  height: 60px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  display: inline-flex;
  cursor: pointer;
}

.wspa-play-btn svg {
  width: 100%;
  height: 100%;
}
.wspa-play-btn .play-bg {
  fill: var(--orange);
  transition: fill 0.3s ease;
}
.wspa-video-card:hover .wspa-play-btn .play-bg {
  fill: var(--dark-orange);
}

.wspa-play-btn .play-ring {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.wspa-play-btn .play-icon {
  fill: #fff;
}
 
.wspa-video-card:hover .wspa-play-btn {
  transform: translate(-50%, -50%) scale(1.5);
}
 
/* Video label */
.wspa-video-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin: 0;
  transition: color 0.2s;
}
 
.wspa-video-card:hover .wspa-video-label {
  color: var(--orange);
}
 
/* CTA */
.wspa-cta {
  display: flex;
  justify-content: center;
}
 
.wspa-cta .btn {
  min-width: 200px;
}
 
/* ── ANIMATIONS ── */
.wspa-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
 
.wspa-anim--delay {
  transition-delay: 0.22s;
}
 
.wspa-section.is-revealed .wspa-anim {
  opacity: 1;
  transform: translateY(0);
}
 
/* ── MOBILE ── */
@media (max-width: 991px) {
  .wspa-section { padding: 60px 0 60px; }
  
  .wspa-ornament-top { left: -3%; }
  .wspa-ornament-top img { width: 172px; }
  .wspa-ornament-bottom { display: none; }
 
  .wspa-videos {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 100%;
  }

  .wspa-play-btn { transform: translate(-50%, -50%) scale(1); }
  .wspa-title { margin-bottom: 42px; }
}

/* ── TESTIMONIALS SECTION ── */
.testi-section {
  background: var(--navy);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
 
.testi-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}
 
/* ── Title ── */
.header-text.testi-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}
 
/* ── Slider wrapper: arrows outside the track ── */
.testi-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
 
/* ── Arrow buttons ── */
.testi-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}
 
.testi-arrow:hover {
  background: var(--orange-hover);
  transform: scale(1.1);
}
 
.testi-arrow svg {
  width: 24px;
  height: 24px;
}
 
.testi-arrow--prev { margin-right: 80px; }
.testi-arrow--next { margin-left: 80px; }
 
/* ── Track outer: clip overflow ── */
.testi-track-outer {
  flex: 1;
  overflow: hidden;
}
 
/* ── Track: flex row of slides ── */
.testi-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
 
/* ── Single slide ── */
.testi-slide {
  flex: 0 0 100%;
  width: 100%;
}
 
/* Slide inner: hidden by default, revealed by JS on scroll */
.testi-slide-inner {
  display: flex;
  align-items: flex-start;
  gap: 88px;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
 
.testi-slide-inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
 
/* ── Photo ── */
.testi-photo-wrap {
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
}
 
.testi-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
 
/* ── Content (right side on desktop) ── */
.testi-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
/* Mobile meta: hidden on desktop */
.testi-meta-mobile { display: none; }
.testi-mobile-arrows .testi-arrow--prev,
.testi-mobile-arrows .testi-arrow--next {
  display: none;
}
 
/* ── Quote block ── */
.testi-quote-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.testi-quote-mark {
  font-size: 120px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: -60px;
  margin-top: -12px;
}
 
.testi-quote {
  font-size: 18px;
  line-height: 25px;
  color: var(--white);
}
 
/* ── Desktop meta (name + role below quote) ── */
.testi-meta-desktop { margin-top: 8px; }
 
.testi-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
 
.testi-role {
  font-size: 14px;
  color: var(--white);
  line-height: 21px;
}
 
/* ── MOBILE ── */
@media (max-width: 991px) {
  .testi-section { padding: 52px 0 52px; }
 
  /* Hide side arrows on mobile */
  .testi-arrow--prev,
  .testi-arrow--next {
    display: none;
  }

  .testi-mobile-arrows .testi-arrow--prev,
  .testi-mobile-arrows .testi-arrow--next {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }

  .testi-track {
    max-width: 100%;
  }
 
  .testi-slide-inner {
    flex-direction: column;
    gap: 24px;
  }
 
  /* On mobile: photo + name side-by-side in a row */
  .testi-photo-wrap {
    display: flex;
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .testi-photo {
    width: 123px;
    height: 158px;
    border-radius: 8px;
  }

  .testi-meta-mobile {
    display: flex;
    flex-direction: column;
  }

  .testi-meta-desktop { display: none; }
  .testi-quote-mark { 
    font-size: 16px; 
    margin-bottom: 0;
    margin-top: 0;
    color:var(--white);
    display: inline;
  }
  
  .testi-quote { font-size: 16px; line-height: 23px; }
  .testi-name { font-size: 16px; line-height: 23px; }
  .testi-role { font-size: 12px; line-height: 18px; }
 
  /* Mobile arrows below slides */
  .testi-mobile-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 40px;
  }
}

/* ── STUDENT ACADEMIC BACKGROUND SECTION ── */
.sab-section {
  background: var(--white);
  padding: 80px 0 120px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.sab-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 108px;
  background-image: url('../img/student_academic_background-lower_bg-nus_iss.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  pointer-events: none;
  z-index: 0;
}
 
.sab-title {
  color: var(--navy);
  margin-bottom: 20px;
}
 
.sab-subtitle {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 496px;
  margin: 0 auto 56px;
}
 
/* Desktop: 5 in a row */
.sab-icons-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
 
.sab-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
 
.sab-icon-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
 
.sab-icon-circle {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
 
.sab-icon-circle img {
  width: 94px;
  height: 94px;
  object-fit: contain;
}
 
.sab-icon-label {
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
  margin: 0;
}
 
/* ── MOBILE ── */
@media (max-width: 991px) {
  .sab-section {
    padding: 50px 0 72px;
  }

  .sab-section::after {
    width: 199px;
    height: 113px;
    left: -28px;
    bottom: -20px;
  }
 
  .sab-subtitle {
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 40px;
  }
 
  /* Mobile: 3 top + 2 bottom centered */
  .sab-icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 16px;
    max-width: 340px;
    margin: 0 auto;
  }

  .sab-icon-item {
    flex: 0 0 calc((100% - 2 * 16px) / 3);
    text-align: center;
  }
 
  .sab-icon-circle {
    width: 80px;
    height: 80px;
  }
 
  .sab-icon-circle img {
    width: 80px;
    height: 80px;
  }
 
  .sab-icon-label {
    font-size: 14px;
  }
}

/* ─── PROJECTS & INTERNSHIPS ──── */
.pi-section{
  background: var(--off-white);
  padding: 80px 0;
  overflow: hidden;
}

.pi-heading{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.pi-title{
  margin-bottom: 24px;
}

.pi-subtitle{
  margin: 0;
}

/* Tabs wrapper */
.pi-tabs-wrap{
  position: relative;
  margin-bottom: 90px;
}

/* top left light blue */
.pi-tabs-wrap::before{
  content:'';
  position:absolute;
  width: 54%;
  height: 250px;
  background: #7BABC033;
  border-radius: 10px;
  top: -16px;
  left: -16px;
  z-index: 0;
}

/* bottom right shadow */
.pi-tabs-wrap::after{
  content:'';
  position:absolute;
  width: 92%;
  height: 257px;
  background: #1C60A65C;
  border-radius: 10px;
  right: -20px;
  bottom: -20px;
  z-index: 0;
}

.pi-tabs{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pi-tabs::-webkit-scrollbar{
  display:none;
}

.pi-tab{
  border: 2px solid var(--blue);
  border-right: 0;
  background: var(--light-blue);
  color: var(--blue);
  max-width: 100px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: all .3s ease;
  flex-shrink: 0;
}

.pi-tab:last-child{
  border-right: 2px solid var(--blue);
  border-top-right-radius: 10px;
}

.pi-tab:first-child{
  border-top-left-radius: 10px;
}

.pi-tab.active,
.pi-tab:hover{
  background: var(--blue);
  color: var(--white);
}

.pi-content-wrap{
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 2px solid var(--blue);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  padding: 42px 36px;
  min-height: 260px;
}

.pi-content{
  display: none;
  opacity: 0;
  animation: piFade .4s ease forwards;
}

.pi-content.active{
  display: block;
}

.pi-content p:last-child{
  margin-bottom: 0;
}

.pi-learning{
  margin-top: 28px;
}

.pi-learning h4{
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pi-learning ul{
  margin: 0;
  padding-left: 24px;
}

.header-text.pi-mobile-title{
  display: none;
}

/* Internship */
.pi-internship{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 70px;
  align-items: start;
}

.pi-internship-title{
  margin-bottom: 36px;
}

.pi-internship-btn{
  min-width: 308px;
  min-height: 74px;
}

.pi-internship-right p{
  margin-bottom: 24px;
}

.pi-internship-right p:last-child{
  margin-bottom: 0;
}

/* Animation */
@keyframes piFade{
  from{
    opacity:0;
    transform: translateY(18px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 991px){

  .pi-section{
    padding: 50px 0 60px;
  }

  .pi-section .container {
    max-width: 97%;
    margin: 0 auto;
  }

  .pi-heading{
    text-align: left;
    margin-bottom: 32px;
  }

  .pi-title{
    margin-bottom: 32px;
  }

  .pi-tabs-wrap{
    margin-bottom: 60px;
  }

  .pi-tabs-wrap::before{
    width: 88%;
    height: 180px;
    top: 78px;
    left: -8px;
  }

  .pi-tabs-wrap::after{
    width: 90%;
    height: 335px;
    right: -10px;
    bottom: -12px;
  }

  .pi-tabs{
    gap: 4px;
    padding-bottom: 32px;
  }

  .pi-tab{
    min-width: 228px;
    background: transparent;
    border: 0;
    border-radius: 0 !important;
    color: #00000040;
    padding: 12px 8px 12px 8px;
    text-align: center;
    font-size: 14px;
  }

  .pi-tab.active{
    background: transparent;
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
  }

  .pi-content-wrap{
    border-top: 2px solid var(--blue);
    border-radius: 16px;
    padding: 28px 22px;
  }

  .header-text.pi-mobile-title{
    display: block;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .pi-internship{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pi-internship-title{
    margin-bottom: 0;
  }

  .pi-internship-btn{
    width: 100%;
    min-width: 100%;
  }
}

/* DESKTOP ONLY */
@media (min-width: 992px){
  .pi-tab:first-child{
    border-top-left-radius: 10px;
    max-width: 260px;
  }

  .pi-tab:nth-child(2){
    max-width: 240px;
  }

  .pi-tab:nth-child(4),
  .pi-tab:nth-child(5){
    max-width: 158px;
  }

  .pi-tab:nth-child(6){
    max-width: 180px;
  }
}


/* ── COURSES SECTION ─── */
.courses-section{
  padding: 80px 0 80px;
  background: #D9D9D9;
  overflow: hidden;
}

.courses-heading{
  max-width: 860px;
  margin: 0 auto 70px;
  text-align: center;
}

.courses-title{
  margin-bottom: 24px;
}

.courses-subtitle{
  max-width: 760px;
  margin: 0 auto;
}

/* GRID */
.courses-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.course-card{
  position: relative;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
  transform: translateX(0);
  opacity: 0;
  transition:
    transform .5s ease,
    opacity .6s ease,
    background .4s ease;
}

.course-card-bg{
  position: absolute;
  inset: 0;
}

.course-card-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.course-card-overlay{
  position: absolute;
  inset: 0;
  transition: all .4s ease;
}

.course-card-content{
  position: relative;
  z-index: 2;
  padding: 36px 36px;
  width: 100%;
}

.course-card h3{
  color: var(--white);
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  transition: margin .4s ease;
}

.course-card-hidden{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height .45s ease,
    opacity .4s ease,
    margin .4s ease;
}

.course-card-hidden p{
  margin: 24px 0;
}

.course-link{
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

/* Hover */
.course-card:hover,
.course-card.course-card--active{
  background: var(--orange);
}

.course-card:hover .course-card-overlay,
.course-card.course-card--active .course-card-overlay{
  background: var(--orange);
}

.course-card:hover .course-card-hidden,
.course-card.course-card--active .course-card-hidden{
  max-height: 400px;
  opacity: 1;
}

/* Animation */
.slide-right{
  transform: translateX(120px);
}

.slide-left{
  transform: translateX(-120px);
}

.course-card.show{
  opacity: 1;
  transform: translateX(0);
}

.fade-up{
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.fade-up.show{
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
.mobile-courses{
  display: none;
}

@media (max-width: 991px){
  .desktop-courses{
    display: none;
  }

  .mobile-courses{
    display: block;
    position: relative;
  }

  .courses-section{
    padding: 50px 0;
  }

  .courses-heading{
    margin-bottom: 50px;
  }

  .courses-slider{
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    padding: 0 16px;
  }

  .courses-slider::-webkit-scrollbar{
    display: none;
  }

  .course-slide{
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .course-mobile-card{
    background: var(--orange);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);

    opacity: 0;
    transform: translateY(60px);
    transition:
      opacity .7s ease,
      transform .7s ease;
  }

  .course-mobile-card.show{
    opacity: 1;
    transform: translateY(0);
  }

  .course-mobile-image{
    height: 200px;
  }

  .course-mobile-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .course-mobile-content{
    padding: 28px;
    color: var(--white);
  }

  .course-mobile-content h3{
    color: var(--white);
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .course-mobile-content p{
    line-height: 1.4;
    margin-bottom: 24px;
  }

  /* arrows */
  .courses-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
  }

  .courses-prev{
    left: -8px;
  }

  .courses-next{
    right: -8px;
  }

}


/* ─────────────────────────────
   PROJECT SHOWCASE
───────────────────────────── */
.project-showcase{
  position: relative;
  padding: 70px 0 70px;
  overflow: hidden;
}

.project-showcase-bg{
  position: absolute;
  inset: 0;
}

.project-showcase-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.project-showcase .container{
  position: relative;
  z-index: 2;
}

.ps-heading{
  text-align: center;
  margin-bottom: 60px;

  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.ps-heading.show{
  opacity: 1;
  transform: translateY(0);
}

.header-text.ps-title{
  color: var(--orange);
  margin-bottom: 20px;
}

.ps-subtitle{
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
}

/* SLIDER */
.ps-slider-wrap{
  overflow: hidden;
}

.ps-slider{
  display: flex;
  transition: transform .7s ease;
}

/* GROUP */
.ps-slide-group{
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  opacity: 0;
  transform: translateX(140px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.ps-slide-group.show{
  opacity: 1;
  transform: translateX(0);
}

/* CARD */
.ps-card{
  background: var(--white);
  border-radius: 20px;
  min-height: 192px;
  padding: 42px 40px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  text-decoration: none;
  transition: transform .35s ease;;
}

.ps-card:hover{
  transform: scale(1.03);
}

.ps-card h3{
  color: var(--blue);
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.ps-link{
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
}

/* PAGINATION */
.ps-pagination{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 46px;
}

.ps-dot{
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: background .3s ease;
  box-shadow: var(--dropdown-shadow);
  border: none;
}

.ps-dot.active{
  background: var(--blue);
}

/* MOBILE */
@media (max-width: 991px){

  .project-showcase{
    padding: 50px 0 60px;
  }

  .ps-heading{
    margin-bottom: 40px;
  }

  .ps-subtitle br{
    display: none;
  }

  .ps-slide-group{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ps-card{
    min-height: 140px;
    padding: 30px 32px;
    border-radius: 10px;
  }

  .ps-card h3{
    font-size: 18px;
  }

  .ps-pagination{
    margin-top: 40px;
  }

  .ps-dot{
    width: 8px;
    height: 8px;
  }

}

/* ══════════════════════════════════════
   TIMETABLE & EXAMS SECTION
══════════════════════════════════════ */
.timetable-section {
  background: var(--white);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.timetable-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

/* ── Left column ── */
.timetable-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timetable-title {
  color: var(--blue);
  font-size: 35px;
  font-weight: 500;
}

.timetable-desc {
  color: var(--black);
  font-size: 16px;
  line-height: 23px;
}

/* Decorative light-blue shape placeholder */
.timetable-deco {
    margin-top: 16px;
    width: 100%;
    max-width: 350px;
    height: 180px;
    position: absolute;
    left: 0;
    top: 15%;
}

.timetable-deco img {
	width: 100%;
}

/* ── Right column — tt-accordion ── */
.timetable-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Closed state: orange header */
.tt-accordion {
  border-radius: 8px;
  overflow: hidden;
}

.tt-accordion__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--orange);          /* closed = orange */
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: left;
  gap: 12px;
  transition: background 0.25s;
  border-radius: 8px;
}

/* Open state: blue header */
.tt-accordion.is-open .tt-accordion__toggle {
  background: var(--blue);
  border-radius: 8px 8px 0 0;
}

.tt-accordion__toggle:hover { filter: brightness(1.1); }

.tt-accordion__arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.tt-accordion.is-open .tt-accordion__arrow {
  transform: rotate(180deg);
}

.tt-accordion__body {
	font-size: 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.tt-accordion.is-open .tt-accordion__body {
  max-height: 1400px;
}

/* ── Table inside accordion ── */
.tt-table-wrap {
  border: 1px solid rgba(0,65,129,0.15);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  padding: 30px;
}

.tt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}

/* Column header row */
.tt-table thead th {
  background: #FFF3D6;
  color: var(--black);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(250,166,39,0.3);
}

/* Term break row */
.tt-table .tt-break td {
  background: #FFF3D6;
  color: var(--black);
  font-weight: 600;
  text-align: center;
  padding: 10px 14px;
  border-top: 1px solid rgba(250,166,39,0.25);
  border-bottom: 1px solid rgba(250,166,39,0.25);
}

.tt-table tbody td {
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--black);
}

.tt-table tbody tr:last-child td {
  border-bottom: none;
}

.tt-table td strong {
  font-weight: 700;
}

.tt-table ul {
  margin: 6px 0 0 16px;
  padding: 0;
}

.tt-table ul li {
  margin-bottom: 2px;
}

@media (max-width: 991px) {
  .timetable-inner {
	grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   FEES SECTION
══════════════════════════════════════ */
.fees-section {
  background: var(--off-white);
  padding: 72px 24px 56px;
}

.fees-inner {
  margin: 0 auto;
}

.fees-title {
  color: var(--blue);
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.fees-subtitle {
  color: var(--black);
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  max-width: 607px;
  margin: 0 auto 40px;
}

/* ── 3 fee cards ── */
.fees-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.fee-card {
  background: var(--white);
  border-radius: 12px;
  padding: 50px 24px;
  box-shadow: 0px 1px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* clip for the portal slide-in */
  overflow: hidden;
}

/* Portal slide: amount drops in from top-right */
@keyframes portalDrop {
  0%   { opacity: 0; transform: translate(40px, -48px) rotate(-6deg) scale(0.8); }
  60%  { opacity: 1; transform: translate(-4px, 4px) rotate(0.5deg) scale(1.02); }
  80%  { transform: translate(2px, -2px) scale(0.99); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0) scale(1); }
}

.fee-card__amount {
  color: var(--orange);
  font-size: 50px;
  font-weight: 700;
  opacity: 0;
  transform: translate(40px, -48px) rotate(-6deg) scale(0.8);
  margin-bottom: 50px;
}

.fee-card__amount.portal-in {
  animation: portalDrop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fee-card__label {
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
}

.fee-card__sub {
  color: var(--black);
  font-size: 16px;
  line-height: 23px;
}

/* ── Body notes ── */
.fees-note {
  color: var(--black);
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 16px;
}

.fees-note a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fees-notes-list {
  padding-left: 18px;
  margin-bottom: 28px;
}

.fees-notes-list li {
  font-size: 16px;
  line-height: 23px;
  color: var(--black);
  margin-bottom: 6px;
}

.fees-notes-list li a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fees-notes-list strong {
  font-weight: 700;
}

/* ── Fees accordion (orange header) ── */
.fees-accordion {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.fees-accordion__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
  border-radius: 8px;
}

.fees-accordion.is-open .fees-accordion__toggle {
  border-radius: 8px 8px 0 0;
}

.fees-accordion__toggle:hover { background: var(--orange-hover); }

.fees-accordion__arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.fees-accordion.is-open .fees-accordion__arrow {
  transform: rotate(180deg);
}

.fees-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  background: var(--white);
}

.fees-accordion.is-open .fees-accordion__body {
  max-height: 1000px;
}

.fees-accordion__body-inner {
  padding: 20px;
  border: 1px solid rgba(246,113,33,0.2);
  border-top: none;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  color: var(--black);
}

@media (max-width: 767px) {
  .fees-cards {
	grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   ADMISSION & APPLICATION SECTION
══════════════════════════════════════ */
.admission-section {
  background: var(--white);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

/* Yellow blob decorations (top-left area) */
.admission-section::before {
  content: '';
  position: absolute;
  top: 40px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(250,166,39,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.admission-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
}

/* ── Left column ── */
.admission-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admission-title {
  color: var(--blue);
  font-size: 35px;
  font-weight: 500;
}

.admission-desc {
  color: var(--black);
  font-size: 16px;
  line-height: 23px;
}

.admission-laptop {
	width: 100%;
	max-width: 648px;
	position: absolute;
	left: 0;
	top: 10%;
}

.admission-laptop img {
	width: 100%;
}

/* ── Right column ── */
.admission-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Accordion toggle header */
.accordion {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid rgba(0,65,129,0.12);
}

.accordion + .accordion {
  margin-top: 8px;
}

.accordion__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--light-blue-2);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}

.accordion__toggle:hover { background: var(--blue-hover); }

.accordion__arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion.is-open .accordion__arrow {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  background: var(--white);
}

.accordion.is-open .accordion__body {
  max-height: 1000px;
}

.accordion__body-inner {
  padding: 0 20px 20px;
  border: 1px solid rgba(0,65,129,0.12);
  border-top: none;
  border-radius: 0 0 8px 8px;
  font-size: 14px !important;
}

/* Intro paragraph above steps */
.admission-intro-text {
  color: var(--black);
  margin: 16px 0 20px;
}

/* Step cards */
.step-card {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.step-card__header {
  background: var(--yellow);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px 8px 0 0;
}

.step-card__body {
  border: 1px solid rgba(250,166,39,0.3);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 14px 16px;
  color: var(--black);
}

.step-card__body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.step-card__body a:hover { color: var(--orange-hover); }

/* Important notes */
.admission-important {
  margin-top: 20px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--black);
}

.admission-important strong {
  display: block;
  margin-bottom: 8px;
}

.admission-important ol {
  padding-left: 18px;
}

.admission-important ol li {
  margin-bottom: 6px;
}

/* CTA button inside accordion */
.admission-apply-btn {
  margin-top: 24px;
}

/* Collapsed accordion rows (blue items at bottom) */
.accordion-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  border-radius: 6px;
  margin-top: 8px;
  transition: background 0.2s;
}

.accordion-simple:hover { background: var(--blue); }

.accordion-simple__arrow {
  font-size: 16px;
  color: var(--orange);
}

@media (max-width: 991px) {
  .admission-inner {
	grid-template-columns: 1fr;
  }
  .admission-laptop {
	max-width: 100%;
  }
}
/* ══════════════════════════════════════
   SHARED ANIMATION UTILITIES
══════════════════════════════════════ */
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-ready {
  opacity: 0;
  transform: translateY(32px);
}
.anim-in {
  animation: slideUpFade 0.65s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* ══════════════════════════════════════
   CAREER PATHWAYS SECTION
══════════════════════════════════════ */
.career-section {
  position: relative;
  background: var(--off-white);
  padding: 64px 24px 0;
  overflow: hidden;
}

/* Top-right decorative parallelogram image */
.career-section__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 130px;
  object-fit: contain;
  object-position: top right;
  pointer-events: none;
}

.career-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Title */
.career-title {
  color: var(--blue);
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

/* Body copy */
.career-body {
  color: var(--black);
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* Sub-title */
.career-prospects-title {
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
}

/* Blurb grid */
.career-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 24px;
  padding-bottom: 56px;
}

.career-blurb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 131px;
  text-align: center;
}

.career-blurb__img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--orange);
  /* placeholder colour so empty img still shows size */
  display: block;
}

.career-blurb__label {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}


/* ══════════════════════════════════════
   ALUMNI SLIDER SECTION
══════════════════════════════════════ */
.alumni-section {
  background: var(--off-white);
  padding: 0 0 56px;
  overflow: hidden;
}

.alumni-label {
  text-align: center;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-top: 8px;
}

/* Infinite marquee track */
.alumni-track-wrapper {
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.alumni-track-wrapper::before,
.alumni-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.alumni-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}
.alumni-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.alumni-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.alumni-track:hover { animation-play-state: paused; }

.alumni-logo {
  width: 286px;
  height: 126px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.alumni-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Placeholder label when no img src */
.alumni-logo__placeholder {
  font-size: 13px;
  color: #aaa;
  font-weight: 500;
  text-align: center;
  padding: 8px;
}
	
/* ── Section Footer Form── */
.enquiry-section {
  background: var(--navy);
  padding: 56px 24px 64px;
}

.enquiry-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Intro ── */
.enquiry-intro {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-align: center;
  margin-bottom: 40px;
}

/* ── 2-col grid ── */
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 28px;
}

/* ── Field ── */
.enquiry-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.enquiry-field label {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
}

.enquiry-field input {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--orange);
  color: var(--white);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 6px 0;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.enquiry-field input:focus {
  border-bottom-color: var(--orange-hover);
}

.enquiry-field input::placeholder {
  color: var(--white);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.enquiry-field input:focus::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Autofill override */
.enquiry-field input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--navy) inset;
  -webkit-text-fill-color: var(--white);
}

/* ── Checkboxes ── */
.enquiry-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.enquiry-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.enquiry-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.enquiry-check input[type="checkbox"]:checked {
  background: var(--white);
  border-color: var(--white);
}

.enquiry-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--navy);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.enquiry-check span {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

/* ── Legal text ── */
.enquiry-consent {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 8px;
}

.enquiry-pdpa {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 28px;
}

.enquiry-pdpa a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.enquiry-pdpa a:hover { color: var(--orange-hover); }

/* ── Mobile ── */
@media (max-width: 991px) {
  .enquiry-section { padding: 40px 20px 52px; }
  .enquiry-grid {
	grid-template-columns: 1fr;
	gap: 24px;
  }
}

/* ── Form feedback states ── */
.enquiry-field input.input-error {
  border-bottom-color: #ff6b6b;
}

.field-error-msg {
  color: #ff6b6b;
  font-size: 11.5px;
  margin-top: 4px;
  display: none;
}

.field-error-msg.visible {
  display: block;
}

.form-alert {
  display: none;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-alert.visible { display: block; }

.form-alert--success {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}

.form-alert--error {
  background: rgba(255,100,100,0.15);
  border: 1px solid rgba(255,100,100,0.4);
  color: #ffb3b3;
}

/* Submit button loading state */
.btn-primary.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.btn-primary.is-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state — hide form, show message */
.enquiry-form-wrap.submitted .enquiry-form-fields {
  display: none;
}

.enquiry-success-state {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.enquiry-form-wrap.submitted .enquiry-success-state {
  display: block;
}

.enquiry-success-state__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.enquiry-success-state__title {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.enquiry-success-state__msg {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  width: 100%;
  min-height: 354px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('https://second-order.rafasoft.web.id/img/footer-cta_bg-nus_iss.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-banner__bg {
  display: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 48px 24px;
  text-align: center;
}

.cta-banner__title {
  color: var(--white);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 35px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .cta-banner { min-height: 140px; }
  .cta-banner__content { padding: 36px 20px; gap: 16px; }
}
