/* ============================================================
   GLOBAL RESET & BASE STYLES
   ============================================================ */

   @font-face {
    font-family: 'Gill Sans';
    src: url('../fonts/GillSans-Medium.woff2') format('woff2'),
        url('../fonts/GillSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gill Sans';
    src: url('../fonts/GillSans-Bold.woff2') format('woff2'),
        url('../fonts/GillSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Open Sans", sans-serif;
}

.fraunces-fonts {
  font-family: "Fraunces", serif;
}

.jakarta-fonts {
  font-family: "Plus Jakarta Sans", sans-serif;
}


/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.35s ease;
}

.site-header.scrolled .header-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* white when over banner, switches to colour on scroll */
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.site-header.scrolled .header-logo {
  filter: none;
}

/* Nav links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.header-nav-link:hover {
  color: #fff;
}

.site-header.scrolled .header-nav-link {
  color: #1a1a1a;
}

.site-header.scrolled .header-nav-link:hover {
  color: #EC0000;
}

/* Apply Now button */
.header-apply-btn {
  background: #EC0000;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.25s;
  white-space: nowrap;
}

.header-apply-btn:hover {
  background: #a50d25;
  color: #fff !important;
}

/* Push banner content below fixed header */
.banner-section {
  padding-top: 0;
}

/* ============================================================
   HEADER — RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
  .header-nav-link {
    display: none;
  }

  .header-inner {
    padding: 14px 16px;
  }

  .header-logo {
    height: 38px;
  }

  .header-apply-btn {
    font-size: 13px;
    padding: 9px 16px;
  }
}


.banner-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-swiper .swiper-wrapper,
.banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.banner-swiper .swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  pointer-events: none;
}

.banner-content .banner-form-col,
.banner-content .banner-text-col {
  pointer-events: all;
}

.banner-text-col {
  color: #fff;
  width: 100%;
  max-width: 559px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.banner-text-col.slide-content-active {
  opacity: 1;
  transform: translateY(0);
}

.banner-text-col.slide-content-exit {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Admissions badge */
.admissions-badge {
  display: inline-block;
  background-color: #EC0000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Tagline */
.banner-tagline {
  color: #FACC15;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  /* 150% */
  letter-spacing: 0.35px;
}

/* Main heading */
.banner-heading {
  color: #FFF;
  font-size: 52px;
  font-weight: 800;
  line-height: 50px;
  margin-bottom: 24px;
}

/* Italic "Brilliance" in heading */
.banner-italic {
  color: #FBBC05;
  font-size: 52px;
  font-style: italic;
  font-weight: 300;
  line-height: 50px;
}

/* Description paragraph */
.banner-desc {
  color: #D1D5DB;
  font-size: 17.5px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}



.banner-form-col {
  width: 100%;
  max-width: 410px;
}

/* ============================================================
BANNER SECTION — CTA BUTTONS
============================================================ */
.banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

/* Explore Campus — solid red */
.btn-explore {
  background-color: #EC0000;
  color: #fff;
  border: 2px solid #EC0000;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  transition: background 0.25s, color 0.25s;
}

.btn-explore:hover {
  background-color: #a50d25;
  border-color: #a50d25;
  color: #fff;
}

/* Apply Now — outline white */
.btn-apply-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  transition: background 0.25s, color 0.25s;
}

.btn-apply-outline:hover {
  background-color: #fff;
  color: #111;
}


/* ============================================================
   BANNER SECTION — SLIDE LEFT CONTENT (full left col inside slider)
   ============================================================ */
.banner-swiper .swiper-slide {
  position: relative;
}

.slide-left-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 559px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 80px calc((100vw - 1296px) / 2 + 12px);
  color: #fff;
  z-index: 1;
}


/* ============================================================
   BANNER SECTION — COMPANY LOGOS BAR
   ============================================================ */
.companies-banner-bg {
  max-width: 454px;
  border-radius: 13.647px;
  border: 0.853px solid rgba(255, 255, 255, 0.10);
  background: rgba(247, 248, 250, 0.10);
  box-shadow: 0 8.529px 25.587px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10.66135311126709px);
  padding: 20px;
}

.banner-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: 100%;
}

.logo-item {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
  flex: 1;
  justify-content: center;
  border-right: 1px solid #898989;
}

.logo-item:last-child {
  border-right: none;
}

.logo-item img {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}



/* Vertical divider between logos */
.logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}


/* ============================================================
   BANNER SECTION — PLACEMENT BADGES
   ============================================================ */
.banner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 4px;
}

.badge-item {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-check-icon {
  height: 14px;
  width: auto;
}

.banner-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

/* Form title */
.form-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 2px;
}

/* Form subtitle */
.form-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* CTA button inside form */
.btn-form-cta {
  background-color: #EC0000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 4px;
  border: none;
  line-height: 1.4;
  transition: background 0.25s;
}

.btn-form-cta:hover {
  background-color: #a50d25;
  color: #fff;
}

/* Form inputs & selects */
.form-control {
  font-size: 13px;
  color: #444;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 9px 12px;
  height: auto;
}

.form-control:focus {
  border-color: #EC0000;
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.15);
  outline: none;
}

/* Consent text */
.form-consent {
  font-size: 11px;
  color: #777;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

/* Apply Now submit button */
#registerBtn {
  background-color: #EC0000 !important;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px;
  border-radius: 4px;
  border: none;
  transition: background 0.25s;
}

.btn-apply-now:hover {
  background-color: #a50d25;
  color: #fff;
}


/* ============================================================
   RESPONSIVE — TABLET (max-width: 991px)
   ============================================================ */
@media (max-width: 991px) {

  .banner-text-col {
    max-width: 100%;
  }

  .banner-italic {
    font-size: 32px;
  }

  .banner-content {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .banner-form-col {
    margin: 0 auto;
  }

  .slide-left-content {
    padding: 60px 24px;
    width: 100%;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {
  .banner-section {
    min-height: auto;
  }

  .banner-content {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .slide-left-content {
    padding: 40px 20px;
    width: 100%;
  }

  .banner-heading {
    font-size: 30px;
  }

  .banner-desc {
    font-size: 14px;
  }

  .banner-btns {
    gap: 10px;
  }

  .btn-explore,
  .btn-apply-outline {
    font-size: 13px;
    padding: 9px 18px;
  }

  .banner-logos {
    gap: 0;
    padding: 10px 14px;
  }

  .banner-form-card {
    padding: 22px 16px;
  }

  .form-title {
    font-size: 19px;
  }

  .companies-banner-bg {
    max-width: 100%;
  }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .banner-heading {
    font-size: 26px;
    line-height: 30px;
  }

  .banner-logos {
    gap: 10px;
  }

  .logo-item {
    font-size: 13px;
  }

  .banner-badges {
    gap: 12px;
  }

  .badge-item {
    font-size: 12px;
  }
}


/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #1a1a1a;
  text-transform: uppercase;
  padding: 0 24px;
}

.marquee-dot {
  color: #EC0000;
  font-size: 8px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background-color: #972437;
  padding: 80px 16px;
  border-radius: 0px 0px 4px 4px;
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats-card {
  border-radius: 6px;
  border: 0.741px solid #972437;
  padding: 26px 20px;
  background: linear-gradient(135deg, #F2CACC 0%, #FFF 100%);
  position: relative;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

.stats-card-top {
  margin-bottom: 16px;
}

.stats-badge {
  display: inline-block;
  color: #111;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  text-transform: uppercase;
  border-radius: 7408.597px;
  border: 0.741px solid #A16207;
  background: #FFF129;
}

.stats-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 81px;
  height: 81px;
  object-fit: contain;
  opacity: 0.2;
  transition: all .4s ease-in-out;
}

.stats-number {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stats-label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  line-height: 1.5;
}

.stats-card:hover .stats-icon {
  opacity: 0.7;
}

/* ============================================================
   STATS SECTION — RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stats-number {
    font-size: 28px;
  }
}


/* ============================================================
   PROGRAMS DESIGNED SECTION
   ============================================================ */
.programs-section {
  padding: 80px 0px 90px 0px;
}

/* Featured In Forbes heading */
.main-programs-heading-wrap {
  padding: 0px 16px 40px;
}

.main-programs-heading {
  font-size: 38px;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px;
}

.main-programs-heading-italic {
  font-style: italic;
  font-weight: 300;
}

.main-programs-heading strong {
  font-weight: 800;
}

.main-programs-subtext {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* Background image block */
.programs-inner {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 638px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}

.programs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 0;
}

.programs-bg-content {
  position: relative;
  z-index: 1;
  max-width: 1326px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
  padding-bottom: 0;
}

/* Stats row */
.programs-stats-row {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  /* padding-top: 60px; */
  justify-content: center;
}

.programs-stat-item {
  padding: 22px 26px;
  color: #fff;
  min-width: 160px;
  min-height: 270px;
  border-bottom: 1px solid #FFF;
  background: rgba(151, 36, 55, 0.75);
  backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.programs-stat-dark {
  background: rgba(30, 10, 10, 0.65);
}

.programs-stat-number {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.programs-stat-label {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

/* Heading */
.programs-heading-wrap {
  padding: 122px 0 28px;
}

.programs-heading {
  color: #fff;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.programs-heading-italic {
  font-style: italic;
  font-weight: 300;
}

.programs-heading strong {
  font-weight: 800;
}

/* ============================================================
   PROGRAMS ACCORDION
   ============================================================ */
.programs-accordion-wrap {
  max-width: 1280px;
  margin-top: -180px;
  background-color: #f0ede8;
  padding: 0;
  z-index: 99;
  position: relative;
}

.programs-accordion {
  border-radius: 4px 4px 0px 0px;
}

.programs-accordion-item {
  background: #f0ede8;
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 4px 4px 0px 0px !important;
}

.programs-accordion-item:nth-last-child(1) {
  border-bottom: none;
}

.programs-accordion-item:first-of-type,
.programs-accordion-item:last-of-type {
  border-radius: 4px 4px 0px 0px !important;
}

/* Custom header — replaces Bootstrap button */
.prog-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  cursor: pointer;
  background: #f0ede8;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  max-height: 100px;
  overflow: hidden;
}

/* When active: collapse the header height to 0 so it disappears */
.prog-item.active .prog-header {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

/* Number */
.prog-num {
  font-size: 60px;
  font-weight: 700;
  color: #972437;
  line-height: 1;
  min-width: 56px;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

/* Title wrap */
.prog-title-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

.prog-name {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
}

.prog-arrow {
  margin-left: auto;
  font-size: 18px;
  color: #555;
  padding-right: 4px;
  transition: opacity 0.3s ease;
}

/* Body wrap — smooth height animation */
.prog-body-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px 4px 0px 0px;
}

/* ============================================================
   ACCORDION BODY
   ============================================================ */
.programs-accordion-body {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #f0ede8;
}

.prog-num-body {
  flex-shrink: 0;
  min-width: 56px;
  padding-top: 4px;
}

.prog-body-left {
  flex: 1;
  max-width: 420px;
  margin-left: 64px;
}

.prog-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #1F2937;
  padding: 3px 12px;
  margin-bottom: 14px;
  border-radius: 9999px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
}

.prog-body-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.prog-divider {
  width: 36px;
  height: 2px;
  background: #8B1A2E;
  margin-bottom: 14px;
}

.prog-body-desc {
  color: #212529;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #0000001A;
  margin-bottom: 16px;
}

.prog-body-meta {
  font-size: 12px;
  color: #777;
  font-style: italic;
}

/* Images */
.prog-body-images {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.prog-body-images img {
  width: 258px;
  height: 259px;
  object-fit: cover;
}

/* ============================================================
   PROGRAMS — RESPONSIVE
   ============================================================ */

/* Tablet: 768px – 991px */
@media (max-width: 991px) {
  .programs-section {
    padding: 60px 0 70px;
  }

  .main-programs-heading {
    font-size: 30px;
  }

  .main-programs-subtext {
    font-size: 13px;
  }

  .programs-inner {
    min-height: 480px;
    border-radius: 0;
  }

  .programs-stat-item {
    min-width: 110px;
    min-height: 180px;
    padding: 16px 18px;
  }

  .programs-stat-number {
    font-size: 20px;
  }

  .programs-stat-label {
    font-size: 11px;
  }

  .programs-heading-wrap {
    padding: 60px 0 24px;
  }

  .programs-heading {
    font-size: 28px;
  }

  .programs-accordion-wrap {
    margin-top: -120px;
  }

  .programs-accordion-body {
    flex-direction: column;
    gap: 20px;
  }

  .prog-body-left {
    max-width: 100%;
    margin-left: 40px;
  }

  .prog-body-images {
    width: 100%;
    padding-left: 40px;
  }

  .prog-body-images img {
    flex: 1;
    width: auto;
    height: 140px;
    object-fit: cover;
  }

  .prog-num {
    font-size: 44px;
    min-width: 44px;
  }

  .prog-header {
    gap: 20px;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .programs-section {
    padding: 50px 0 60px;
  }

  .main-programs-heading-wrap {
    padding: 0 16px 32px;
  }

  .main-programs-heading {
    font-size: 26px;
  }

  .main-programs-subtext {
    font-size: 13px;
  }

  .programs-inner {
    min-height: auto;
    border-radius: 0;
  }

  .programs-stats-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .programs-stat-item {
    flex: 1 1 calc(33.33% - 1px);
    min-width: 0;
    min-height: 140px;
    padding: 14px 14px;
  }

  .programs-stat-number {
    font-size: 18px;
  }

  .programs-stat-label {
    font-size: 10px;
  }

  .programs-heading-wrap {
    padding: 40px 0 20px;
  }

  .programs-heading {
    font-size: 24px;
  }

  .programs-accordion-wrap {
    margin-top: -80px;
  }

  .prog-header {
    gap: 14px;
    padding: 18px 0;
  }

  .prog-num {
    font-size: 36px;
    min-width: 36px;
  }

  .prog-name {
    font-size: 15px;
  }

  .prog-body-left {
    max-width: 100%;
    margin-left: 24px;
  }

  .prog-body-images {
    padding-left: 0;
  }

  .prog-body-images img {
    height: 130px;
  }

  .prog-body-title {
    font-size: 17px;
  }

  .prog-body-desc {
    font-size: 14px;
  }
}

/* Small mobile: up to 480px */
@media (max-width: 480px) {
  .programs-section {
    padding: 40px 0 50px;
  }

  .main-programs-heading {
    font-size: 22px;
  }

  .programs-stats-row {
    flex-direction: column;
    width: 100%;
  }

  .programs-stat-item {
    flex: unset;
    min-height: unset;
    padding: 14px 16px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .programs-stat-number {
    font-size: 22px;
    margin-bottom: 0;
    min-width: 80px;
  }

  .programs-stat-label {
    font-size: 11px;
  }

  .programs-heading-wrap {
    padding: 32px 0 16px;
  }

  .programs-heading {
    font-size: 20px;
  }

  .programs-accordion-wrap {
    margin-top: -60px;
  }

  .prog-header {
    gap: 12px;
    padding: 16px 0;
  }

  .prog-num {
    font-size: 28px;
    min-width: 30px;
  }

  .prog-name {
    font-size: 14px;
  }

  .prog-body-left {
    margin-left: 10px;
  }

  /* .prog-num-body {
    display: none;
  } */

  .prog-body-images {
    flex-direction: column;
    padding-left: 0;
  }

  .prog-body-images img {
    width: 100%;
    height: 180px;
  }

  .prog-badge {
    font-size: 12px;
  }

  .prog-body-title {
    font-size: 16px;
  }

  .prog-body-desc {
    font-size: 13px;
  }
}


/* ============================================================
   AWARDS & RECOGNITIONS SECTION
   ============================================================ */
.awards-section {
  background-color: #F2F1EF;
  padding: 80px 16px 80px;
}

.awards-container {
  max-width: 1256px;
  margin: 0 auto;
}

.awards-heading-wrap {
  margin-bottom: 56px;
}

.awards-heading {
  font-size: 38px;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  margin-bottom: 8px;
}

.awards-heading strong {
  font-weight: 800;
}

.awards-heading-italic {
  font-style: italic;
  font-weight: 300;
  color: #111;
}

.awards-subtext {
  font-size: 13px;
  font-style: italic;
  color: #666;
  margin: 0;
}

/* Grid */
.awards-grid {
  display: flex;
  flex-direction: column;
}

.awards-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: 40px 0;
  gap: 20px;
}

/* 
.award-divider-v {
  width: 1px;
  height: 80px;
  background: #FFFFFF;
  justify-self: center;
} */

/* Each award item */
.award-item {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.award-item:hover {
  border: 1px solid rgba(0, 0, 0, 0.40);
  background: #F2F1EF;
  box-shadow: 10px 10px 0 0 rgba(255, 241, 41, 0.30);
}

.award-logo-wrap {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  align-items: center;
}

.award-logo {
  max-width: 140px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.award-rank {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 90px;
  margin-left: 24px;
}

.award-ranked-label {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  line-height: 1.4;
}

.award-ranked-label--text {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
}

.award-rank-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
}

.award-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* ============================================================
   AWARDS — RESPONSIVE
   ============================================================ */

/* Tablet: 768px – 991px */
@media (max-width: 991px) {
  .awards-section {
    padding: 60px 16px;
  }

  .awards-heading-wrap {
    margin-bottom: 40px;
  }

  .awards-heading {
    font-size: 30px;
  }

  .awards-row {
    padding: 32px 0;
    gap: 12px;
  }

  .award-item {
    gap: 14px;
    padding: 12px;
  }

  .award-logo-wrap {
    width: 100px;
  }

  .award-logo {
    max-width: 100px;
    max-height: 52px;
  }

  .award-rank {
    margin-left: 16px;
    min-width: 70px;
  }

  .award-rank-number {
    font-size: 32px;
    line-height: 1.1;
  }

  .award-desc {
    font-size: 12px;
  }
}

/* Mobile: up to 767px — stack rows */
@media (max-width: 767px) {
  .awards-section {
    padding: 50px 16px;
  }

  .awards-heading-wrap {
    margin-bottom: 32px;
  }

  .awards-heading {
    font-size: 26px;
  }

  .awards-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .award-divider-v {
    display: none;
  }

  .award-item {
    padding: 24px 8px;
    gap: 16px;
    border-radius: 0;
  }

  .award-item+.award-item {
    border-top: 1px solid #ddd;
  }

  /* Remove the last-child rule since we handle it above */
  .award-item:last-child {
    border-top: 1px solid #ddd;
    padding-top: 24px;
  }

  .awards-row-divider {
    margin: 0;
  }

  .award-logo-wrap {
    width: 100px;
    flex-shrink: 0;
  }

  .award-logo {
    max-width: 100px;
    max-height: 52px;
  }

  .award-rank {
    margin-left: 12px;
    min-width: 60px;
  }

  .award-rank-number {
    font-size: 30px;
    line-height: 1.1;
  }

  .award-desc {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* Small mobile: up to 480px */
@media (max-width: 480px) {
  .awards-section {
    padding: 40px 12px;
  }

  .awards-heading {
    font-size: 22px;
  }

  .award-item {
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 4px;
  }

  .award-logo-wrap {
    width: 80px;
  }

  .award-logo {
    max-width: 80px;
    max-height: 44px;
  }

  .award-rank {
    margin-left: 8px;
    min-width: 50px;
  }

  .award-rank-number {
    font-size: 26px;
  }

  .award-ranked-label--text {
    font-size: 12px;
  }

  .award-desc {
    font-size: 11px;
    width: 100%;
    padding-top: 4px;
  }
}


/* ============================================================
   ALUMNI TESTIMONIALS SECTION
   ============================================================ */
.alumni-section {
  background-color: #fff;
  padding: 80px 16px;
}

.alumni-container {
  max-width: 1125px;
  margin: 0 auto;
}

.alumni-heading-wrap {
  margin-bottom: 48px;
}

.alumni-heading {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 0;
}

.alumni-heading-italic {
  font-style: italic;
  font-weight: 300;
}

/* Main grid: left image + right cards */
.alumni-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Left image column */
.alumni-left {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 560px;
}

.alumni-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats overlay at bottom of left image */
.alumni-stats-overlay {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  background: rgba(120, 20, 35, 0.82);
  backdrop-filter: blur(6px);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 230px;
}

.alumni-stat {
  display: flex;
  flex-direction: column;
}

.alumni-stat-num {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.alumni-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  line-height: 1.4;
}

/* Right: 2x2 cards grid */
.alumni-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.alumni-card {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease, color 0.3s ease;
}

.alumni-card:hover {
  background: #972437;
  color: #fff;
}

.alumni-card:hover .alumni-card-quote,
.alumni-card:hover .alumni-card-name,
.alumni-card:hover .alumni-card-role {
  color: #fff;
}

.alumni-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.alumni-card-quote {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.alumni-card-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}

.alumni-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.alumni-card-role {
  font-size: 12px;
  color: #888;
}

/* ============================================================
   ALUMNI — RESPONSIVE
   ============================================================ */

/* Tablet: 768px – 991px */
@media (max-width: 991px) {
  .alumni-section {
    padding: 60px 16px;
  }

  .alumni-heading {
    font-size: 30px;
  }

  .alumni-grid {
    grid-template-columns: 260px 1fr;
    gap: 16px;
  }

  .alumni-left {
    min-height: 480px;
  }

  .alumni-stat-num {
    font-size: 20px;
  }

  .alumni-card {
    padding: 18px;
    gap: 12px;
  }

  .alumni-card-quote {
    font-size: 12px;
  }
}

/* Mobile: up to 767px — stack layout */
@media (max-width: 767px) {
  .alumni-section {
    padding: 50px 16px;
  }

  .alumni-heading {
    font-size: 26px;
  }

  .alumni-heading-wrap {
    margin-bottom: 32px;
  }

  .alumni-grid {
    grid-template-columns: 1fr;
  }

  .alumni-left {
    min-height: 320px;
    border-radius: 8px;
  }

  .alumni-stats-overlay {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 16px 20px;
  }

  .alumni-stat {
    flex: 1 1 calc(50% - 24px);
  }

  .alumni-stat-num {
    font-size: 20px;
  }

  .alumni-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .alumni-card {
    padding: 16px;
  }

  .alumni-card-quote {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Small mobile: up to 480px */
@media (max-width: 480px) {
  .alumni-section {
    padding: 40px 12px;
  }

  .alumni-heading {
    font-size: 22px;
  }

  .alumni-left {
    min-height: 260px;
  }

  .alumni-stats-overlay {
    flex-direction: row;
    gap: 10px 16px;
  }

  .alumni-stat-num {
    font-size: 17px;
  }

  .alumni-stat-label {
    font-size: 10px;
  }

  .alumni-cards-grid {
    grid-template-columns: 1fr;
  }

  .alumni-card {
    padding: 16px;
    gap: 10px;
  }

  .alumni-card-avatar {
    width: 44px;
    height: 44px;
  }

  .alumni-card-name {
    font-size: 14px;
  }

  .alumni-card-quote {
    font-size: 12px;
  }
}

/* ============================================================
   PLACEMENTS SECTION
   ============================================================ */
.placements-section {
  background: #fff;
  padding: 96px 16px 0;
}

.placements-container {
  max-width: 1120px;
  margin: 0 auto;
}

.placements-container-2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 16px;

}

/* Top two-column layout */
.placements-top {
  display: flex;
  margin-bottom: 56px;
}

.placements-top-left {
  max-width: 450px;
  width: 100%;
}

.placements-top-right {
  min-width: 260px;
  width: 100%;
  max-width: 642px;
}

.placements-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.placements-heading {
  font-size: 38px;
  font-weight: 400;
  color: #111;
  line-height: 1.15;
  margin-bottom: 28px;
}

.placements-heading-italic {
  font-style: italic;
  font-weight: 300;
}

.placements-heading strong {
  font-weight: 800;
}

.btn-placement-apply {
  display: inline-block;
  background: #EC0000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-placement-apply:hover {
  background: #a50d25;
  color: #fff;
}

/* Stats row */
.placements-stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.placement-stat-card {
  flex: 1;
  min-width: 100px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
}

.placement-stat-card.highlight {
  background: #972437;
  border-color: #972437;
}

.placement-stat-card.highlight .placement-stat-num,
.placement-stat-card.highlight .placement-stat-label {
  color: #fff;
}

.card-2,
.card-4 {
  background: #F2F1EF;
}

.placement-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.placement-stat-num.red {
  color: #EC0000;
}

.placement-stat-label {
  font-size: 11px;
  color: #777;
  margin-top: 4px;
  line-height: 1.4;
}

.placements-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   COMPANIES LOGO SLIDER
   ============================================================ */
.companies-logo-slider-wrap {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 28px 0;
  overflow: hidden;
  margin-bottom: 56px;
}

.companies-logo-swiper {
  overflow: hidden;
}

.companies-logo-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.companies-logo-slide img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: filter 0.3s, opacity 0.3s;
}

/* ============================================================
   PLACEMENT CARDS SLIDER
   ============================================================ */
.placement-cards-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 80px;
}

.placement-cards-swiper {
  flex: 1;
  overflow: hidden;
}

/* Arrow buttons — same circle style as reference */
.placement-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #A6A6A6;
  background: #fff;
  color: #333;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  z-index: 10;
  padding: 0;
}

.placement-arrow:hover {
  border-color: #EC0000;
  background: #EC0000;
  color: #fff;
}

.placement-arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Card */
.placement-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 560px;
  background: #972437;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.placement-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.placement-card-info {
  position: relative;
  z-index: 2;
  padding: 20px 20px 24px;
  background: linear-gradient(to top, rgba(100, 10, 30, 0.92) 60%, transparent 100%);
}

.placement-company-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.placement-card-divider {
  width: 32px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.placement-student-name {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-style: italic;
  font-family: "Fraunces", serif;
  line-height: 1.2;
  margin-bottom: 6px;
}

.placement-placed-at {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ============================================================
   PLACEMENTS — RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .placements-top {
    gap: 32px;
    flex-wrap: wrap;
  }

  .placements-top-left {
    text-align: center;
    max-width: 100%;
    width: 100%;
  }

  .placements-top-right {
    max-width: 100%;
    width: 100%;
  }

  .placements-heading {
    font-size: 30px;
  }

  .placement-stat-num {
    font-size: 18px;
  }

  .placement-card {
    height: 480px;
  }

  /* Move arrows below slider on tablet */
  .placement-cards-slider-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 60px;
  }

  .placement-cards-swiper {
    width: 100%;
    order: 1;
  }

  .placement-arrow-prev,
  .placement-arrow-next {
    display: none;
  }
}

@media (max-width: 767px) {
  .placements-section {
    padding: 48px 0 0;
  }

  .placements-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .placements-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
  }

  .placements-top-left {
    max-width: 100%;
  }

  .placements-heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .placements-stats-row {
    gap: 8px;
    flex-wrap: wrap;
  }

  .placement-stat-card {
    flex: 1 1 calc(50% - 8px);
    padding: 10px 12px;
  }

  .placement-stat-num {
    font-size: 16px;
  }

  .placements-desc {
    font-size: 13px;
  }

  /* Logo slider */
  .companies-logo-slider-wrap {
    margin-bottom: 36px;
    padding: 20px 0;
  }

  .companies-logo-slide img {
    height: 28px;
  }

  /* Cards slider */
  .placement-cards-slider-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 48px;
  }

  .placement-cards-swiper {
    width: 100%;
    order: 1;
  }

  .placement-arrow-prev,
  .placement-arrow-next {
    display: none;
  }

  .placement-student-name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .placements-section {
    padding: 40px 0 0;
  }

  .placements-heading {
    font-size: 22px;
  }

  .placements-stats-row {
    gap: 8px;
  }

  .placement-stat-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .placement-stat-num {
    font-size: 15px;
  }

  .placement-stat-label {
    font-size: 10px;
  }

  .companies-logo-slide img {
    height: 24px;
    max-width: 100px;
  }

  .btn-placement-apply {
    font-size: 12px;
    padding: 10px 20px;
  }
}

/* Placement cards pagination dots (mobile/tablet) */
.placement-cards-pagination {
  display: none;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .placement-cards-pagination {
    display: block;
  }
}

.placement-cards-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #F2F1EF;
  opacity: 1;
  margin: 0 4px;
}

.placement-cards-pagination .swiper-pagination-bullet-active {
  background: #EC0000;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #111827;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
}

/* Main footer area */
.footer-main {
  padding: 64px 16px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-container {
  max-width: 1184px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ---- Brand column ---- */
.footer-col-brand {
  max-width: 388px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0;
}

/* ---- Column titles ---- */
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ---- Contact list ---- */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.65;
}

.footer-col-accreditation {
  max-width: 308px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) invert(0.7);
}

.footer-email-link {
  color: #e05555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email-link:hover {
  color: #ff7070;
}

/* ---- Accreditation list ---- */
.footer-accreditation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-accreditation-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 4px;
}


/* ---- Bottom bar ---- */
.footer-bottom {
  padding: 18px 16px;
}

.footer-bottom-container {
  max-width: 1184px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright,
.footer-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.40);
  margin: 0;
}

/* ============================================================
   FOOTER — RESPONSIVE
   ============================================================ */

/* Tablet: up to 991px */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-main {
    padding: 48px 16px 36px;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col-brand {
    grid-column: auto;
  }

  .footer-main {
    padding: 40px 16px 32px;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer-logo {
    height: 44px;
  }
}

/* Small mobile: up to 480px */
@media (max-width: 480px) {
  .footer-main {
    padding: 32px 16px 28px;
  }

  .footer-col-title {
    font-size: 10px;
    margin-bottom: 18px;
  }

  .footer-contact-item {
    font-size: 13px;
  }

  .footer-accreditation-item {
    font-size: 11px;
  }

  .footer-copyright,
  .footer-credit {
    font-size: 11px;
  }
}
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    background: transparent;
}

/* When scrolled */
.site-header.scrolled {
    background: #000;
}