/* ========================================
   MAIN.CSS — Edujobs
   Primary stylesheet. No @media queries here.
   ======================================== */


/* ========================================
   BLOCK 1 — CSS Variables & Global Reset
   ======================================== */

:root {
  --primary: #E63E3B;
  --secondary: #FFBC00;
  --dark: #1A1A2E;
  --paragraph: #000;
  --heading: #1A1A2E;
  --white: #FFFFFF;
  --light-bg: #F8F7F4;
  --warm-bg: #FFF8F0;
  --border: #E8E8EE;
  --font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --section-padding: 100px 0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.10);
}

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

html {
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

html.out-come {
  overflow-x: hidden;
}

html.employer-page {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px
}

p {
  font-size: 18px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--primary);
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--paragraph);
  font-weight: 400;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--white);
}

h1 {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(36px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin: 0 0 20px;
}

h2 {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0 0 14px;
}

h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading);
  margin: 0 0 12px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--heading);
  margin: 0 0 10px;
}

h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--heading);
  margin: 0 0 8px;
}

h6 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--heading);
  margin: 0 0 6px;
}

p {
  font-size: 18px;
  color: var(--paragraph);
  line-height: 1.75;
  margin-bottom: 14px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: var(--font-family);
}


/* ========================================
   BLOCK 2 — Layout
   ======================================== */


section {
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: 40px;
}

.section-header__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
  line-height: 1.22;
}

.section-header__title span {
  color: var(--primary);
}

.section-header__subtitle {
  color: var(--paragraph);
  line-height: 1.75;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-header__subtitle {
  margin: 0 auto;
}

.section-header--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-view-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: gap 0.25s;
}

.section-view-link:hover {
  gap: 9px;
}


/* ========================================
   BLOCK 3 — Buttons
   ======================================== */

/* ---- Base (shape, size, typography — same for all buttons) ---- */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-family);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
}

/* ---- Icon circle inside btn-custom buttons ---- */
.btn-custom .btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: #fff;
  font-weight: 400;
}

.btn-custom .btn-icon i {
  font-weight: 400;
}

.btn-custom.btn-yellow .btn-icon {
  background: rgba(0, 0, 0, 0.13);
  border-color: rgba(0, 0, 0, 0.10);
  color: #fff;
}

/* ---- Color modifiers ---- */

/* Yellow */
.btn-yellow {
  background: var(--secondary);
  color: var(--white);
}

.btn-yellow:hover {
  background: #f0ae00;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 188, 0, 0.35);
}

/* Red */
.btn-red {
  background: var(--primary);
  color: var(--white);
}

.btn-red:hover {
  background: #c82f2c;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 62, 59, 0.3);
}

/* Grey */
.btn-grey {
  background: #EEEEEE;
  color: var(--dark);
}

.btn-grey:hover {
  background: #E0E0E0;
  color: var(--dark);
  transform: translateY(-1px);
}


/* ========================================
   BLOCK 4 — Form Inputs
   ======================================== */

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--heading);
  transition: border-color 0.25s ease;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-input::placeholder {
  color: #aaa;
}


/* ========================================
   BLOCK 5 — Base Card
   ======================================== */

.edujobs-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}

.edujobs-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}


/* ========================================
   BLOCK 6 — Announcement Bar
   ======================================== */

.announcement-bar {
  background: #000;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 13.5px;
  font-weight: 400;
  padding: 11px 20px;
  line-height: 1.4;
  letter-spacing: 0.1px;
}

.announcement-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: opacity 0.2s;
}

.announcement-bar a i {
  font-size: 16px;
  font-weight: 400;
}

.announcement-bar a:hover {
  opacity: 0.75;
}

.ab-text {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.ab-text--out {
  opacity: 0;
  transform: translateY(-6px);
}

.ab-text--in {
  animation: ab-slide-in 0.35s ease forwards;
}

@keyframes ab-slide-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Announcement bar — mobile marquee (revealed < 768px in responsive.css) ──
   All messages scroll continuously with dot dividers. Hidden by default so the
   desktop/tablet rotating ticker (.ab-text) is used instead. */
.ab-marquee {
  display: none;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
}

.ab-track {
  display: flex;
  width: max-content;
  animation: ab-marquee-scroll 30s linear infinite;
}

.ab-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ab-item,
.ab-dot {
  flex-shrink: 0;
  white-space: nowrap;
}

.ab-dot {
  padding: 0 14px;
  opacity: 0.5;
}

/* Pause on touch/hover so a moving link can be tapped */
.ab-marquee:hover .ab-track,
.ab-marquee:active .ab-track {
  animation-play-state: paused;
}

@keyframes ab-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-track {
    animation: none;
  }
}


/* ========================================
   BLOCK 7 — Navbar / Site Header
   ======================================== */

/* ---- Outer wrapper ---- */
.site-header {
  position: absolute;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 12px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header--scrolled {
  padding: 15px 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
}

/* ---- Pill bar ---- */
.site-header__bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 100px;
  border: 1.5px solid #e4e4ec;
  box-shadow: 0 2px 20px rgb(0 0 0 / 7%);
  padding: 8px 8px 8px 24px;
  transition: box-shadow 0.3s ease;
}

.site-header.site-header--scrolled.is-sticky .site-header__bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 100px;
  border: 0px solid #e4e4ec;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  padding: 0;
  transition: box-shadow 0.3s ease;
}

.site-header--scrolled .site-header__bar {
  border-color: transparent;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1);
}

/* ---- True 3-column layout ---- */
.site-header__col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Left col: flex:1 keeps logo pinned left */
/* .site-header__col--left {
  flex: 0;
} */

/* Center col: natural width — centered because left & right are equal flex:1 */
.site-header__col--center {
  flex: 1 0 auto;
}

/* Right col: flex:1 + justify-end pins buttons to the right */
.site-header__col--right {
  flex: 1;
  justify-content: flex-end;
}

/* ---- Logo ---- */
.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo-img {
  height: auto;
  width: auto;
  display: block;
  width: 152px;
}

/* ---- Desktop nav links ---- */
.site-header__nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.site-header__nav-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  padding: 8px 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.site-header__nav-link:hover {
  color: var(--primary);
}

.site-header__nav-link--active {
  color: var(--primary) !important;
  font-weight: 500;
  border: 1.5px solid rgba(230, 62, 59, 0.32);
  border-radius: 50px;
  background: rgba(230, 62, 59, 0.05);
}

.site-header__nav-link--active i {
  font-weight: 600;
}

/* ---- Desktop action buttons ---- */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Log In — yellow pill */
.site-header__login-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 5px 22px 5px 5px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
  text-decoration: none;
}

.site-header__login-btn:hover {
  background: #f0ae00;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 188, 0, 0.38);
}

/* Talk to Counsellor — white bordered pill */
.site-header__counsel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 22px 5px 5px;
  border-radius: 50px;
  border: 1.5px solid #e0e0e8;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
  line-height: 1;
  text-decoration: none;
}

.site-header__counsel-btn:hover {
  border-color: var(--primary);
  color: #fff;
}

/* ---- Icon circles ---- */
.site-header__btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  /* background: rgba(0, 0, 0, 0.22); */
  display: flex;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--white);
  border: 2px solid #ffffff40;
}

.site-header__btn-icon--red {
  background: var(--primary);
}

/* ---- Hamburger (hidden on desktop) ---- */
.site-header__toggler {
  display: none;
  background: transparent;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  line-height: 1;
}

.site-header__toggler i {
  font-size: 26px;
  color: #2d2d3a;
  display: block;
}

/* ---- Mobile menu (hidden by default) ---- */
.site-header__mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0 20px;
}

.site-header__mobile-menu.is-open {
  display: block;
}

.site-header__mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__mobile-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  padding: 11px 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header__mobile-link:hover {
  background: var(--light-bg);
  color: var(--primary);
}

.site-header__mobile-link--active {
  color: var(--primary);
  font-weight: 700;
}

.site-header__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.site-header__mobile-actions .site-header__login-btn,
.site-header__mobile-actions .site-header__counsel-btn {
  justify-content: center;
  padding: 12px 20px 12px 12px;
}

/* ---- Mobile breakpoint — below 1200px: show hamburger, hide desktop nav ---- */
@media (max-width: 1199px) {
  .site-header {
    padding: 17px 0;
  }

  .site-header__bar {
    border-radius: 16px;
    padding: 10px 16px;
  }

  /* Hide desktop nav + action buttons */
  .site-header__col--center,
  .site-header__actions {
    display: none;
  }

  /* Show hamburger */
  .site-header__toggler {
    display: block;
  }
}


/* ========================================
   BLOCK 7b — Chatbot Widget
   ======================================== */

.ej-chatbot {
  position: fixed;
  bottom: 94px;
  right: 30px;
  z-index: 9998;
}

.ej-chatbot__trigger {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #F93C2B;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(249, 60, 43, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ej-chatbot__trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 60, 43, 0.45);
}

.ej-chatbot__trigger-icon {
  width: 78px;
  height: 78px;
  pointer-events: none;
}

.ej-chatbot__panel {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 15, 18, 0.20);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.ej-chatbot.is-open .ej-chatbot__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ej-chatbot__header {
  background: linear-gradient(135deg, #F93C2B 0%, #8E0C00 100%);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ej-chatbot__header-title {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.ej-chatbot__header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  margin-top: 4px;
}

.ej-chatbot__header-status i {
  font-size: 8px;
  color: #4ADE80;
}

.ej-chatbot__close {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ej-chatbot__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.ej-chatbot__body {
  padding: 20px;
  background: #f9f9f7;
}

.ej-chatbot__bubble {
  background: #fff;
  border: 1px solid #ebebef;
  border-radius: 14px;
  border-top-left-radius: 4px;
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--dark);
}

.ej-chatbot__footer {
  padding: 0 20px 20px;
  background: #f9f9f7;
}

.ej-chatbot__cta {
  width: 100%;
}

@media (max-width: 767px) {
  .ej-chatbot {
    bottom: 20px;
    right: 16px;
  }

  .ej-chatbot__trigger {
    width: 56px;
    height: 56px;
  }

  .ej-chatbot__trigger-icon {
    width: 34px;
    height: 34px;
  }

  .ej-chatbot__panel {
    bottom: 68px;
  }
}

@media (max-width: 480px) {
  .ej-chatbot {
    bottom: 18px;
    right: 14px;
  }

  .ej-chatbot__trigger {
    width: 52px;
    height: 52px;
  }
}

/* ========================================
   BLOCK 8 — Hero Section
   ======================================== */

.hero-section {
  background: linear-gradient(135deg, #fafaf8 0%, #fff5f5 60%, #fff9ec 100%);
  padding: 160px 0 120px;
  position: relative;
  overflow: visible;
}

/* Left content */
/* .hero-section__content {
  max-width: 710px;
} */

.hero-section__title {
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-section__title span {
  color: var(--primary);
  font-weight: bold;
}

.hero-section__subtitle {
  font-size: 16px;
  color: var(--paragraph);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Buttons row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Search bar */
.hero-search {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  margin-bottom: 34px;
  max-width: 530px;
  position: relative;
}

/* ── Search Dropdown ── */
.hero-search__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 20px;
  max-height: 480px;
  overflow-y: auto;
}

.hero-search__dropdown.is-open {
  display: block;
}

.hsd-section {
  margin-bottom: 2px;
}

/* Accordion header button */
.hsd-section__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f9fafb;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.15s;
  gap: 8px;
}

.hsd-section__header:hover {
  background: #f3f4f6;
}

.hsd-section__header.is-open {
  background: #fef2f2;
  color: var(--primary);
}

.hsd-section__header span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hsd-section__header span i,
.hsd-section__header>i.ph {
  font-size: 15px;
  color: var(--primary);
}

.hsd-arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
  color: #9ca3af;
}

.hsd-section__header.is-open .hsd-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Accordion body */
.hsd-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  padding: 0 4px;
}

.hsd-accordion-body.is-open {
  max-height: 400px;
  padding: 10px 4px 6px;
}

.hsd-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 14px 0;
}

/* Industry pills */
.hsd-courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hsd-course-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.78rem;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.hsd-course-pill:hover {
  background: #fef2f2;
  border-color: var(--primary);
  color: var(--primary);
}

.hsd-course-pill i {
  font-size: 13px;
}

/* Course list rows */
.hsd-courses-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}

.hsd-course-row {
  display: flex;
  flex-direction: column;
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.hsd-course-row:hover {
  background: #f9fafb;
}

.hsd-course-row__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #111827;
}

.hsd-course-row__meta {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-top: 1px;
}

.hero-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--font-family);
  color: var(--paragraph);
  background: transparent;
}

.hero-search__input::placeholder {
  color: #aaa;
}

.hero-search__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.hero-search__btn:hover {
  background: #c82f2c;
}

/* Feature list */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.hero-features__icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid #bcbcbc33;
}

/* USP strip — 3-col row below banner on <1200px */
.hero-usp-strip {
  padding-top: 24px;
  padding-bottom: 8px;
}

.hero-usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}

/* Right image — bleeds to viewport right edge, outside container */
.hero-visual {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -110px;
  width: 52%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
}

.hero-visual__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right center;
  display: block;
}



/* ========================================
   BLOCK 9 — Courses Section
   ======================================== */

.courses-section {
  background: var(--white);
}

/* ── Section Header ── */
.courses-section__header {
  text-align: center;
  margin: 0 auto 52px;
}


.courses-section__title strong {
  font-weight: 700;
}

.courses-section__subtitle {
  color: var(--paragraph);
  margin: 0;
}

/* ── Layout ── */
.courses-layout {
  display: flex;
  align-items: stretch;
  gap: 28px;
  background-color: rgb(206 206 206 / 10%);
  border-radius: 20px;
  border: 1px solid rgb(59 59 59 / 10%);
}

.course-padding {
  --bs-gutter-x: 3rem;
}

/* ── Left Sidebar ── */
.courses-sidebar {
  flex: 0 0 330px;
  width: 330px;
  background-color: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 20px 0px 0px 20px;
  padding: 15px;
  overflow: auto;
}

.courses-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column !important;
}

/* Bootstrap overrides for our custom tab buttons */
.courses-nav .nav-item {
  width: 100%;
  margin-bottom: 5px;
}

.courses-nav .nav-item:last-child {

  margin-bottom: 0px;
}

.courses-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #9CA3AF;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  line-height: 1.4;
}

.courses-nav__link i {
  font-size: 17px;
  flex-shrink: 0;
  opacity: 0.75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s ease, color 0.22s ease;
}

.courses-nav__link:hover i {
  opacity: 1;
}

.courses-nav__link:hover {
  color: var(--heading);
}

.courses-nav__link.active {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #c0201d 100%);
  border-color: transparent;
  padding-left: 7px;
}

.courses-nav__link.active i {
  opacity: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  color: #fff;
  font-weight: 400;
}

/* ── Right Content Panel ── */
.courses-content {
  flex: 1;
  min-width: 0;
}

/* ── Courses layout responsive — tablet & mobile ── */
/* Tablet (≤991px): stack vertically — sidebar on top, content below */
@media (max-width: 991px) {
  .courses-layout {
    flex-direction: row;
    gap: 0;
  }

  .courses-sidebar {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    max-height: none;
    border-bottom: none;
    padding: 12px 12px 8px;
    overflow-x: auto;
    overflow-y: hidden;
  }


  /* Horizontal scrolling nav pills on tablet */
  .courses-nav {
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 6px;
    padding-bottom: 4px;
  }

  .courses-nav .nav-item {
    flex-shrink: 0;
    width: auto;
    margin-bottom: 0;
  }

  .courses-content {
    width: 100%;
    border-radius: 0 0 20px 20px;
  }

  .courses-panel {
    padding: 28px 24px;
  }
}

/* Mobile (≤767px): same stacking, tighter spacing */
@media (max-width: 767px) {
  .courses-sidebar {
    padding: 10px 10px 6px;
  }

  .courses-nav {
    gap: 5px;
  }

  .courses-panel {
    padding: 20px 16px;
  }
}

/* Tab reveal animation */
@keyframes coursesReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.courses-tab-content .tab-pane.show.active {
  animation: coursesReveal 0.36s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.courses-panel {
  padding: 40px 50px 40px 28px;
}

.courses-panel__title {
  font-size: 30px;
  font-weight: 300;
  color: var(--heading);
  margin-bottom: 28px;
}

.courses-panel__title strong {
  font-weight: 700;
}

/* ── New Course Card ── */
.new-course-card {
  border-radius: 20px;
  padding: 15px 15px 15px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #F0F0F0;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.new-course-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

.new-course-card__img-wrap {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  background: #F3F4F6;
}

.new-course-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.new-course-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 0;
}

.new-course-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 13px;
  line-height: 1.3;
}

.new-course-card__meta {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 24px;
}

.new-course-card__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.new-course-card__meta-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #0000001a;
}

/* SVG image inside the icon circle */
.new-course-card__meta-svg {
  width: 22px;
  height: 22px;
  display: block;
}

.new-course-card__meta-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 2px;
}

.new-course-card__meta-val {
  display: block;
  font-size: 13px;
  color: var(--paragraph);
  line-height: 1.3;
}

/* ── Course Card Buttons ── */
.new-course-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  padding: 5px 14px 5px 5px;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  text-transform: capitalize;
  transition: background 0.25s ease, color 0.25s ease;
  border: 1px solid #F6F6F6;
  width: 100%;
}

.new-course-card__btn:hover {
  text-decoration: none;
  color: #fff;
}

/* ── Outline button ── */
.new-course-card__btn--outline {
  background: var(--white);
  border: 1.5px solid #DCDCDC;
  color: var(--heading);
}

.new-course-card__btn--outline:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.new-course-card__btn--outline:hover .new-course-card__btn-icon {
  background: var(--white);
  color: var(--secondary);
}

/* ── Yellow button ── */
.new-course-card__btn--yellow {
  background: var(--secondary);
  border: 1.5px solid var(--secondary);
  color: var(--white);
  font-weight: 600;
}

.new-course-card__btn--yellow:hover {
  background: #e6a800;
  border-color: #e6a800;
}

.new-course-card__btn--yellow:hover .new-course-card__btn-icon--yellow-circle {
  background: var(--white);
  color: var(--secondary);
}

/* ── Icon circle ── */
.new-course-card__btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 18px;
  padding-top: 1px;
  transition: background 0.25s ease, color 0.25s ease;
}

.new-course-card__btn-icon--yellow-circle {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease;
}


/* ========================================
   BLOCK 10 — Who Are We For Section
   ======================================== */

.who-for-section {
  background: #ffbc000d;
}

/* Mobile sliders — who-for & abroad */
.who-for-swiper,
.abroad-swiper {
  overflow: hidden;
  padding-bottom: 40px;
}

.who-for-swiper .swiper-slide,
.abroad-swiper .swiper-slide {
  height: auto;
}

.who-for-swiper .who-for-card,
.abroad-swiper .abroad-card {
  height: 100%;
}

.who-for-pagination,
.abroad-pagination,
.related-pagination {
  bottom: 8px !important;
}

.who-for-pagination .swiper-pagination-bullet,
.abroad-pagination .swiper-pagination-bullet,
.related-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
}

.who-for-pagination .swiper-pagination-bullet-active,
.abroad-pagination .swiper-pagination-bullet-active,
.related-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 20px;
  border-radius: 4px;
}

/* Student Stories pagination — sits below the slider card, not floating
   inside it, so override Swiper's default absolute positioning */
.stories-pagination {
  display: none;
  position: static;
  margin-top: 20px;
  text-align: center;
}

.stories-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
}

.stories-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 20px;
  border-radius: 4px;
}

/* ─── News & Media search bar ─────────────────────────────── */
.news-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 0px;
  padding: 13px 20px;
  background: #fafaf8;
  border: 1.5px solid #e5e5e0;
  border-radius: 50px;
  transition: border-color 0.2s ease;
}

.news-search:focus-within {
  border-color: var(--primary);
}

.news-search i {
  color: #999;
  font-size: 18px;
  flex-shrink: 0;
}

.news-grid {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

.news-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  color: var(--dark);
}

.news-search__input::placeholder {
  color: #aaa;
}

/* ─── News & Media card — image, title, 2-line excerpt, Read More ──── */
.news-card {
  background: #fff;
  border: 1px solid #ebebef;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 12px;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 15, 18, 0.10);
}

.news-card__img-wrap {
  height: 200px;
  overflow: hidden;
}

.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.news-card__title {
  padding: 0;
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.news-card__title a {
  color: var(--heading, #1a1a1a);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card__title a:hover {
  color: var(--primary);
}

.news-card__desc {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--paragraph);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  width: fit-content;
}

.news-card__link i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.news-card__link:hover {
  color: var(--primary);
}

.news-card__link:hover i {
  transform: translateX(3px);
}

/* Related Programmes mobile slider (<768px) — matches abroad-swiper */
.related-swiper {
  display: none;
  overflow: hidden;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.related-swiper .swiper-slide {
  height: auto;
}

.related-swiper .new-course-card {
  height: 100%;
}

/* ─── Academy cards swiper — matches home page abroad-swiper style ── */
.academy-cards-swiper {
  overflow: hidden;
  padding-bottom: 40px;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

.academy-cards-swiper .swiper-wrapper {
  align-items: flex-start;
}

.academy-cards-swiper .swiper-slide {
  height: auto;
}

.academy-cards-swiper .abroad-card {
  height: 100%;
}

.academy-cards-pagination {
  bottom: 8px !important;
}

.academy-cards-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
}

.academy-cards-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 20px;
  border-radius: 4px;
}

/* Section heading */
.who-for-section__header {
  text-align: center;
  margin-bottom: 30px;
}


.who-for-section__subtitle {
  font-size: 16px;
  color: var(--paragraph);
  margin: 0 auto;
  line-height: 1.65;
}

/* Card */
.who-for-card {
  background: var(--white);
  border: 1.5px solid #E8E8E8;
  border-radius: 18px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.who-for-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* SVG Icon */
.who-for-card__icon {
  width: 54px;
  height: 54px;
  color: var(--dark);
  transition: color 0.25s ease;
  flex-shrink: 0;
}

.who-for-card__svg {
  height: auto;
  display: block;
}

/* Icon turns yellow on hover or active */
.who-for-card:hover .who-for-card__icon,
.who-for-card--active .who-for-card__icon {
  color: var(--secondary);
}

/* Title */
.who-for-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  margin: 0;
  flex: 1;
  max-width: max-content;
}

/* CTA button — default: red circle + plain text */
.who-for-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 14px 5px 5px;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.25s ease, color 0.25s ease;
  border: 1px solid #F6F6F6;
  width: 100%;
}

.who-for-card__btn-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 300;
  font-size: 18px;
  padding-top: 1px;
  transition: background 0.25s ease, color 0.25s ease;
}

/* Hover / active — full yellow pill button */
.who-for-card:hover .who-for-card__btn,
.who-for-card--active .who-for-card__btn {
  background: var(--secondary);
  color: #fff !important;
}

.site-header__megamenu.mm-tabbed .who-for-card:hover .site-header__megamenu.mm-tabbed .who-for-card__btn {
  background: rgb(255, 255, 255);
  color: var(--primary) !important;
}


/* ========================================
   BLOCK 11 — Why Choose Section (Stats)
   ======================================== */

.choose-section {
  background: var(--white);
}

.stats-padding-home {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

/* Heading */
.choose-section__header {
  text-align: center;
  margin-bottom: 30px;
}

.choose-section__title {
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.choose-section__title strong {
  font-weight: 700;
}

.choose-section__subtitle {
  color: var(--paragraph);
}

/* ── Bento stats grid — 3 cols × 2 rows, header + 5 cards ── */

/* Stat card */
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #F0F0F0;
}

.why-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.why-card__text {
  flex: 1;
  min-width: 0;
}

/* Number + suffix row */
.why-card__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 8px;
  line-height: 1;
}

/* Odometer override — inherit card font */
.why-card__odometer.odometer {
  font-family: var(--font-family) !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  color: #1a2b5e !important;
  line-height: 1 !important;
}

.why-card__odometer .odometer-inside,
.why-card__odometer .odometer-digit,
.why-card__odometer .odometer-digit-inner,
.why-card__odometer .odometer-digit-spacer {
  font-family: var(--font-family) !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  color: #1a2b5e !important;
  line-height: 1 !important;
  letter-spacing: 0;
}

.why-card__suffix {
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}

.why-card__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--paragraph);
  line-height: 1.45;
  display: block;
}

/* Yellow icon */
.why-card__icon {
  font-size: 66px;
  color: var(--secondary);
  line-height: 1;
  flex-shrink: 0;
}

/* ── Stats strip layout ── */
.why-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* Stats ticker — full-width infinite scroll (below 1200px only via d-xl-none) */
.why-stats-ticker {
  overflow: hidden;
  width: 100%;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.why-stats-ticker__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: whyStatTicker 22s linear infinite;
}

.why-stats-ticker .why-stat {
  flex: 0 0 auto;
  min-width: 190px;
}

@keyframes whyStatTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.why-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  flex: 1;
  gap: 14px;
}

.why-stat__wfc-icon {
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.why-stat__body {
  display: flex;
  flex-direction: column;
}

.why-stat__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.why-stat__icon--red {
  background: rgba(249, 60, 43, 0.10);
  color: #F93C2B;
}

.why-stat__icon--yellow {
  background: rgba(214, 158, 0, 0.12);
  color: #D4A000;
}

.why-stat__icon--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
}

.why-stat__icon--purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8B5CF6;
}

.why-stat__icon--green {
  background: rgba(34, 197, 94, 0.12);
  color: #16A34A;
}

.why-stat__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.why-stat__num {
  font-size: 31px;
  font-weight: 600;
  color: #000;
  line-height: 1;
  font-family: "Poppins", sans-serif !important;
}

/* Odometer override — the minimal theme brings its own font-family, line-height
   and vertical-align; reset them so the rolling digits sit exactly where the
   static number did (the spacer selector matches the theme's specificity) */
.why-stat__num.odometer {
  font-family: inherit;
  line-height: 1;
}

.why-stat__num.odometer .odometer-digit,
.why-stat__num.odometer .odometer-digit .odometer-digit-spacer {
  vertical-align: baseline;
}

.why-stat__suffix {
  font-size: 27px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.why-stat__label {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}

.why-stat__divider {
  width: 1px;
  height: 50px;
  background: #e2e6ee;
  flex-shrink: 0;
  margin: 0 8px;
}

/* CTA yellow card */
.why-card--cta {
  background: #FFBC00;
  background: linear-gradient(111deg, rgba(255, 188, 0, 1) 0%, rgba(200, 147, 0, 1) 100%);
  justify-content: space-between;
  padding: 15px 20px;
}

.why-card__cta-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 15px;
  max-width: 220px;
}

.border-btn {
  border: 2px solid #fff;
  color: #fff;
  width: max-content;
}

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


/* ========================================
   BLOCK 12 — Platform Banner (Yellow CTA)
   ======================================== */

.platform-banner {
  background: #FFBC00;
  background: linear-gradient(111deg, rgba(255, 188, 0, 1) 0%, rgba(200, 147, 0, 1) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px 0;
}

.platform-banner__content {
  position: relative;
  z-index: 2;
}

.platform-banner__title {
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.platform-banner__subtitle {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 760px;
}



/* Right image — bleeds outside container, bottom-aligned */
.platform-banner__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.platform-banner__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}


/* ========================================
   BLOCK 13 — Careers Section
   ======================================== */

.careers-section {
  background: var(--white);
}

/* ── Section header: text left, arrow pill right ── */
.careers-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.careers-section__title {
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 10px;
}

.careers-section__title strong {
  font-weight: 700;
}

.careers-section__subtitle {
  color: var(--paragraph);
  margin: 0;
}

/* ── Tabs row: nav left + arrow pill right ── */
.careers-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* ── Careers tab dropdown (mobile replacement for pill tabs) ── */
.careers-tab-dropdown {
  display: none;
  position: relative;
  width: 100%;
}

.careers-tab-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  gap: 8px;
  transition: border-color 0.2s;
}

.careers-tab-dropdown__trigger:hover {
  border-color: var(--primary);
}

.careers-tab-dropdown__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.careers-tab-dropdown__label i {
  font-size: 16px;
  color: var(--primary);
}

.careers-tab-dropdown__arrow {
  font-size: 18px;
  color: #888;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.careers-tab-dropdown__arrow.open {
  transform: rotate(180deg);
}

.careers-tab-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 16px;
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.careers-tab-dropdown__menu.open {
  display: block;
}

.careers-tab-dropdown__menu li button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.careers-tab-dropdown__menu li button:hover,
.careers-tab-dropdown__menu li button.active {
  background: #fff5f5;
  color: var(--primary);
}

.careers-tab-dropdown__menu li button i {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Arrow pill (same style as testimonials) ── */
.careers-arrow-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E3E3E3;
  border-radius: 50px;
  overflow: hidden;
  background: transparent;
}

.careers-arrow-btn {
  width: 50px;
  height: auto;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  color: var(--heading);
  transition: background 0.2s;
  line-height: 1;
}


.careers-arrow-divider {
  width: 1px;
  height: 36px;
  background: #E3E3E3;
  flex-shrink: 0;
}

/* ── Bootstrap Nav Tabs (pill style) ── */
.careers-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.careers-nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  white-space: nowrap;
}

.careers-nav-tab.active,
.careers-nav-tab:hover {
  border-color: var(--heading);
  color: var(--heading);
  border: 1px solid #3b3b3b21;
  font-weight: 600;
  opacity: 1;
}

/* ── Tab reveal animation ── */
@keyframes careersReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.careers-tab-content .tab-pane {
  /* Bootstrap uses opacity 0 + display:none for fade; we override timing */
  transition: opacity 0.3s ease;
}

/* Slide-up + fade-in when the pane becomes active */
.careers-tab-content .tab-pane.show.active {
  animation: careersReveal 0.38s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* ── Careers Swiper ── */
.careers-swiper {
  overflow: visible;
}

.careers-swiper .swiper-slide {
  /* ~4 cards visible, slight peek of 5th */
  align-self: flex-end;
  /* bottom-align so featured card extends up */
}

/* ── Cards row (legacy, keep for safety) ── */
.careers-cards-row {
  align-items: flex-end;
}

/* ── Regular career card ── */
.career-card {
  background: var(--white);
  border: 1.5px solid #EBEBEB;
  border-radius: 20px;
  overflow: hidden;
  height: 464px;
  position: relative;
  /* anchor for absolute children */
  cursor: pointer;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.career-card:hover {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.14);
}

/* ── Top section: title + yellow arrow ── */
.career-card__top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 20px 0 22px;
  transition: opacity 0.4s ease;
  background: transparent;
  /* transparent so image shows through */
}

/* Fade title section out on hover — pure opacity, no movement */
.career-card:not(.career-card--featured):hover .career-card__top {
  opacity: 0;
  pointer-events: none;
}

.career-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
  margin: 0;
  flex: 1;
}

/* Yellow circle arrow */
.career-card__arrow-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--secondary);
  border: none;
  display: flex;
  font-weight: 300;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.career-card__arrow-btn:hover {
  background: var(--primary);
  transform: scale(1.08);
}

/* ── Image wrap: fills full card at all times ── */
.career-card__img-wrap {
  position: absolute;
  inset: 0;
  /* covers the whole card */
  overflow: hidden;
}

/* Both images fill the wrap completely, stacked on top of each other */
.career-card__img {
  position: absolute;
  /* inset: 0; */
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
  bottom: -20px;
}

/* Default image (card-open-img.png) — on top, fully visible */
.career-card__img--default {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.45s ease;
}

/* Hover image (hover-img.jpg) — beneath, invisible until hover */
.career-card__img--hover {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.45s ease;
  inset: 0;
  height: 100%;
}

/* On hover: cross-fade — default out, hover in */
.career-card:not(.career-card--featured):hover .career-card__img--default {
  opacity: 0;
}

.career-card:not(.career-card--featured):hover .career-card__img--hover {
  opacity: 1;
}

/* ── Dark gradient overlay — fades in on hover ── */
.career-card:not(.career-card--featured)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.38) 45%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 4;
  pointer-events: none;
  border-radius: 18px;
}

.career-card:not(.career-card--featured):hover::after {
  opacity: 1;
}

/* ── Hover info block — slides up + fades in ── */
.career-card__hover-info {
  position: absolute;
  bottom: 26px;
  left: 22px;
  right: 22px;
  z-index: 5;
  pointer-events: none;
}

/* Title — animates first */
.career-card__hover-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}

/* Paragraph — animates just after title (extra 0.08s delay) */
.career-card__hover-desc {
  font-size: 15px;
  color: rgb(255 255 255);
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease 0.18s, transform 0.35s ease 0.18s;
  font-weight: 400;
  max-width: 300px;
}

/* On hover: title slides up first, paragraph follows */
.career-card:not(.career-card--featured):hover .career-card__hover-title,
.career-card:not(.career-card--featured):hover .career-card__hover-desc {
  opacity: 1;
  transform: translateY(0);
}


/* Featured card: subtle image zoom on hover */
.career-card--featured:hover .career-card__full-img {
  transform: scale(1.04);
}

.career-card__full-img {
  transition: transform 0.5s ease;
}

/* ── Featured card (full-image with overlay) ── */
.career-card--featured {
  /* taller than regular cards */
  border: none;
  position: relative;
  overflow: hidden;
}

/* Full background image */
.career-card__full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Arrow button — absolute top-right on featured card */
.career-card__arrow-btn--abs {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}

/* Dark gradient overlay + text at bottom */
.career-card__featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
  padding: 60px 22px 26px;
  z-index: 2;
}

.career-card__featured-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.career-card__featured-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
}


/* ========================================
   BLOCK 14 — Partners Section (Step Cards)
   ======================================== */

.partners-section {
  background: #F8F8F8;
}

.partner-padding-home {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

.partners-section__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.25;
  text-align: center;
  margin: 0 auto 12px;
  max-width: 930px;
}

.partners-section__title strong {
  font-weight: 700;
}

.partners-section__subtitle {
  color: var(--paragraph);
  text-align: center;
  margin-bottom: 60px;
}

/* Staggered row */
/* Offset even columns down for stagger effect */
.partner-col--offset {
  margin-top: 106px;
}

/* Gradient glow outer wrapper */
.partner-step__outer {
  border-radius: 20px;
  padding: 20px;
  z-index: 2;
  position: relative;
  height: 100%;
}

.bihind-line {
  position: absolute;
  top: 150px;
  width: 70%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* Yellow glow — cards 1 & 3: fades from top */
.partner-step__outer--yellow {
  background: linear-gradient(180deg,
      rgba(255, 188, 0, 0.55) 0%,
      rgba(255, 210, 80, 0.25) 38%,
      rgba(255, 240, 180, 0.06) 70%,
      rgba(255, 255, 255, 0) 100%);
}

.ab-what-steps {
  --bs-gutter-x: 3rem;
}

/* Red glow — cards 2 & 4: fades from bottom */
.partner-step__outer--red {
  background: linear-gradient(0deg,
      rgba(230, 62, 59, 0.45) 0%,
      rgba(245, 120, 110, 0.22) 38%,
      rgba(255, 200, 195, 0.06) 70%,
      rgba(255, 255, 255, 0) 100%);
}

/* White inner card */
.partner-step__card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 28px 36px;
  border: 1px solid #EFEFEF;
  height: 100%;
}

/* Icon */
.partner-step__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.partner-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text */
.partner-step__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.partner-step__desc {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.7;
  margin: 0;
}

/* Curved connector SVG between cards */
.partner-step__connector {
  flex: 0 0 90px;
  width: 90px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
}

.partner-step__connector svg {
  width: 90px;
  height: 140px;
  flex-shrink: 0;
}


/* ========================================
   BLOCK 15 — Teams Section
   ======================================== */

.teams-section {
  background: var(--white);
}


.teams-section__eyebrow {
  font-weight: 300;
  color: var(--paragraph);
  margin-bottom: 8px;
}

.teams-section__title {
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

.teams-section__title strong {
  font-weight: 700;
}

/* Rating badges row */
.teams-section__ratings {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: end;
}

.teams-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid #e4e4ec;
  border-radius: 14px;
  padding: 10px 12px;
}

.teams-rating__logo {
  height: 30px;
  width: 91px;
  display: block;
  object-fit: contain;
}

.teams-rating__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 5px;
  white-space: nowrap;
  line-height: 1;
}

.teams-rating__badge i {
  font-size: 14px;
}

/* ── Swiper student slider ── */
.teams-swiper {
  width: 100%;
  overflow: visible;
  padding: 10px 0 20px;
  margin-top: 0;
}

/* All slides: inactive state — dimmed + scaled down */
.teams-swiper .swiper-slide {
  opacity: 0.35;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Visible slides: full opacity + scale */
.teams-swiper .swiper-slide-visible {
  opacity: 1;
  transform: scale(1);
}

/* Individual student card */
.teams-student {
  position: relative;
  width: auto;
}

.teams-student__photo {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Company badge at bottom of card */
.teams-student__badge {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  /* backdrop-filter: blur(6px); */
  border-radius: 20px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid #D8D8D8;
  width: auto;
  height: 36px;
}

.teams-student__company-logo {
  height: 20px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Text-based company badges */
.teams-student__badge--text {
  font-size: 12px;
  font-weight: 700;
}

.teams-student__badge--accenture {
  color: #a100ff;
}

.teams-student__badge--deloitte {
  color: #222;
}


/* ========================================
   BLOCK 16 — Partnership Section
   ======================================== */

.partnership-section {
  background: #fff;
  padding-top: 0;
}

/* Outer red rounded card */
.partnership-card {
  background: linear-gradient(135deg, #F93C2B 0%, #8E0C00 100%) !important;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 20px;
}

/* Left panel — red */
.partnership-card__left {
  flex: 0 0 58%;
  min-width: 0;
  padding: 0px 58px 0px 20px;
  display: flex;
  flex-direction: column;
}

.partnership-card__title {
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.partnership-card__title strong {
  font-weight: 700;
}

.partnership-card__desc {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Bootstrap nav tabs — overridden as pill buttons on red bg ── */
.partnership-nav {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: none !important;
  margin-bottom: 28px;
  padding: 0;
}

.partnership-nav .nav-item {
  margin: 0;
}

.partnership-nav .nav-link {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.38) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  padding: 8px 20px;
  border-radius: 50px !important;
  cursor: pointer;
  line-height: 1.4;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.partnership-nav .nav-link:hover {
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: var(--white) !important;
}

.partnership-nav .nav-link.active,
.partnership-nav .nav-link:focus {
  background: transparent !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
  font-weight: 600;
  box-shadow: none !important;
}

/* ── Tab content wrapper ── */
.partnership-tab-content {
  margin-top: auto;
  min-width: 0;
  width: 100%;
}

/* Smooth fade override — slightly slower for a polished feel */
.partnership-tab-content .tab-pane {
  transition: opacity 0.35s ease;
}

/* Logos panel — 4-col grid inside white rounded card */
.partnership-logos {
  background: var(--white);
  border-radius: 10px;
  padding: 0px 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 88%;
  align-items: center;
}

/* Individual logo cell */
.partnership-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 11px;
  min-height: 90px;
}

/* Logo image — constrained height, natural ratio */
.partnership-logo__img {
  max-width: 100%;
  max-height: 83px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.2s ease;
}

.partnership-logo__img:hover {
  filter: grayscale(0%);
}

/* "Sector skills councils partnerships" tab — only 2 logos, so they're
   centered instead of left-packed into the 4-col grid. Kept as its own
   modifier so the Government (4-col grid) and Other (slider) tabs are
   unaffected. */
.partnership-logos--center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* "Other partnerships" tab — autoplay slider (4 visible at a time, 10
   logos total) instead of the static 4-col grid used by the other tabs. */
.partnership-logos--slider {
  display: block;
  overflow: hidden;
}

.partner-other-swiper {
  width: 100%;
}

.partner-other-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 11px;
  min-height: 90px;
}

/* Dummy placeholder for partner logos */
.partner-placeholder {
  width: 100%;
  min-height: 80px;
  background: #f2f2f5;
  border-radius: 8px;
  border: 1.5px dashed #d0d0da;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #aaaabc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 12px;
}

.partner-placeholder i {
  font-size: 24px;
}

/* ── Right panel — white, inset ── */
.partnership-card__right {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 23px 23px;
  display: flex;
  flex-direction: column;
  height: 100%;

}

.partnership-form__title {
  font-weight: 300;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 17px;
}

.partnership-form__title strong {
  font-weight: 700;
}

/* Form */
.partnership-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partnership-form__input {
  width: 100%;
  border: 1.5px solid #e4e4e4;
  border-radius: 50px;
  padding: 13px 22px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--heading);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.partnership-form__input::placeholder {
  color: #b0b0b0;
}

.partnership-form__input:focus {
  border-color: var(--primary);
  background: var(--white);
}

.partnership-form__row {
  display: flex;
  gap: 12px;
}

.partnership-form__row .partnership-form__input {
  flex: 1;
  min-width: 0;
}

/* Submit button — yellow pill, white circle icon (same as who-for section) */
.partnership-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--secondary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  padding: 7px 24px 7px 7px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s ease, transform 0.15s ease;
  margin-top: 6px;
}

.partnership-form__btn i {
  font-weight: 400;
}

.partnership-form__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.partnership-form__btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  transition: color 0.2s ease;
  line-height: 1;
}

.partnership-form__disclaimer {
  font-size: 12px;
  color: #000;
  margin-top: 16px;
  line-height: 1.6;
}


/* ========================================
   BLOCK 17 — Companies Section
   ======================================== */

.companies-section {
  background: #FFFBF2;
}

/* ── 3-col flex layout: [floats-left] [content] [floats-right] ── */
.companies-section__layout {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* Left / Right float columns */
.companies-floats {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: absolute;
}

.companies-floats--left {
  padding-left: 16px;
  left: 0;
}

.companies-floats--right {
  padding-right: 16px;
  right: -290px;
}




/* Float images */
.float-img {
  width: 77%;
  display: block;
}


/* Keyframe animations */
@keyframes floatBobUp {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-22px);
  }
}

@keyframes floatBobDown {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(22px);
  }
}

.float-img--up {
  animation: floatBobUp 5s ease-in-out infinite;
}

.float-img--down {
  animation: floatBobDown 5s ease-in-out infinite;
  animation-delay: 2.5s;
}

/* ──────────────────────────────────────────
   Testimonial Float Card
   ────────────────────────────────────────── */
.testi-card {
  position: relative;
  width: 100%;
  /* height driven by photo-wrap; quote-box absolutely overlaps */
}

/* ── Student photo block (right ~70%, gradient bg) ── */

.testi-card__photo {
  width: 77%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── Company logo badge (floats top-right of photo) ── */
.testi-card__company-badge {
  position: absolute;
  top: 20px;
  right: 6px;
  background: var(--white);
  border-radius: 14px;
  padding: 8px 14px 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
}

.testi-card__badge-logo {
  height: 22px;
  width: auto;
  display: block;
}

.testi-card__badge-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
}

/* ── White quote card (overlaps from left, centred vertically) ── */
.testi-card__quote-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-42%);
  width: 72%;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 18px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.11);
  z-index: 3;
}

.testi-card__quote-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.testi-card__quote-text {
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

/* Yellow double-quote mark */
.testi-card__quote-mark {
  font-size: 34px;
  font-weight: 900;
  color: var(--secondary);
  line-height: 0.75;
  flex-shrink: 0;
}

/* Red pill — student name */
.testi-card__name-pill {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  white-space: nowrap;
}

/* ── Center content ── */
.companies-section__content {
  flex: 1;
  min-width: 0;
  padding: 0 28px;
}

/* Section heading */


.companies-section__title strong {
  font-weight: 800;
}

.companies-section__subtitle {
  font-size: 16px;
  color: var(--paragraph);
  margin-bottom: 0;
}

/* Each pill row — static, centered, wraps naturally */
.companies-pills-row {
  margin-bottom: 50px;
}

.companies-pills-row:last-of-type {
  margin-bottom: 0;
}

.companies-pills-row__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  width: auto;
}

.companies-pills-row__track [aria-hidden="true"] {
  display: none;
}

@keyframes companies-pills-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Individual pill */
.company-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 20px;
  padding: 18px 34px;
  min-width: 180px;
  height: 90px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 7%);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.company-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Logo image inside pill */
.company-pill img {
  height: 56px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

/* CTA buttons row */
.companies-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}


/* ── Companies Marquee — below 1200px only ── */
.companies-marquee {
  display: none;
}

.companies-marquee__mobile {
  display: none;
}

/* CTA buttons now at section level — always visible */
.companies-section>.companies-actions {
  padding: 0 28px 0px;
}

@media (max-width: 1199px) {
  .companies-pills-row {
    display: none !important;
  }

  .companies-marquee {
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 16px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .companies-marquee__track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: companies-marquee 30s linear infinite;
  }

  .companies-marquee__track:hover {
    animation-play-state: paused;
  }

}

@media (max-width: 991px) {
  .cd-fees__easy-wrap {
    padding: 0px 23px 23px;
    gap: 20px;
    flex-direction: column-reverse;
  }
}

@keyframes companies-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ========================================
   BLOCK 18 — Awards Section
   ======================================== */

.awards-section {
  background: #fff;
}

/* Force all 6 cards to equal height */
.awards-row {
  align-items: stretch;
}

/* Section heading */


.awards-section__subtitle {
  font-size: 16px;
  color: var(--paragraph);
  margin-bottom: 0;
}

/* Award card */
.award-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid #F0F0F0;
  box-shadow: 0px 14px 20px 7px rgb(0 0 0 / 4%);
  overflow: hidden;
  height: 100%;
  display: flex;
  padding: 12px;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.awards-row {
  --bs-gutter-x: 2rem;
}

.award-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

/* Image block — light grey bg */
.award-card__img-wrap {
  background: #F6F6F6;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 6px;
  min-height: 110px;
}

.award-card__img {
  width: 79%;
  max-width: 100%;
  height: 78px;
  object-fit: contain;
  display: block;
}

/* Text body */
.award-card__body {
  padding: 18px 0px 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  text-align: center;
}

.award-card__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.45;
  margin: 0;
}

.award-card__sub {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  line-height: 1.55;
  margin: 0;
}


/* ========================================
   BLOCK 19 — Testimonials Section
   ======================================== */

.testimonials-section,
.testimonials-section2 {
  background: url(../img/ehhb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Section header: title left, arrows right ── */
.testimonials-header,
.testimonials-header2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

/* ── Custom nav arrow — single pill split by vertical divider ── */
.testimonials-header__nav,
.testimonials-header2__nav {
  flex-shrink: 0;
}

/* Outer pill container */
.testi-nav-pill,
.testi-nav-pill2 {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E3E3E3;
  border-radius: 50px;
  overflow: hidden;
  background: transparent;
}

/* Each arrow half */
.testi-nav-btn,
.testi-nav-btn2 {
  width: 50px;
  height: auto;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  color: var(--heading);
  transition: background 0.2s;
  line-height: 1;
}



/* Vertical divider line between the two buttons */
.testi-nav-pill__divider,
.testi-nav-pill2__divider {
  width: 1px;
  height: 36px;
  background: #E3E3E3;
  flex-shrink: 0;
}



/* ── Swiper overflow wrapper ── */

.testimonials-swiper,
.testimonials-swiper2 {
  overflow: visible;
}

/* Card 2 has no photo forcing a consistent height, so stretch every
   slide to match the tallest quote instead of sizing to its own content */
.testimonials-swiper2 .swiper-wrapper {
  align-items: stretch;
}

.testimonials-swiper2 .swiper-slide {
  height: auto;
}

.swiper-wrapper {
  transition: transform 3s cubic-bezier(.77, 0, .18, 1);

}


/* ── Testimonial slide card ── */
.testi-slide-card,
.testi-slide-card2 {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 370px;
  padding: 32px 32px 32px;
  gap: 50px;
  position: relative;
  box-shadow: 0px 20px 20px 20px #00000003;
  border: 2px solid #e9e9e9;
}

/* Fill the stretched swiper-slide so every card matches the tallest one */
.testi-slide-card2 {
  height: 100%;
}

/* Left: student photo — light cream bg matches the cut-out images */
.testi-slide-card__photo {
  /* width: 42%; */
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.testi-slide-card__stars,
.testi-slide-card2__stars {
  margin-bottom: 24px;
  width: max-content;
  border: 1px solid #F0F0F0;
  border-radius: 50px;
  padding: 10px 19px;
}

.testi-slide-card__img {
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Separate image slot for mobile (<768px) — swapped via responsive.css */
.testi-slide-card__img--mobile {
  display: none;
}

/* Right: text body */
.testi-slide-card__body,
.testi-slide-card2__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

/* Stars row */
.testi-slide-card__stars,
.testi-slide-card2__stars {
  margin-bottom: 11px;
}

/* Stars inside a bordered pill/capsule */
.testi-slide-card__stars-pill,
.testi-slide-card2__stars-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid #E0E0E0;
  border-radius: 50px;
  padding: 8px 18px;
  background: var(--white);
}

.testi-slide-card__stars-pill i,
.testi-slide-card2__stars-pill i {
  font-size: 18px;
  color: var(--secondary);
}

/* Review text */
.testi-slide-card__quote,
.testi-slide-card2__quote {
  font-size: 22px;
  line-height: 1.7;
  color: var(--heading);
  flex: 1;
  margin-bottom: 40px;
  padding-right: 37px;
  text-transform: capitalize;
}

/* Author line */
.testi-slide-card__author {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 15px;
}

.testi-slide-card__dash {
  color: var(--heading);
  font-weight: 700;
}

/* Card 2 — thumbnail avatar next to name, course name below */
.testi-slide-card2__author {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 19px;
}

.testi-slide-card2__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-slide-card2__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-slide-card__name,
.testi-slide-card2__name {
  font-weight: 700;
  color: var(--heading);
}

.testi-slide-card__role,
.testi-slide-card2__role {
  color: var(--paragraph);
  font-size: 13px;
}

/* Large watermark slide number — bottom right */
.testi-slide-card__num,
.testi-slide-card2__num {
  position: absolute;
  bottom: 27px;
  right: 41px;
  font-size: 62px;
  font-weight: 700;
  font-style: italic;
  color: rgba(0, 0, 0, 0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}


/* ========================================
   BLOCK 20 — FAQ Section
   ======================================== */

.faq-section {
  background: url(../img/ehhb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.faq-section__subtitle {
  color: var(--paragraph);
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── Accordion — all items ── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  /* Kill Bootstrap's built-in accordion active tint at the variable level */
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: var(--heading);
  --bs-accordion-btn-active-icon: none;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: 1px solid transparent !important;
  /* border-bottom: 1px solid #E5E7EB !important; */
  border-radius: 14px !important;
  margin-bottom: 20px;
  overflow: hidden;
  transition: border 0.1s, border-radius 0.1s, margin 0.2s;
  border: 1px solid #00000012 !important;
}

/* Open item — full rounded border box */
.faq-accordion .accordion-item:has(.accordion-collapse.show) {
  background: var(--white) !important;
  border-radius: 14px !important;
  overflow: hidden;
}

/* Closed item after an open item — remove double border */
/* .faq-accordion .accordion-item:has(.accordion-collapse.show)+.accordion-item {
  border-top: none !important;
} */

/* Button base */
.faq-accordion .accordion-button {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading) !important;
  background: #ffffff !important;
  padding: 24px 30px 24px;
  box-shadow: none !important;
  outline: none !important;
  overflow: hidden;
}

/* Remove Bootstrap's active blue state */
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--heading) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Adjust padding when open (inside the bordered box) */
.faq-accordion .accordion-item:has(.accordion-collapse.show) .accordion-button {
  padding: 24px 30px;
}

.faq-accordion .accordion-item:has(.accordion-collapse.show) .accordion-body {
  padding: 0 100px 24px 30px;
}

/* ── Custom +/− icons — replace Bootstrap chevron ── */
.faq-accordion .accordion-button::after {
  background-image: none !important;
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--heading);
  width: auto;
  height: auto;
  transform: none !important;
  transition: none !important;
  line-height: 1;
  flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\2212';
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
}

.faq-accordion .accordion-body {
  font-size: 16px;
  color: var(--paragraph);
  line-height: 1.85;
  padding: 0 100px 24px 30px;
  border: none;
}

.faq-accordion .accordion-collapse {
  border: none;
}

/* ── Custom cd-faq design (shared with course-detail) ── */
.cd-faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-top: 40px;
}

.cd-faq-col {
  display: flex;
  flex-direction: column;
}

.cd-faq-item {
  margin-bottom: 10px;
}

.cd-faq-btn {
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  font-family: 'Satoshi', sans-serif;
}

.cd-faq-btn:hover {
  background: #fafafa;
}

.cd-faq-btn.open {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  border-radius: 10px 10px 0 0;
}

.cd-faq-btn.open i {
  transform: rotate(45deg);
  color: #fff;
}

.cd-faq-btn i {
  transition: transform 0.25s;
  color: #aaa;
  font-size: 18px;
  flex-shrink: 0;
}

.cd-faq-body {
  display: none;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--paragraph);
  line-height: 1.7;
}

.cd-faq-body.open {
  display: block;
}

/* Mobile FAQ — flat single list (below 767px only) */
.cd-faq-mobile {
  display: none;
}

@media (max-width: 767px) {
  .cd-faq-wrap {
    grid-template-columns: 1fr;
  }

  .faq-section .cd-faq-wrap,
  .cd-faq-section .cd-faq-wrap {
    display: none !important;
  }

  .cd-faq-mobile {
    display: block;
    margin-top: 40px;
  }
}

/* ========================================
   BLOCK 21 — Consult Banner (Bottom CTA)
   ======================================== */

.consult-banner {
  background: #FFBC00;
  background: linear-gradient(300deg, rgba(255, 188, 0, 1) 0%, rgba(200, 147, 0, 1) 100%);
  /* overflow: hidden; */
  padding: 100px 0;
  position: relative;
}

/* ── Left Text ── */

.consult-banner__title {
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 18px;
}



.consult-banner__subtitle {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 450px;
}

.consult-banner__btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.22s;
}

.consult-banner__btn:hover {
  opacity: 0.88;
  color: var(--white);
}

/* ── Right Visual ── */
.consult-banner__visual {
  position: absolute;
  bottom: 0;
  right: 0px;
}

.consult-banner__img {
  /* height: 115%; */
  /* max-height: 480px; */
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  top: 0;
  width: 90%;
}

/* ── Chat Bubbles ── */
.consult-bubble {
  position: absolute;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.consult-bubble--dark {
  background: rgba(18, 18, 18, 0.80);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.consult-bubble--white {
  background: var(--white);
  color: var(--heading);
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

/* Staggered positions over the visual area */
.consult-bubble--1 {
  top: 10%;
  left: 2%;
}

.consult-bubble--2 {
  top: 40%;
  left: 0%;
}

.consult-bubble--3 {
  bottom: 28%;
  left: 4%;
}

/* ── Floating Icon Circles ── */
.consult-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  z-index: 2;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.consult-icon--orange {
  background: #F97316;
}

.consult-icon--blue {
  background: #2563EB;
}

.consult-icon--1 {
  bottom: 26%;
  left: 28%;
}

.consult-icon--2 {
  top: 6%;
  right: 4%;
}

/* ── Decorative Dots & Ring ── */
.consult-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  z-index: 1;
}

.consult-dot--sm {
  width: 7px;
  height: 7px;
}

.consult-dot--md {
  width: 10px;
  height: 10px;
}

.consult-dot--1 {
  top: 26%;
  left: 44%;
}

.consult-dot--2 {
  bottom: 22%;
  left: 36%;
}

.consult-dot--3 {
  top: 52%;
  right: 6%;
}

.consult-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  z-index: 1;
}

.consult-ring--1 {
  width: 38px;
  height: 38px;
  top: 14%;
  left: 50%;
}

.consult-banner__person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ========================================
   BLOCK 22 — Footer
   ======================================== */

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--white);
  border-top: 1px solid #EBEBEB;
}

.site-footer__main {
  padding: 100px 0 100px;
}

/* ── Logo ── */
.site-footer__brand-logo img {
  width: 150px;
  margin-bottom: 20px;
  /* background-color: #fff;
  padding: 9px;
  border-radius: 10px; */
}

.site-footer__brand-logo .logo-edu {
  background: var(--primary);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 20px;
}

.site-footer__brand-logo .logo-jobs {
  color: #1A8A2E;
  font-size: 20px;
}

.site-footer__skilling {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #9CA3AF;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* ── Newsletter ── */
.footer-newsletter {
  margin-bottom: 32px;
}

.footer-newsletter__title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.footer-newsletter__desc {
  font-size: 14px;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.footer-newsletter__form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-newsletter__input-wrap {
  flex: 0.85;
  position: relative;
  display: flex;
  align-items: center;
}

.footer-newsletter__icon {
  position: absolute;
  left: 20px;
  width: 20px;
  height: auto;
  pointer-events: none;
  display: block;
}

.footer-newsletter__input {
  width: 100%;
  padding: 11px 20px 11px 52px;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  font-size: 15px;
  color: var(--heading);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter__input:focus {
  border-color: var(--primary);
}

.footer-newsletter__input::placeholder {
  color: #C4CAD4;
}

.footer-newsletter__btn {
  padding: 12px 25px;
  background: #F97316;
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.footer-newsletter__btn:hover {
  background: #ea6a0b;
}

/* ── Membership ── */
.footer-membership__title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.footer-membership__logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-membership__img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* ── Link Columns ── */
.site-footer__widget-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 22px;
}

.site-footer__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__link-list li {
  margin-bottom: 14px;
}

.site-footer__link-list a {
  font-size: 14px;
  color: #000000;
  transition: color 0.2s;
  text-decoration: none;
  font-weight: 300;
}

.site-footer__link-list a:hover {
  color: var(--primary);
}

/* ── Bottom Bar ── */
.site-footer__bottom {
  border-top: 1px solid #E5E7EB;
  padding: 24px 0;
  background: var(--white);
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-footer__copyright p {
  font-size: 13px;
  color: #374151;
  margin: 0;
  line-height: 1.7;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 86px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__legal a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__legal a:hover {
  color: var(--primary);
}


/* ========================================
   BLOCK 23 — Course Detail Page
   ======================================== */


/* ---- CD Hero ---- */
.cd-hero {
  background: url(../img/hero-bg.jpg) center center / cover no-repeat;
  padding: 200px 0 100px;
  position: relative;
  overflow: visible;
  background-position: bottom;
}

.cd-hero .container {
  position: relative;
  z-index: 2;
}

.cd-hero__content {
  padding-right: 20px;
}

.cd-hero__title {
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 14px;
}

.cd-hero__subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Action buttons */
.cd-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Course meta grid */
.cd-hero__meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 24px 56px;
  margin-bottom: 44px;
  justify-content: start;
}

.cd-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cd-hero__meta-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cd-hero__meta-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
}

/* Feature pills */
.cd-hero__pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 580px;
}

.cd-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 20px;
  line-height: 1.35;
  flex: 1;
}

.cd-hero__pill:first-child {
  flex: 1.6;
}

.cd-hero__pill:nth-child(2) {
  flex: 1.4;
}

.cd-hero__pill:last-child {
  flex: 1.9;
}

.cd-hero__pill-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgb(255 255 255 / 20%);
}

.cd-hero__pill-svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.cd-hero__pill span:not(.cd-hero__pill-icon) {
  display: block;
  white-space: normal;
}

/* ── Form card ── */
.cd-hero__form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px 24px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 3;
  margin-left: 110px;
}

.cd-hero__form-group {
  margin-bottom: 18px;
}

.cd-hero__form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}

/* ── Pill inputs ── */
.cd-field {
  width: 100%;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #F3F3F3;
  border-radius: 50px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--heading);
  outline: none;
  transition: background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.cd-field:focus {
  background: #EAECF0;
}

.cd-field::placeholder {
  color: #9CA3AF;
}

/* ── Phone row ── */
.cd-phone-row {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #F3F3F3;
  border-radius: 50px;
  overflow: visible;
  padding: 6px 6px 6px 8px;
  gap: 6px;
}

/* ── Country dropdown ── */
.cd-country-dropdown {
  position: relative;
  flex-shrink: 0;
}

.cd-country-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 6px 8px 10px;
  cursor: pointer;
  user-select: none;
  border-radius: 50px;
  transition: background 0.15s;
}

.cd-country-trigger:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cd-phone-flag {
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.cd-phone-flag .fi {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  background-size: cover;
}

.cd-country-option .fi {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cd-phone-code {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  white-space: nowrap;
}

.cd-country-arrow {
  font-size: 16px;
  color: #9CA3AF;
  transition: transform 0.2s;
}

.cd-country-dropdown.open .cd-country-arrow {
  transform: rotate(180deg);
}

.cd-country-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  z-index: 200;
  min-width: 180px;
  max-height: 200px;
  overflow-y: auto;
}

.cd-country-dropdown.open .cd-country-list {
  display: block;
}

.cd-country-option {
  padding: 9px 16px;
  font-size: 13px;
  color: var(--heading);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.cd-country-option:hover {
  background: #F3F4F6;
}

.cd-country-option.selected {
  color: var(--primary);
  font-weight: 600;
  background: rgba(230, 62, 59, 0.05);
}

.cd-phone-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--heading);
  padding: 8px 4px;
  min-width: 0;
}

.cd-phone-input::placeholder {
  color: #9CA3AF;
}

.cd-otp-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-family);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.cd-otp-btn:hover {
  background: #c82f2c;
}

/* ── Nice Select (custom campus dropdown) ── */
.cd-nice-select {
  position: relative;
  user-select: none;
}

.cd-nice-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #F3F3F3;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  gap: 8px;
}

.cd-nice-select__trigger:hover {
  background: #EAECF0;
}

.cd-nice-select__text {
  font-size: 14px;
  color: #9CA3AF;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cd-nice-select__text--selected {
  color: var(--heading);
}

.cd-nice-select__arrow {
  font-size: 18px;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.cd-nice-select.open .cd-nice-select__arrow {
  transform: rotate(180deg);
}

.cd-nice-select__list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 100;
  max-height: 220px;
  overflow-y: auto;
}

.cd-nice-select.open .cd-nice-select__list {
  display: block;
}

.cd-nice-select__option {
  padding: 11px 20px;
  font-size: 14px;
  color: var(--heading);
  cursor: pointer;
  transition: background 0.15s;
}

.cd-nice-select__option:hover {
  background: #F3F4F6;
}

.cd-nice-select__option.selected {
  color: var(--primary);
  font-weight: 600;
  background: rgba(230, 62, 59, 0.05);
}

.cd-select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #9CA3AF;
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* ── Disclaimer with custom checkbox ── */
.cd-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin: 0;
  justify-content: center;
}

.cd-disclaimer__check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cd-disclaimer__box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 1px;
}

.cd-disclaimer__tick {
  font-size: 13px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.cd-disclaimer__check:checked+.cd-disclaimer__box {
  background: var(--primary);
  border-color: var(--primary);
}

.cd-disclaimer__check:checked+.cd-disclaimer__box .cd-disclaimer__tick {
  opacity: 1;
  transform: scale(1);
}

.cd-disclaimer__text {
  font-size: 12px;
  color: #000;
  line-height: 1.6;
}

.cd-disclaimer__text a {
  color: var(--heading);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Person image — absolute right */
.cd-hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
}

.cd-hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  opacity: 1;
}


/* ---- CD Program Info Strip ---- */
.cd-info-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}

.cd-info-strip__track-wrap {
  overflow: hidden;
  width: 100%;
}

.cd-info-strip__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: cd-strip-scroll 40s linear infinite;
  will-change: transform;
}

.cd-info-strip__track:hover {
  animation-play-state: paused;
}

@keyframes cd-strip-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cd-info-strip__card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 260px;
}

.cd-info-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.cd-info-strip__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cd-info-strip__label {
  font-size: 11.5px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cd-info-strip__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
}

/* ---- CD Program Overview ---- */
.cd-overview {
  background: var(--white);
  padding-bottom: 0;
}

.cd-overview__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cd-overview__title strong {
  font-weight: 700;
}

.cd-overview__heading {
  font-weight: 700;
  color: var(--heading);
  line-height: 1.5;
  margin-bottom: 24px;
}

.cd-overview__para {
  color: var(--paragraph);
  line-height: 1.8;
  margin: 0;
}

.cd-overview__img-wrap {
  border-radius: 20px;
}

.overview-padding {
  --bs-gutter-x: 5rem;
}

.cd-overview__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}


/* ---- CD Target Audience & Eligibility ---- */
.cd-eligibility {
  background: #e0e0e08f;
}

.cd-eligibility__header {
  margin-bottom: 40px;
}

.cd-eligibility__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
  text-align: start;
}

.cd-eligibility__title strong {
  font-weight: 700;
}

.cd-eligibility__table-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.cd-eligibility__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.cd-eligibility__table thead tr {
  background: var(--primary);
}

.cd-eligibility__table thead th {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 18px 28px;
  text-align: left;
}

.cd-eligibility__table tbody tr {
  border-bottom: 1px solid #F0F0F0;
  transition: background 0.15s ease;
}

.cd-eligibility__table tbody tr:last-child {
  border-bottom: none;
}

.cd-eligibility__table tbody tr:nth-child(even) {
  background: #FAFAFA;
}

.cd-eligibility__table tbody tr:hover {
  background: #FFF5EE;
}

.cd-eligibility__table tbody td {
  padding: 20px 28px;
  font-size: 15px;
  color: var(--heading);
  vertical-align: middle;
  line-height: 1.5;
}

.cd-eligibility__table tbody td:first-child {
  font-weight: 700;
  color: var(--dark);
  width: 35%;
}

.cd-eligibility__table tbody td:last-child {
  color: var(--paragraph);
  font-weight: 400;
  border-left: 1px solid #F0F0F0;
}

.cd-eligibility__label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cd-eligibility__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF0E6;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cd-eligibility__table thead {
    display: none;
  }

  .cd-eligibility__table,
  .cd-eligibility__table tbody,
  .cd-eligibility__table tr,
  .cd-eligibility__table td {
    display: block;
    width: 100%;
  }

  .cd-eligibility__table tbody tr {
    padding: 16px 20px;
    border-bottom: 1px solid #F0F0F0;
  }

  .cd-eligibility__table tbody td {
    padding: 6px 0;
    border-left: none !important;
  }

  .cd-eligibility__table tbody td:first-child {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 4px;
    width: 100%;
  }
}

/* ---- CD Program Structure ---- */
.cd-program-structure {
  background: #fff;
}

.cd-program-structure__header {
  margin-bottom: 40px;
  text-align: center;
}

.cd-program-structure__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.cd-program-structure__title strong {
  font-weight: 700;
}

.cd-program-structure__sub {
  font-size: 15px;
  color: var(--paragraph);
  margin: 0;
}

/* Table wrapper */
.cd-program-structure__table-wrap {
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
}

/* Table */
.cd-program-structure__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 1240px;
}

/* Header */
.cd-program-structure__table thead tr {
  background: #ffbc00;
}

.cd-program-structure__table thead th {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 24px;
  text-align: center;
  white-space: nowrap;
}

.cd-program-structure__table thead th:first-child {
  text-align: left;
}

/* Body rows */
.cd-program-structure__table tbody tr {
  border-bottom: 1px solid #dbdbdb;
  transition: background 0.15s ease;
  background-color: #dddddd47;
}

.cd-program-structure__table tbody tr:last-child {
  border-bottom: none;
}

.cd-program-structure__table tbody tr:nth-child(even) {
  background: #F8FAFF;
}

.cd-program-structure__table tbody tr:hover {
  background: #EBF2FF;
}

.cd-program-structure__table tbody td {
  padding: 18px 24px;
  font-size: 15px;
  color: var(--paragraph);
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid #dbdbdbab;
}

.cd-program-structure__table tbody td:first-child {
  border-left: none;
}

/* Phase name — left aligned, bold */
.cd-program-structure__phase {
  font-weight: 700;
  color: var(--dark);
  text-align: left !important;
  font-size: 15px;
}

/* Duration badge */
.cd-program-structure__badge {
  display: inline-block;
  background: #EBF2FF;
  color: #1B3FA0;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Numeric values — larger and bolder */
.cd-program-structure__num {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
}

/* ========================================
   CD Curriculum Modules Section
   ======================================== */
.cd-curriculum {
  background: #ffbc000d;
}

.cd-curriculum__header {
  margin-bottom: 40px;
}


.cd-curriculum__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0;
}

.cd-curriculum__title strong {
  font-weight: 700;
}

/* ── Accordion wrapper ── */
.cd-curriculum__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Accordion item ── */
.cd-curriculum__item {
  border: 1.5px solid #e8e4df;
  border-radius: 14px;
  overflow: hidden;
}

/* ── Trigger button ── */
.cd-curriculum__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
  text-align: left;
}

.cd-curriculum__trigger:hover {
  background: #fff8f3;
}

.cd-curriculum__trigger.active {
  background: #fafafa;
}

/* Left grouping: icon + label together */
.cd-curriculum__sem-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Book icon circle */
.cd-curriculum__sem-ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  transition: background 0.25s ease, color 0.25s ease;
}

.cd-curriculum__trigger.active .cd-curriculum__sem-ico {
  background: var(--primary);
  color: #fff;
}

.cd-curriculum__sem-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  transition: color 0.25s ease;
}

.cd-curriculum__trigger.active .cd-curriculum__sem-label {
  color: var(--primary);
}

/* ── Custom +/– icon ── */
.cd-curriculum__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ebe5;
  border: 1.5px solid #ddd6ce;
  transition: background 0.25s ease, border-color 0.25s ease;
  font-size: 18px;
  color: var(--heading);
  position: relative;
}

.cd-curriculum__trigger.active .cd-curriculum__icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Show minus when active, plus when collapsed */
.cd-curriculum__icon .minus-icon {
  display: block;
}

.cd-curriculum__icon .plus-icon {
  display: none;
}

.cd-curriculum__trigger:not(.active) .cd-curriculum__icon .minus-icon {
  display: none;
}

.cd-curriculum__trigger:not(.active) .cd-curriculum__icon .plus-icon {
  display: block;
}

/* ── Body panel ── */
.cd-curriculum__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  background: #fff;
  padding: 0 28px;
}

.cd-curriculum__body.open {
  max-height: 800px;
  padding: 0 28px 24px;
}

/* ── Paper list ── */
.cd-curriculum__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cd-curriculum__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--paragraph);
  border-bottom: 1px solid #f0ebe5;
  transition: color 0.2s ease;
  /* default hidden state — items start invisible */
  opacity: 0;
  transform: translateY(10px);
}

.cd-curriculum__list li:last-child {
  border-bottom: none;
}

.cd-curriculum__list li:hover {
  color: var(--heading);
}

/* ── Reveal animation triggered when panel is open ── */
@keyframes cd-row-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cd-curriculum__body.open .cd-curriculum__list li {
  animation: cd-row-reveal 0.35s ease forwards;
}

/* Staggered delays — up to 8 items per semester */
.cd-curriculum__body.open .cd-curriculum__list li:nth-child(1) {
  animation-delay: 0.08s;
}

.cd-curriculum__body.open .cd-curriculum__list li:nth-child(2) {
  animation-delay: 0.14s;
}

.cd-curriculum__body.open .cd-curriculum__list li:nth-child(3) {
  animation-delay: 0.20s;
}

.cd-curriculum__body.open .cd-curriculum__list li:nth-child(4) {
  animation-delay: 0.26s;
}

.cd-curriculum__body.open .cd-curriculum__list li:nth-child(5) {
  animation-delay: 0.32s;
}

.cd-curriculum__body.open .cd-curriculum__list li:nth-child(6) {
  animation-delay: 0.38s;
}

.cd-curriculum__body.open .cd-curriculum__list li:nth-child(7) {
  animation-delay: 0.44s;
}

.cd-curriculum__body.open .cd-curriculum__list li:nth-child(8) {
  animation-delay: 0.50s;
}

/* ── Type badges ── */
.cd-curriculum__badge {
  display: inline-block;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.cd-curriculum__badge--core {
  background: #fff0e6;
  color: var(--primary);
}

.cd-curriculum__badge--spec {
  background: #e8f0fe;
  color: #1a56db;
}

.cd-curriculum__badge--practical {
  background: #e6f9f0;
  color: #1a7a4a;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .cd-curriculum__trigger {
    padding: 18px 20px;
  }

  .cd-curriculum__body {
    padding: 0 20px;
  }

  .cd-curriculum__body.open {
    padding: 0 20px 20px;
  }

  .cd-curriculum__sem-label {
    font-size: 15px;
  }
}

/* ========================================
   CD Batch Operations Section
   ======================================== */
.cd-batch {
  padding: 90px 0;
  background: #fff;
}

.cd-batch__header {
  margin-bottom: 40px;
}

.cd-batch__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0;
}

.cd-batch__title strong {
  font-weight: 700;
}

/* Table wrapper */
.cd-batch__table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1.5px solid #e8e4df;
}

.cd-batch__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 690px;
}

/* Header row */
.cd-batch__table thead tr {
  background: var(--primary);
}

.cd-batch__table thead th {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.cd-batch__table thead th:first-child {
  width: 280px;
  border-radius: 0;
}

/* Body rows */
.cd-batch__table tbody tr {
  border-bottom: 1px solid #f0ebe5;
  transition: background 0.2s ease;
}

.cd-batch__table tbody tr:last-child {
  border-bottom: none;
}

.cd-batch__table tbody tr:nth-child(even) {
  background: #fff8f3;
}

.cd-batch__table tbody tr:hover {
  background: #fff0e6;
}

.cd-batch__table tbody td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.7;
  vertical-align: top;
}

.cd-batch__param {
  font-weight: 700;
  color: var(--heading) !important;
  white-space: nowrap;
}

/* ========================================
   CD Career Path & Placement Section
   ======================================== */
.cd-career {
  background: #f7f7f7;
}

/* Right col — section title + para */
.cd-career__content {
  margin-bottom: 45px;
}

.cd-career__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cd-career__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.cd-career__title strong {
  font-weight: 700;
}

.cd-career__para {
  font-size: 16px;
  color: var(--paragraph);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Left col — role groups */
.cd-career__roles {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cd-career__group-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 0;
}


/* Pills container */
.cd-career__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Individual pill */
.cd-career__pill {
  display: inline-block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  cursor: default;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.cd-career__pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 100, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
  .cd-career__content {
    padding-left: 0;
    text-align: center;
  }
}

/* ========================================
   CD Program Head Contact Section
   ======================================== */
.cd-advisor {
  width: 100%;
  overflow: hidden;
  padding-top: 0;
}

.cd-advisor__inner {
  display: flex;
  min-height: 320px;
  gap: 20px;
}

/* ── Left panel ── */
.cd-advisor__left {
  flex: 0 0 calc(50% - 10px);
  background: #E63E3B;
  padding: 36px 56px;
  position: relative;
  border-radius: 0 20px 20px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cd_advisor-img img {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 380px;
}

.cd_advisor-img_1 img {
  position: absolute;
  right: -86px;
  bottom: 0;
  width: 540px;
}


.cd-advisor__left-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Decorative circle bg */


/* Eyebrow */
.cd-advisor__eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* Name */
.cd-advisor__name {
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

/* Department line */
.cd-advisor__dept {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.cd-advisor__dept i {
  font-size: 16px;
}

/* Info rows */
.cd-advisor__info {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cd-advisor__info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

/* Square icon box */
.cd-advisor__ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1;

}

.cd-advisor__ico i {
  width: auto;
  height: auto;
}

.cd-advisor__actions i {
  width: auto;
  height: auto;
  font-size: 17px;
  line-height: 0;
}

/* Action buttons */
.cd-advisor__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cd-advisor__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.cd-advisor__btn:hover {
  transform: translateY(-2px);
}

.cd-advisor__btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.cd-advisor__btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cd-advisor__btn--whatsapp {
  background: #25D366;
  border: 2px solid #25D366;
  color: #fff;
}


/* ── Right panel ── */
.cd-advisor__right {
  flex: 1;
  background: #FFBC00;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

/* Decorative circle */


.cd-advisor__right-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cd-advisor__right-sub {
  font-size: 22px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cd-advisor__right-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Apply button */
.cd-advisor__apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 12px 20px 12px 12px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-advisor__apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.cd-advisor__apply-ico {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #FFBC00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.cd-advisor__apply-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.cd-advisor__apply-text small {
  font-size: 11px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cd-advisor__apply-arrow {
  font-size: 20px;
  color: #111;
  margin-left: 4px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .cd-advisor__inner {
    flex-direction: column;
    gap: 16px;
  }

  .cd-advisor__left {
    flex: unset;
    padding: 40px 28px;
    border-radius: 20px;
  }

  .cd-advisor__right {
    padding: 40px 28px;
    border-radius: 20px;
  }
}

@media (max-width: 575px) {
  .cd-advisor__actions {
    flex-direction: row;
    /* align-items: flex-start; */
    flex-wrap: nowrap;
  }

  .cd_advisor-img img {
    width: 278px;
  }

  .cd-advisor__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- CD Why We're Different ---- */
.cd-different {
  background: var(--light-bg);
}

.cd-different__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 36px;
}

.cd-different__title strong {
  font-weight: 700;
}

.cd-different__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cd-different__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #EBEBEB;
}

.cd-different__item:first-child {
  padding-top: 0;
}

.cd-different__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cd-different__icon {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--primary);
  line-height: 1.5;
}

.cd-different__text {
  color: var(--paragraph);
  line-height: 1.6;
}

.different-padding {
  --bs-gutter-x: 5rem;
}

.cd-different__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.cd-different__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ---- CD Gateway ---- */
.cd-gateway {
  background: var(--white);
}

.cd-gateway__heading {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cd-gateway__heading strong {
  font-weight: 700;
}

.cd-gateway__card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid #F0F0F0;
  padding: 36px 32px 36px;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0px 12px 36px rgb(0 0 0 / 4%);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.gateway-padding {
  --bs-gutter-x: 3rem;
}

.cd-gateway__card:hover {
  transform: translateY(-4px);
}

/* SVG icon */
.cd-gateway__icon {
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  flex-shrink: 0;
  margin-right: auto;
}

.cd-gateway__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0px;
  line-height: 1.3;
}

.cd-gateway__desc {
  color: var(--paragraph);
  line-height: 1.7;
  margin: 0;
}


/* ---- CD High-Demand Career ---- */
.cd-demand {
  background: var(--warm-bg);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

/* Watermarks */
.cd-demand__wm-degree {
  position: absolute;
  top: 224px;
  right: 20px;
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 700;
  color: #FFEAE4;
  pointer-events: none;
  user-select: none;
  line-height: 0.75;
  white-space: nowrap;
}

.cd-demand__wm-skill {
  position: absolute;
  bottom: 0;
  left: 50px;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 700;
  color: #FFEAE4;
  pointer-events: none;
  user-select: none;
  line-height: 0.75;
  white-space: nowrap;
}

.cd-demand .container {
  position: relative;
  z-index: 1;
}

/* Centered heading */
.cd-demand__header {
  text-align: center;
  margin-bottom: 53px;
}

.cd-demand__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cd-demand__title strong {
  font-weight: 700;
}

.cd-demand__subtitle {
  color: var(--paragraph);
  line-height: 1.75;
  margin: 0;
}

/* ---- Overlapping staggered rows — ABSOLUTE layout ---- */
/*
  Desktop positions (px from top of .cd-demand__rows):
  Row1:    top=0,   h=80  → 0–80
  Strip1:  top=60,  h=110 → 60–170  (top 20px behind Row1, bottom 30px behind Row2)
  Row2:    top=140, h=80  → 140–220  (covers last 30px of Strip1)
  Strip2:  top=200, h=110 → 200–310
  Row3:    top=280, h=80  → 280–360
  Strip3:  top=340, h=110 → 340–450
  Container height = 450px
*/
.cd-demand__rows {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  height: auto;
  display: flex;
}

.red_row,
.white_row {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.white_row {
  margin-top: 50px;
  z-index: 10;
  position: relative;
}

/* All rows and strips absolutely placed — always full width */
.cd-demand__row,
.cd-demand__white-strip {
  /* position: absolute; */
  left: 0;
  right: 0;
}

/* ── Red bar rows (z:10 = on top of all strips) ── */
.cd-demand__row {
  display: flex;
  align-items: stretch;
  height: 100px;
  z-index: 10;
}

.cd-demand__row--1 {
  top: 0;
  padding-left: 0%;
  width: 418px;
}

.cd-demand__row--2 {
  top: 140px;
  padding-left: 0;
  width: 636px;
  margin-left: -140px;
}

.cd-demand__row--3 {
  top: 280px;
  padding-left: 0%;
  width: 636px;
  margin-left: -61px;
}

/* Red pill bar */
.cd-demand__bar-red {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 0 28px 0 18px;
  border-radius: 14px;
  min-width: 0;
  /* box-shadow: 0 4px 20px rgba(210, 40, 40, 0.22); */
}

.cd-demand__bar-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-demand__bar-icon img {
  width: 45px;
  height: 45px;
  display: block;
  object-fit: contain;
}

.cd-demand__bar-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

/* ── White strips (z:5 = behind rows) ── */
.cd-demand__white-strip {
  height: 100px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 0 30px;
  z-index: 5;
}

.cd-demand__white-strip--1 {
  top: 60px;
  width: 420px;
  margin-left: -96px;
}

.cd-demand__white-strip--2 {
  width: 690px;
  margin-left: -250px;
}

.cd-demand__white-strip--3 {
  width: 690px;
  margin-left: -156px;
}

/* Subject label + icon */
.cd-demand__subject-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  white-space: nowrap;
}

.cd-demand__subject-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  /* background: #F3F4F6; */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-demand__subject-icon img {
  width: 45px;
  height: 45px;
  display: block;
  object-fit: contain;
}


/* ---- cd-demand Responsive ---- */

/* Tablet (≤991px)
   Row h=68px, Strip h=96px
   Row1:top=0, Strip1:top=50, Row2:top=120, Strip2:top=170, Row3:top=240, Strip3:top=290
   Container h=390px
*/
@media (max-width: 991px) {
  .cd-demand__rows {
    max-width: 100%;
    height: 390px;
  }

  .cd-demand__row {
    height: 68px;
  }

  .cd-demand__white-strip {
    height: 96px;
    padding: 0 20px;
  }

  .cd-demand__row--1 {
    top: 0;
    padding-left: 14%;
  }

  .cd-demand__row--2 {
    top: 118px;
    padding-left: 0;
  }

  .cd-demand__row--3 {
    top: 236px;
    padding-left: 6%;
  }

  .cd-demand__white-strip--1 {
    top: 50px;
  }

  .cd-demand__white-strip--2 {
    top: 168px;
  }

  .cd-demand__white-strip--3 {
    top: 286px;
  }

  .cd-demand__subject-name {
    font-size: 14px;
  }

  .cd-demand__subject-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .cd-demand__subject-icon img {
    width: 24px;
    height: 24px;
  }
}

/* Mobile (≤767px) — normal flow, row+strip pairs stack as cards */
@media (max-width: 767px) {
  .cd-demand {
    padding: 60px 0;
  }


  /* Switch back to normal block flow */
  .cd-demand__rows {
    height: auto;
  }

  .cd-demand__row,
  .cd-demand__white-strip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }

  .section-header--center {
    text-align: start;
  }

  .cd-demand__row {
    height: auto;
    padding-left: 0 !important;
    margin-bottom: 0;
  }

  .cd-demand__row+.cd-demand__white-strip {
    margin-top: 0;
  }

  .cd-demand__white-strip+.cd-demand__row {
    margin-top: 16px;
  }

  .cd-demand__bar-red {
    border-radius: 14px 14px 0 0;
    padding: 14px 18px;
    box-shadow: none;
  }

  .cd-demand__white-strip {
    height: auto;
    min-height: 60px;
    border-radius: 0 0 14px 14px;
    padding: 14px 18px;
    justify-content: space-between;
    box-shadow: none;
  }

  .cd-demand__wm-degree,
  .cd-demand__wm-skill {
    display: none;
  }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {


  .cd-demand__bar-text {
    font-size: 14px;
  }

  .cd-demand__subject-name {
    font-size: 13px;
  }
}

/* ---- CD Steps Section (reuses partners-section) ---- */
.cd-steps-section {
  background: var(--white);
}


/* ---- CD Why Logistics ---- */
.cd-why {
  background: #F8F8F8;
}

/* Centered heading block */
.cd-why__header {
  text-align: center;
  margin-bottom: 64px;
}

.cd-why__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.cd-why__title strong {
  font-weight: 700;
}

.cd-why__subtitle {
  color: var(--paragraph);
  line-height: 1.75;
  margin: 0 auto;
}

/* Icon item list */
.cd-why__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cd-why__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid #b3b3b333;
}

.cd-why__item:first-child {
  padding-top: 0;
}

.cd-why__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Icon box — white card with gradient multi-layer shadow */
.cd-why__item-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 15px;
  display: flex;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.cd-main {
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 232, 232, 1) 100%);
  border-radius: 20px;
  padding: 4px;
}

.cd-why__item-icon img {
  width: 45px;
  height: 45px;
  display: block;
  object-fit: contain;
}

.cd-why__item-body {
  flex: 1;
  padding-top: 5px;
}

.cd-why__item-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 13px;
  line-height: 1;
}

.cd-why__item-desc {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.75;
  margin: 0;
  max-width: 470px;
}

/* Right image */
.cd-why__visual {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.cd-why__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  min-height: 520px;
}

/* ---- cd-why Responsive ---- */
@media (max-width: 991px) {

  .cd-why__item-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 18px;
  }

  .cd-why__item-icon img {
    width: 32px;
    height: 32px;
  }

  .cd-why__item-title {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .cd-why {
    padding: 60px 0;
  }

  .cd-why__header {
    margin-bottom: 40px;
  }

  .cd-why__title {
    font-size: 26px;
  }

  .cd-why__visual-img {
    min-height: 260px;
    border-radius: 16px;
  }

  .cd-why__visual {
    border-radius: 16px;
    margin-bottom: 8px;
  }

  .cd-why__item {
    gap: 16px;
    padding: 20px 0;
  }

  .cd-why__item-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 16px;
  }

  .cd-why__item-icon img {
    width: 28px;
    height: 28px;
  }

  .cd-why__item-title {
    font-size: 15px;
  }

  .cd-why__item-desc {
    font-size: 13px;
  }
}



/* ---- CD Why Choose Edujobs ---- */
.cd-choose {
  background: var(--white);
  padding-bottom: 0;
  overflow: hidden;
}

.cd-choose__header {
  text-align: center;
  margin-bottom: 50px;
}

.cd-choose__title {
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
}

.cd-choose__title strong {
  font-weight: 700;
}

.cd-choose__subtitle {
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.7;
}

/* Stat Cards */
.cd-choose__stat {
  background: var(--white);
  border: 1.5px solid #F0F0F0;
  border-radius: 20px;
  padding: 20px 20px 20px;
  height: 100%;
  box-shadow: 0px 14px 20px 0px #0000000d;
}

.cd-choose__stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.cd-choose__stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

/* override odometer inline styles for sizing */
.cd-choose__stat-num .odometer.odometer-auto-theme,
.cd-choose__stat-num .odometer.odometer-theme-minimal {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.cd-choose__stat-leaf {
  width: 84px;
  height: 58px;
  flex-shrink: 0;
  opacity: 1;
}

.cd-choose__stat-label {
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Mission Banner */
.cd-choose__mission {
  margin-top: 30px;
  overflow: hidden;
}

.stats-padding {
  --bs-gutter-x: 2.5rem;
}

.cd-choose__mission-content {
  padding: 0px 0 70px;
  padding-right: 40px;
}

.cd-choose__mission-title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.cd-choose__mission-title strong {
  font-weight: 700;
}



.cd-choose__mission-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cd-choose__mission-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.cd-choose__mission-btn:hover {
  background: #c0001a;
  color: var(--white);
  transform: translateY(-2px);
}

.cd-choose__mission-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.cd-choose__mission-img {
  max-width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* cd-choose responsive */
@media (max-width: 991px) {
  .cd-choose__title {
    font-size: 32px;
  }

  .cd-choose__stat-num {
    font-size: 34px;
  }

  .cd-choose__stat-num .odometer.odometer-auto-theme,
  .cd-choose__stat-num .odometer.odometer-theme-minimal {
    font-size: 34px;
  }

  .cd-choose__stat-leaf {
    width: 48px;
    height: 36px;
  }

  .cd-choose__mission-title {
    font-size: 28px;
  }

  .cd-choose__mission-content {
    padding: 50px 0 50px;
    padding-right: 20px;
  }

  .cd-choose__mission-img {
    max-height: 360px;
  }
}

@media (max-width: 767px) {
  .cd-choose {
    padding-top: 60px;
  }

  .cd-choose__title {
    font-size: 26px;
  }

  .cd-choose__stat-num {
    font-size: 28px;
  }

  .cd-choose__stat-num .odometer.odometer-auto-theme,
  .cd-choose__stat-num .odometer.odometer-theme-minimal {
    font-size: 28px;
  }

  .cd-choose__stat {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .cd-choose__stat-leaf {
    width: 36px;
    height: 27px;
  }

  .cd-choose__mission {
    margin-top: 40px;
  }

  .cd-choose__mission-content {
    padding: 40px 0 24px;
    padding-right: 0;
  }

  .cd-choose__mission-title {
    font-size: 24px;
  }

  .cd-choose__mission-visual {
    justify-content: center;
    padding-bottom: 0;
  }

  .cd-choose__mission-img {
    max-height: 300px;
  }
}


/* ---- CD Who Can Apply ---- */
.cd-apply {
  position: relative;
  background: #0d0d0d url("../img/apply-bg.jpg") no-repeat right center / cover;
  padding: 110px 0;
  overflow: hidden;
}

.cd-apply__container {
  position: relative;
  z-index: 2;
}

.cd-apply__title {
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cd-apply__title strong {
  font-weight: 700;
}

.cd-apply__subtitle {
  color: #fff;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}

.cd-apply__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cd-apply__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cd-apply__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.cd-apply__check img {
  width: 32px;
  height: 32px;
  display: block;
}

.cd-apply__item-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.cd-apply__item-text strong {
  font-weight: 600;
  color: var(--white);
}

.cd-apply__btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.cd-apply__btn:hover {
  background: #f0ae00;
  color: var(--dark);
  transform: translateY(-2px);
}

/* cd-apply responsive */
@media (max-width: 991px) {
  .cd-apply {
    padding: 80px 0;
    background-position: 80% center;
  }

  .cd-apply__overlay {
    background: linear-gradient(to right,
        #000000 0%,
        #000000 20%,
        rgba(0, 0, 0, 0.92) 50%,
        rgba(0, 0, 0, 0.55) 100%);
  }

  .cd-apply__title {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .cd-apply {
    padding: 70px 0;
    background-position: 70% center;
  }

  .cd-apply__overlay {
    background: rgba(0, 0, 0, 0.75);
  }

  .cd-apply__title {
    font-size: 28px;
  }

  .cd-apply__subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .cd-apply__content {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .cd-apply__title {
    font-size: 24px;
  }

  .cd-apply__item-text {
    font-size: 14px;
  }

  .cd-apply__btn {
    width: 100%;
    text-align: center;
  }
}


/* ---- CD Course Fees ---- */
.cd-fees {
  background: var(--white);
}

.main-prog-card {
  background: linear-gradient(0deg, rgba(230, 62, 59, 0.45) 0%, rgba(245, 120, 110, 0.22) 38%, rgba(255, 200, 195, 0.06) 70%, rgba(255, 255, 255, 0) 100%);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}



.cd-fees__header {
  text-align: center;
  margin-bottom: 50px;
}

.cd-fees__title {
  color: var(--dark);
  margin-bottom: 16px;
}

.cd-fees__subtitle {
  color: #000;
  line-height: 1.7;
  max-width: 1010px;
  margin: 0 auto;
}

/* ---- Programme Fee Card (left) ---- */
.cd-fees__prog-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px 20px 20px;
  height: 100%;
  position: relative;
  isolation: isolate;
  border: 1px solid #EFEFEF;
}

.cd-fees__prog-label {
  font-size: 14px;
  color: #777;
  margin-bottom: 6px;
}

.cd-fees__prog-amount {
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 14px;
}

.cd-fees__prog-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
  line-height: 1;
}

.cd-fees__prog-emi-info {
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
}

.cd-fees__prog-emi {
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cd-fees__prog-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 26px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.cd-fees__prog-cta:hover {
  background: #c0001a;
  color: var(--white);
  transform: translateY(-2px);
}

.cd-fees__prog-notes {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.cd-fees__prog-notes li {
  font-size: 13px;
  color: #000;
  line-height: 1.65;
}

/* ---- Fee Breakdown Table ---- */
.cd-fees__table-card {
  background: #FDF9F0;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px 25px 25px 0;
}

/* Every row — equal height */
.cd-fees__tbl-row {
  display: flex;
  align-items: stretch;
  flex: 1;
}

/* Left cell */
.cd-fees__tbl-left {
  flex: 1;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  /* Divider between rows — left side only */
  border-bottom: 1px solid #e8e8e8;
}

.cd-fees__tbl-row--last .cd-fees__tbl-left {
  border-bottom: none;
}

/* Right cell — part of ONE continuous red block */
.cd-fees__tbl-right {
  width: 44%;
  min-width: 180px;
  padding: 14px 26px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  /* Subtle divider inside red block */
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.cd-fees__tbl-row--last .cd-fees__tbl-right {
  border-bottom: none;
}

/* ---- Header row ---- */
.cd-fees__tbl-row--head .cd-fees__tbl-left {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

/* Top-left of the red block — round the corner */
.cd-fees__tbl-row--head .cd-fees__tbl-right {
  font-size: 20px;
  font-weight: 700;
  border-radius: 20px 20px 0 0;
  line-height: 1;
}

/* ---- Total row — yellow strip as separate pseudo-element layer ---- */
.cd-fees__tbl-row--total {
  position: relative;
}

.cd-fees__tbl-row--total .cd-fees__tbl-right {
  z-index: 4;
  position: relative;
}

/* The yellow strip — absolutely positioned, spans full row width with
   a rounded capsule end that floats inside the red right column */
.cd-fees__tbl-row--total .cd-fees__tbl-left::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 8px;
  right: 0px;
  background: var(--secondary);
  border-radius: 0 0px 0px 0;
  z-index: -1;
  height: auto;
}

.programm-padding {
  --bs-gutter-x: 3rem;
  margin-bottom: 30px;
}

/* Text floats above the strip */
.cd-fees__tbl-row--total .cd-fees__tbl-left {
  position: relative;
  z-index: 2;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid #e8e8e8;
  z-index: 4;
}

.cd-fees__tbl-row--total .cd-fees__tbl-right {
  position: relative;
  z-index: 4;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.cd-fees__tbl-row--total .cd-fees__tbl-right:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 8px;
  right: 10px;
  background: var(--secondary);
  border-radius: 0 50px 50px 0;
  z-index: -1;
  height: auto;
}

/* ---- Last row — bottom-left of red block rounded ---- */
.cd-fees__tbl-row--last .cd-fees__tbl-right {
  border-radius: 0 0 20px 20px;
}

/* ---- Bottom: What Makes It Easy For You ---- */

/* Outer card — flex row: left content + right visual */
.cd-fees__easy-wrap {
  background: #FDF9F0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0px 32px 32px;
  gap: 45px;
  position: relative;
  margin-top: 24px;
  border: 1px solid #D9D9D9;
}

/* Left content — grows to fill available space */
.cd-fees__easy-content {
  flex: 1;
  min-width: 0;
  padding-top: 36px;
}

.cd-fees__easy-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

/* 4-column CSS grid for feature boxes */
.cd-fees__feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 30px;
}

.cd-fees__feat {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 20px;
  padding: 20px 16px 18px;
}

.cd-fees__feat-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}

.cd-fees__feat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}

/* Payment modes */
.cd-fees__pay-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

/* Flex row for payment items — wraps on smaller screens */
.cd-fees__pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.cd-fees__pay-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 20px;
  padding: 15px 25px 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.cd-fees__pay-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Right visual — fixed width, pink gradient background */
.cd-fees__easy-visual {
  width: 390px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.cd-fees__easy-img {
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* ---- easy-wrap responsive ---- */
@media (max-width: 1100px) {
  .cd-fees__easy-visual {
    width: 220px;
  }

  .cd-fees__feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cd-fees__easy-wrap {
    flex-direction: column-reverse;
  }

  .cd-fees__easy-content {
    padding: 24px 20px 28px;
  }

  .cd-fees__easy-visual {
    width: 100%;
    min-height: 240px;
  }

  .cd-fees__feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cd-fees__pay-item {
    flex: 1 1 calc(50% - 6px);
  }
}

@media (max-width: 480px) {
  .cd-fees__feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cd-fees__pay-item {
    flex: 1 1 100%;
  }
}

/* ---- cd-fees Responsive ---- */
@media (max-width: 991px) {
  .cd-fees {
    padding: 70px 0;
  }

  .cd-fees__title {
    font-size: 32px;
  }

  .cd-fees__tbl-right {
    width: 300px;
    min-width: 190px;
  }

  .cd-fees__easy-visual {
    min-height: 260px;
    border-radius: 0 0 20px 20px;
  }

  .cd-fees__easy-visual {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .cd-fees {
    padding: 56px 0;
  }

  .cd-fees__title {
    font-size: 26px;
  }

  .cd-fees__prog-amount {
    font-size: 36px;
  }

  .cd-fees__prog-emi {
    font-size: 26px;
  }


  .cd-fees__tbl-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cd-fees__tbl-right {
    width: 100%;
    min-width: unset;
  }

  .cd-fees__easy-content {
    padding: 24px 20px 20px;
  }

  .cd-fees__easy-visual {
    min-height: 220px;
  }
}


/* ---- CD Campus Life Gallery ---- */
.cd-campus {
  background: var(--white);
}

.cd-campus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}

.cd-campus__tile {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--light-bg);
}

.cd-campus__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cd-campus__tile:hover img {
  transform: scale(1.04);
}

.cd-campus__tile--tall {
  grid-row: span 2;
}

.cd-campus__tile--wide {
  grid-column: span 2;
}

/* ========================================
   nice-select2 — Form Design Integration
   NOTE: nice-select2 copies the <select> classes
   onto the generated <div>, so the div gets
   class="nice-select cd-country-select" etc.
   ======================================== */

/* ─────────────────────────────────────────
   Country code — inside .cd-phone-row
   Selector: .nice-select.cd-country-select
   ───────────────────────────────────────── */
.nice-select.cd-country-select {
  background: transparent !important;
  border: none !important;
  border-radius: 50px;
  box-shadow: none !important;
  height: auto;
  line-height: 1;
  padding: 8px 28px 8px 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  font-family: var(--font-family);
  flex-shrink: 0;
  min-width: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nice-select.cd-country-select:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  border: none !important;
}

.nice-select.cd-country-select:after {
  border-color: #9CA3AF;
  width: 5px;
  height: 5px;
  right: 10px;
  margin-top: -5px;
}

.nice-select.cd-country-select .current {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
}

.nice-select.cd-country-select .nice-select-dropdown {
  min-width: 190px;
  width: auto;
  border-radius: 14px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  z-index: 9999 !important;
}

.nice-select.cd-country-select .list {
  border-radius: 14px;
  padding: 6px 0;
}

.nice-select.cd-country-select .option {
  font-size: 13px;
  color: var(--heading);
  padding: 9px 16px;
  font-family: var(--font-family);
  line-height: 1.5;
  min-height: auto;
  white-space: nowrap;
}

.nice-select.cd-country-select .option:hover,
.nice-select.cd-country-select .option.focus {
  background: #F3F4F6;
}

.nice-select.cd-country-select .option.selected {
  color: var(--primary);
  font-weight: 700;
  background: rgba(230, 62, 59, 0.05);
}

/* ─────────────────────────────────────────
   Campus — full-width pill
   Selector: .nice-select.cd-campus-select
   ───────────────────────────────────────── */
.nice-select.cd-campus-select {
  width: 100% !important;
  border-radius: 50px !important;
  border: none !important;
  background: #F3F4F6 !important;
  box-shadow: none !important;
  height: auto;
  line-height: 1;
  padding: 15px 44px 15px 20px;
  font-size: 14px;
  font-family: var(--font-family);
  color: var(--heading);
}

.nice-select.cd-campus-select:hover {
  background: #EAECF0 !important;
  border: none !important;
}

.nice-select.cd-campus-select.open {
  background: #EAECF0 !important;
  border: none !important;
}

.nice-select.cd-campus-select:after {
  border-color: #9CA3AF;
  right: 20px;
  width: 6px;
  height: 6px;
  margin-top: -5px;
}

.nice-select.cd-campus-select .current {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.4;
}

.nice-select.cd-campus-select.ns-has-value .current {
  color: var(--heading);
}

.nice-select.cd-campus-select .nice-select-dropdown {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  border: none !important;
  z-index: 9999 !important;
}

.nice-select.cd-campus-select .list {
  border-radius: 16px;
  padding: 8px 0;
}

.nice-select.cd-campus-select .option {
  font-size: 14px;
  color: var(--heading);
  padding: 11px 20px;
  font-family: var(--font-family);
  line-height: 1.5;
  min-height: auto;
}

.nice-select.cd-campus-select .option:hover,
.nice-select.cd-campus-select .option.focus {
  background: #F3F4F6;
}

.nice-select.cd-campus-select .option.selected {
  color: var(--primary);
  font-weight: 600;
  background: rgba(230, 62, 59, 0.05);
}

/* Hide the disabled placeholder option in the list */
.nice-select.cd-campus-select .option.disabled {
  display: none;
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: none;
}

.tasksCards .imgWrapper {
  border-radius: 20px;
}

.tasksCards .imgWrapper img {
  border-radius: 20px;
  border: 4px solid #fff;
}

.tasks-hero {
  background-color: #F8F8F8;
}


.tasks-hero__header {
  text-align: center;
  margin-bottom: 50px;
}

.tasks-hero__title {
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
}

.tasks-hero__title strong {
  font-weight: 700;
}

.tasks-hero__subtitle {
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.7;
  max-width: 740px;
}


/* ========================================
   BLOCK — About Hero V2 (gradient split)
   ======================================== */

.ab-hero-v2 {
  background: url(../img/inner-bg.jpg) center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  height: 760px;
  background-position: bottom;
}

.ab-mentor-hero {
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  height: 630px;
  background-position: bottom;
}

/* Split row */
.ab-hero-v2__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0px 0 0px 0;
}


.ab-split__desc {
  max-width: 650px;
}

/* Left text column */
.ab-hero-v2__left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Right image column */



/* Logo bar inside banner */
.ab-hero-v2__logos {
  padding-bottom: 0px;
  margin-top: 30px;
}

.ab-hero-v2__logos-label {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  margin-bottom: 16px;
}

.ab-hero-v2__logos-label strong {
  color: var(--heading);
  font-weight: 700;
}

/* Marquee wrapper — clips horizontal overflow only; padding lets shadow breathe */
.ab-logo-marquee {
  overflow: hidden;
  width: 100%;
  padding-bottom: 8px;
  margin-bottom: -8px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Scrolling track — duplicated logos for seamless loop */
.ab-logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: ab-marquee 28s linear infinite;
}

.ab-logo-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes ab-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Smaller logo pill */
.ab-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  padding: 19px 8px;
  height: 65px;
  min-width: 140px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.ab-logo-pill img {
  height: 56px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
}

.ab-hero-v2__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #888;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.ab-hero-v2__breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.ab-hero-v2__breadcrumb a:hover {
  color: #c82f2c;
}

.ab-hero-v2__breadcrumb-sep {
  font-size: 16px;
  opacity: 0.4;
}

.ab-hero-v2__title {
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 16px;
}

.ab-hero-v2__title strong {
  font-weight: 700;
  color: var(--primary);
}

.ab-hero-v2__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.5;
  margin: 0 0 20px;
  max-width: 520px;
}

.ab-hero-v2__desc {
  font-size: 16px;
  color: var(--paragraph);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Right image column */
.ab-hero-v2__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  flex: 0 0 50%;
  max-width: 50%;
}

.ab-hero-v2__img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
}

/* Floating stat cards */
.ab-hero-v2__float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  z-index: 10;
}

.ab-hero-v2__float-card--top {
  top: 18%;
  left: -28px;
}

.ab-hero-v2__float-card--bottom {
  bottom: 18%;
  right: -20px;
}

.ab-hero-v2__float-card-stat {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab-hero-v2__float-card-stat .float-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}

.ab-hero-v2__float-card-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
}

.ab-hero-v2__float-card-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.ab-hero-v2__float-card-btn:hover {
  background: #f0ae00;
  color: #fff;
}

/* Companies strip below hero */
.ab-companies-strip {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.ab-companies-strip__label {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  margin-bottom: 16px;
  white-space: nowrap;
}

.ab-companies-strip__label strong {
  color: var(--heading);
}

.ab-companies-strip__logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ab-companies-strip__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.2s, opacity 0.2s;
}

.ab-companies-strip__logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .ab-hero-v2__inner {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .ab-hero-v2__subtitle {
    font-size: 14px;
    max-width: 350px;
    margin: 0 auto 20px;
  }

  .ab-hero-v2__breadcrumb {
    justify-content: center;
  }

  .ab-hero-v2__desc {
    margin: 0 auto;
  }

  .ab-hero-v2__logos-label {
    text-align: center;
  }

  .ab-hero-v2__left,
  .ab-hero-v2__right {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ab-hero-v2__right {
    min-height: auto;
    margin-bottom: 30px;
  }

}

@media (max-width: 767px) {
  .ab-hero-v2__left {
    padding: 0px 0 0px;
    text-align: center;
  }

  .ab-hero-v2__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ========================================
   BLOCK — Nav Dropdown
   ======================================== */

.site-header__nav>li {
  position: relative;
}

.site-header__dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 230px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.site-header__nav>li:hover .site-header__dropdown,
.site-header__nav>li:focus-within .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header__dropdown li a {
  display: block;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.site-header__dropdown li a:hover {
  background: var(--light-bg);
  color: var(--primary);
}

.site-header__dropdown li+li {
  border-top: 1px solid var(--border);
}

.has-dropdown>.site-header__nav-link .ri-arrow-down-s-line {
  font-size: 16px;
  vertical-align: middle;
  margin-left: 2px;
  transition: transform 0.2s ease;
  display: inline-block;
  line-height: 1;
}

.site-header__nav>li.has-dropdown:hover>.site-header__nav-link .ri-arrow-down-s-line {
  transform: rotate(-180deg);
  color: var(--primary);
}

/* ========================================
   MEGAMENU — All Courses (Split panel)
   ======================================== */
.site-header__megamenu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 30, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 990;
}

.site-header__megamenu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.site-header__megamenu {
  position: fixed;
  top: var(--mm-top, 110px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 920px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.site-header__megamenu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header__megamenu-left {
  width: 280px;
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--white);
}

.site-header__megamenu-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.site-header__megamenu-list::-webkit-scrollbar {
  width: 6px;
}

.site-header__megamenu-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.site-header__megamenu-dept-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 22px;
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-header__megamenu-dept-toggle:hover,
.site-header__megamenu-dept.is-active .site-header__megamenu-dept-toggle {
  background: var(--light-bg);
  color: var(--primary);
}

.site-header__megamenu-dept-toggle i {
  font-size: 16px;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__megamenu-dept.is-active .site-header__megamenu-dept-toggle i {
  opacity: 1;
  transform: translateX(2px);
}

.site-header__megamenu-foot {
  padding: 12px 22px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.site-header__megamenu-foot a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-header__megamenu-foot a:hover {
  text-decoration: underline;
}

.site-header__megamenu-right {
  flex: 1;
  padding: 18px;
  background: var(--light-bg, #fafafa);
  max-height: 530px;
  overflow-y: auto;
}

.site-header__megamenu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.site-header__megamenu-cards .new-course-card {
  height: 100%;
}

.site-header__megamenu-cards .new-course-card__img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.site-header__megamenu-cards .new-course-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header__megamenu-cards .new-course-card__body {
  padding: 12px;
}

.site-header__megamenu-cards .new-course-card__title {
  font-size: 14px;
  margin: 0 0 10px;
  line-height: 1.3;
}

.site-header__megamenu-cards .new-course-card__meta {
  gap: 6px;
  margin-bottom: 10px;
}

.site-header__megamenu-cards .new-course-card__meta-label {
  font-size: 10px;
}

.site-header__megamenu-cards .new-course-card__meta-val {
  font-size: 12px;
}

.site-header__megamenu-cards .new-course-card__btn {
  font-size: 12px;
  padding: 8px 12px;
}


/* ========================================
   BLOCK — About Pages
   ======================================== */

/* Hero */
.ab-hero {
  padding: 80px 0 80px;
  background: var(--light-bg);
  text-align: center;
}

.ab-hero--img-bg {
  background: url('../img/inner-bg.jpg') center center / cover no-repeat;
  padding-top: 130px;
}

.ab-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ab-hero__title {
  color: var(--heading);
  margin: 0 0 18px;
  line-height: 1.15;
}

.ab-hero__subhead {
  font-size: 18px;
  color: #555;
  max-width: 840px;
  margin: 0 auto;
  line-height: 1.7;
}

.ab-hero__ticks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ab-hero__tick {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
}

.ab-hero__tick i {
  color: var(--primary);
  font-size: 15px;
}

/* Breadcrumb nav under hero */
.ab-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 14px;
  flex-wrap: wrap;
}

.ab-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.ab-breadcrumb a:hover {
  text-decoration: underline;
}

.ab-breadcrumb__sep {
  color: #aaa;
}

.ab-breadcrumb__current {
  color: #777;
}

/* Shared section spacing */


.ab-section--light {
  background: var(--light-bg);
}

.ab-section--warm {
  background: var(--warm-bg);
}

/* Section header inside about pages */
.ab-section-header {
  margin-bottom: 40px;
}

.ab-section-header--center {
  text-align: center;
}

.ab-section-header__eyebrow {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  vertical-align: middle;
}

.ab-section-header__title {
  margin: 0 0 0px;
  line-height: 1.22;
  font-weight: 700;
}

.ab-section .ab-section-header__title {
  margin: 0 0 12px;
  line-height: 1.22;
  font-weight: 300;
  max-width: 920px;
  margin: 0 auto 12px;
}

.ab-section-header__title strong {
  font-weight: 700;
  color: #000;
}

.ab-section-header__desc {
  color: var(--paragraph);
  max-width: 530px;
  line-height: 1.75;
  margin: 0;
}

.ab-section-header--center .ab-section-header__desc {
  margin: 0 auto;
  max-width: 800px;
}

/* ---- Split image + accordion layout ---- */
.ab-split-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.ab-split-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.col-height {
  height: 460px;
}

.ab-split__title {
  font-weight: 300;
  color: var(--heading);
  line-height: 1.25;
  margin: 0 0 14px;
}

.ab-split__title strong {
  font-weight: 700;
}

.ab-split__tag {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  vertical-align: middle;
}

/* .ab-split__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 32px;
} */

/* Accordion list */
.ab-accordion-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer;
  transition: padding 0.25s ease;
}

.learning-padding {
  --bs-gutter-x: 3.5rem;
}

.ab-accordion-item:last-child {
  border-bottom: 1px solid var(--border);
}

.ab-accordion-item__bullet {
  color: var(--border);
  margin-right: 10px;
  font-size: 12px;
  transition: color 0.25s ease;
  vertical-align: middle;
}

.ab-accordion-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}

/* Body — hidden by default, revealed on hover or active */
.ab-accordion-item__body {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.25s ease;
}

/* Hover reveals body */
.ab-accordion-item:hover .ab-accordion-item__title,
.ab-accordion-item--active .ab-accordion-item__title {
  color: var(--primary);
}

.ab-accordion-item:hover .ab-accordion-item__bullet,
.ab-accordion-item--active .ab-accordion-item__bullet {
  color: var(--primary);
}

.ab-accordion-item:hover .ab-accordion-item__body,
.ab-accordion-item--active .ab-accordion-item__body {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}

/* ---- Who We Are — full-width bg image section ---- */
.ab-who-section {
  position: relative;
  background: url('../img/creeer-bg.jpg') center center / cover no-repeat;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
}

/* .ab-who-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 20, 0.82) 0%,
      rgba(10, 10, 20, 0.45) 55%,
      rgba(10, 10, 20, 0.15) 100%);
} */

.ab-who-section__inner {
  position: relative;
  z-index: 2;

}

.ab-who-section__content {
  max-width: none;
}

.ab-who-section__tag {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  vertical-align: middle;
}

.ab-who-section__title {
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 18px;
}

.ab-who-section__title strong {
  font-weight: 700;
}

.ab-who-section__desc {
  color: rgb(255, 255, 255);
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 520px;
}

.ab-who-section__cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ab-who-section__cta:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 767px) {
  .ab-who-section {
    min-height: 380px;
  }

  .ab-who-section__title {
    font-size: 24px;
  }
}

/* Offset column upward */
.ab-col--offset-up {
  margin-top: 0px;
}

@media (max-width: 991px) {
  .ab-col--offset-up {
    margin-top: 0;
  }
}

/* ---- Feature card (screenshot style) ---- */
.ab-feat-card {
  background: linear-gradient(145deg, #FFE8D0 0%, #FFF3E8 100%);
  border-radius: 20px;
  padding: 36px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ab-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

/* Featured/middle card — white with blue border */
.ab-feat-card--featured {
  background: #fff;
  border: 2px solid #4A90D9;
  box-shadow: 0 8px 32px rgba(74, 144, 217, 0.12);
}

.ab-feat-card--featured:hover {
  box-shadow: 0 16px 48px rgba(74, 144, 217, 0.20);
}

/* Icon box */
.ab-feat-card__icon-wrap {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #E8872A;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.ab-feat-card--featured .ab-feat-card__icon-wrap {
  color: #4A90D9;
}

.ab-feat-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 12px;
  line-height: 1.35;
}

.ab-feat-card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}

/* CTA button */
.ab-feat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.ab-feat-card__cta:hover {
  gap: 14px;
  color: var(--heading);
}

.ab-feat-card__cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E8872A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.ab-feat-card__cta-icon--blue {
  background: #4A90D9;
}

/* Three-point card grid */
.ab-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ab-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.ab-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(230, 62, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
}

.ab-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 10px;
}

.ab-card__text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ---- Approach photo cards ---- */
.ab-photo-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 460px;
}

.ab-photo-card--blue {
  background: #d9e8ff;
}

.ab-photo-card--peach {
  background: #fde8d0;
}

.ab-photo-card__label {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 20px 20px 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ab-photo-card__img-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 14px;
  margin: 0 20px 20px;
  min-height: 280px;
}

.ab-photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-photo-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.ab-photo-card__title--blue {
  color: #1a6ef5;
}

.ab-photo-card__title--amber {
  color: #f5a31a;
}

.ab-photo-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* Single paragraph block */
.ab-para-block {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}

/* Feature list (icon + text) */
.ab-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ab-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

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

.ab-feature-list__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(230, 62, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.ab-feature-list__sub {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 4px 0 0;
}

/* Stat cards */
.ab-stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: box-shadow 0.25s ease;
}

.ab-stat-card:hover {
  box-shadow: var(--shadow-md);
}

.ab-stat-card__number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.ab-stat-card__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
}

.ab-disclaimer {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 28px;
}

/* Pull-quote */
.ab-pullquote {
  background: var(--light-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  font-size: 18px;
  font-style: italic;
  color: var(--heading);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

/* Mentor card */
.ab-mentor-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ab-mentor-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.ab-mentor-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
}

.ab-mentor-card__domain {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ab-mentor-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
}

.ab-mentor-card__help {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  flex: 1;
}

.ab-mentor-card__cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 4px 0;
  transition: opacity 0.2s ease;
}

.ab-mentor-card__cta:hover {
  opacity: 0.7;
}

/* Mentor carousel */
.ab-mentor-carousel-wrap {
  position: relative;
  padding: 0 48px;
  overflow-x: clip;
}

.ab-mentor-swiper {
  overflow: visible;
  padding: 16px 4px;
  margin: -16px -4px;
}

.ab-mentor-swiper .swiper-slide {
  height: auto;
}

.ab-mentor-swiper .ab-mentor-card {
  height: 100%;
}

.ab-mentor-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--heading);
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ab-mentor-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.ab-mentor-prev {
  left: 0;
}

.ab-mentor-next {
  right: 0;
}

.ab-mentor-card__sessions {
  font-size: 13px;
  color: #000;
  display: flex;
  align-items: start;
  gap: 6px;
  margin: 0;
  line-height: 18px;
}

.ab-mentor-card__sessions i {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.ab-mentor-card__actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.ab-mentor-card__cta--primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  border-top: none;
  margin-top: 0;
  transition: opacity 0.2s ease;
}

.ab-mentor-card__cta--primary:hover {
  opacity: 0.88;
  color: #fff;
}

/* View profile — arrow button inside mentor cards */
.ab-mentor-card__view-btn {
  width: auto;
  flex-shrink: 0;
}

/* Awards table */
/* Awards white card wrapper */
.ab-awards-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.ab-awards-table {
  width: 100%;
  border-collapse: collapse;
}

.ab-awards-table th {
  background: var(--light-bg);
  font-size: 12px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1.5px solid var(--border);
}

.ab-awards-table td {
  padding: 18px 24px;
  font-size: 14.5px;
  color: #444;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.ab-awards-table td strong {
  color: var(--heading);
  font-weight: 600;
}

.ab-awards-table tr:last-child td {
  border-bottom: none;
}

.ab-awards-table tbody tr:hover td {
  background: #fafafa;
}

/* Type badges */
.ab-awards-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.ab-awards-badge--gov {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.ab-awards-badge--industry {
  background: rgba(234, 88, 12, 0.08);
  color: #ea580c;
}

.ab-awards-badge--state {
  background: rgba(22, 163, 74, 0.09);
  color: #16a34a;
}

.ab-awards-badge--national {
  background: rgba(210, 34, 45, 0.08);
  color: var(--primary);
}

/* Transparency / info block */
.ab-info-block {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px 36px;
  border-left: 4px solid var(--secondary);
}

.ab-info-block__text {
  font-size: 16px;
  color: var(--heading);
  font-weight: 500;
  margin: 0 0 10px;
}

.ab-info-block__note {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* Partnership type cards (numbered) */
.ab-partner-type {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ab-partner-type:hover {
  box-shadow: var(--shadow-md);
}

/* Icon */
.ab-partner-type__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
}

.ab-partner-type--blue .ab-partner-type__icon {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.ab-partner-type--green .ab-partner-type__icon {
  background: rgba(22, 163, 74, 0.09);
  color: #16a34a;
}

.ab-partner-type--orange.ab-partner-type__icon,
.ab-partner-type--orange .ab-partner-type__icon {
  background: rgba(234, 88, 12, 0.08);
  color: #ea580c;
}

.ab-partner-type--red .ab-partner-type__icon {
  background: rgba(210, 34, 45, 0.08);
  color: var(--primary);
}

.ab-partner-type__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bbb;
  line-height: 1;
}

.ab-partner-type__label {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
  line-height: 1.35;
}

.ab-partner-type__tag {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  margin: 0;
  font-style: italic;
}

.ab-partner-type__desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Partner logo placeholder grid */
/* Partner tabs */
.ab-partner-tabs {
  margin-top: 8px;
}

.ab-partner-tabs__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 0;
}

.ab-partner-tabs__btn {
  background: none;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  color: #888;
  padding: 12px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
  margin-bottom: -1.5px;
}

.ab-partner-tabs__btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.ab-partner-tabs__btn:hover {
  color: var(--heading);
}

.ab-partner-tabs__btn.active {
  color: var(--primary);
}

.ab-partner-tabs__btn.active::after {
  transform: scaleX(1);
}

.ab-partner-tabs__panels {
  min-height: 160px;
}

.ab-partner-tabs__panel {
  display: none;
}

.ab-partner-tabs__panel.active {
  display: block;
}

.ab-logo-group {
  margin-bottom: 40px;
}

.ab-logo-group__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.ab-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ab-logo-box {
  flex: 0 0 calc(25% - 12px);
  min-width: 140px;
  aspect-ratio: 3 / 1.2;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #aaa;
  background: var(--white);
}


/* =========================================================
   JOURNEY TODAY SECTION
   ========================================================= */

.journey-section {
  position: relative;
  background-image: url(../img/journey-today-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.journey-section__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 378px;
}

/* ---- Left card ---- */
.journey-section__left-card {
  color: #fff;
  padding-top: 0;
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
}

.journey-section__left-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #fff;
}

.journey-section__left-desc {
  font-size: 15px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 240px;
}

.journey-section__trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 10px 18px;
  width: fit-content;
}

.journey-section__avatars {
  display: flex;
  align-items: center;
}

.journey-section__avatar {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgb(255 255 255);
  border: 2.5px solid #e74340;
  margin-left: -10px;
  flex-shrink: 0;
}

.journey-section__avatar:first-child {
  margin-left: 0;
}

.journey-section__trust-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.journey-section__trust-text strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* ---- Center ---- */
.journey-section__center {
  flex: 1;
  text-align: center;
  color: #fff;
  padding: 0 16px;
}

.journey-section__title {
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.journey-section__title strong {
  font-weight: 700;
}

.journey-section__subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.journey-section__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-grey-white {
  background: #ffffff1a;
  color: var(--white);
}

.journey-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.journey-section__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.journey-section__btn--primary {
  background: #2563EB;
  color: #fff;
}

.journey-section__btn--outline {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

/* ---- Right badges ---- */
.journey-section__badges {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 8px;
  position: absolute;
  right: 150px;
  top: 36%;
  transform: translateY(-50%);
  height: auto;
}

.journey-section__badge {
  font-size: 16px;
  font-weight: 600;
  padding: 18px 28px;
  border-radius: 10px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  line-height: 1;
}

/* Dark variant (1st and 3rd badges) */
.journey-section__badge--dark {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

/* White variant (2nd badge) */
.journey-section__badge--white {
  background: #ffffff;
  color: #111;
  border: none;
}

/* Stagger positions */
.journey-section__badge--pos1 {
  align-self: flex-end;
  margin-right: 28px;
}

.journey-section__badge--pos2 {
  align-self: flex-start;
  margin-right: 100px;
}

.journey-section__badge--pos3 {
  align-self: flex-end;
  margin-right: 0;
}

/* ---- Bottom image ---- */
.journey-section__img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.journey-section__img {
  display: block;
  max-width: max-content;
  width: 100%;
  object-fit: cover;
}

/* ---- Decorative bottom curves ---- */
.journey-section__curve {
  position: absolute;
  bottom: -220px;
  left: 0;
  right: 0;
  width: auto;
  z-index: 1;
}

.journey-section__curve img {
  margin: 0 auto;
}

.ab-approach-section .partner-step__card {
  padding: 0;
}

.ab-approach-section .partner-step__card img {
  border: 2px solid var(--white);
  border-radius: 20px;
}

.ab-approach-section .ab-col--offset-up {
  margin-top: 40px;
}


.ab-approach-section .partner-step__outer--yellow {
  background: linear-gradient(0deg,
      rgba(255, 188, 0, 0.55) 0%,
      rgba(255, 210, 80, 0.25) 38%,
      rgba(255, 240, 180, 0.06) 70%,
      rgba(255, 255, 255, 0) 100%);
}

/* Red glow — cards 2 & 4: fades from bottom */
.ab-approach-section .partner-step__outer--red {
  background: linear-gradient(180deg,
      rgba(230, 62, 59, 0.45) 0%,
      rgba(245, 120, 110, 0.22) 38%,
      rgba(255, 200, 195, 0.06) 70%,
      rgba(255, 255, 255, 0) 100%);
}

/* ---- Approach card overlay text box ---- */
.approach-card {
  position: relative;
  /* overflow: hidden; */
}

.approach-card__text {
  position: absolute;
  top: -44px;
  left: -50px;
  background: #ffffff;
  border-radius: 20px;
  padding: 23px 20px;
  border: 2px solid #F4F4F4;
  z-index: 3;
  width: max-content;
}

.approach-card__text--bottom {
  top: auto;
  bottom: -44px;
  right: -50px;
  left: unset;
}

.approach-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.approach-card__desc {
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 1.5;
  max-width: 460px;
}

.mentor-section .ab-split-img {
  height: 510px;
}

.mentor-section .ab-section-header {
  margin-bottom: 20px;
}

.learner-support-section .ab-section-header {
  margin-bottom: 20px;
}

.learner-support-section .ab-split-img {
  height: 510px;
}

.accredation-bg .ab-hero-v2__logos {
  padding-bottom: 0px;
  margin-top: 40px;
}

.partnerships-bg .ab-hero-v2__logos {
  padding-bottom: 0px;
  margin-top: 40px;
}

.accredation-bg,
.partnerships-bg {
  display: flex;
  background-position: bottom;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  height: 630px;
  background-position: bottom;
}


/* ---- CD Why Logistics ---- */
.cd-why.cd-diff {
  background: #F8F8F8;
}

/* Centered heading block */
.cd-diff .cd-why__header {
  text-align: center;
  margin-bottom: 40px;
}

.cd-diff .cd-why__title {
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.cd-diff .cd-why__title strong {
  font-weight: 700;
}

.cd-diff .cd-why__subtitle {
  color: var(--paragraph);
  line-height: 1.75;
  margin: 0 auto;
}

/* Icon item list */
.cd-diff .cd-why__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cd-diff .cd-why__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #b3b3b333;
}

.cd-diff .cd-why__item:first-child {
  padding-top: 0;
}

.cd-diff .cd-why__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Icon box — white card with gradient multi-layer shadow */
.cd-diff .cd-why__item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.cd-diff .cd-main {
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 232, 232, 1) 100%);
  border-radius: 10px;
  padding: 4px;
}

.cd-diff .cd-why__item-icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.cd-diff .cd-why__item-body {
  flex: 1;
  padding-top: 5px;
}

.cd-diff .cd-why__item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0;
  line-height: 25px;
  max-width: 510px;

}

.cd-diff .cd-why__item-desc {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.75;
  margin: 0;
  max-width: 470px;
}

/* Right image */
.cd-diff .cd-why__visual {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.cd-diff .cd-why__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  height: 580px;
}

/* ---- cd-why Responsive ---- */
@media (max-width: 991px) {


  .cd-diff .cd-why__item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 18px;
  }

  .cd-diff .cd-why__item-icon img {
    width: 17px;
    height: 17px;
  }

  .cd-diff .cd-why__item-title {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .cd-diff .cd-why {
    padding: 60px 0;
  }

  .cd-diff .cd-why__header {
    margin-bottom: 30px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .cd-diff .cd-why__visual-img {
    min-height: 260px;
    border-radius: 16px;
    height: 530px;
  }

  .cd-diff .cd-why__visual {
    border-radius: 16px;
    margin-bottom: 8px;
  }

  .cd-diff .cd-why__item {
    gap: 16px;
    padding: 15px 0;
  }


  .cd-diff .cd-why__item-icon {
    border-radius: 16px;
  }


  .cd-diff .cd-why__item-title {
    font-size: 15px;
  }

  .cd-diff .cd-why__item-desc {
    font-size: 13px;
  }
}



/* ================= CARD BASE ================= */

.gts-card {
  position: relative;
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* ================= JOBSEEKER ================= */

.gts-jobseeker {
  /* background: url(../img/seeker-bg.png); */
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  background-color: #ffbc00;
}

/* ================= EMPLOYER ================= */

.gts-employer {
  /* background: url(../img/employer-bg.png); */
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  align-items: flex-start;
  background-color: #e63e3b;
}

/* ================= CONTENT ================= */

.gts-card-content h3 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}

.gts-card-content p {
  font-size: 16px;
  line-height: 23px;
  padding-right: 19%;
  margin-bottom: 0;
  color: #fff;
}

.gts-card-content p.boxText {
  margin-bottom: 24px;
}

/* ================= BUTTON ================= */

.gts-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 9px;
  font-weight: 500;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 35px;
  transition: all 0.3s ease;
}

.gts-outline-btn:hover {
  transform: translateY(-2px);
}

/* Arrow button override inside gts-intro-section */
.gts-cta-btn {
  width: fit-content;
  margin-bottom: 35px;
  color: var(--heading);
}

/* ================= STEPS ================= */

.gts-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.gts-steps::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 1px;
  border-left: 1px dashed #ffffff47;
  height: 100%;
  z-index: -1;
}

.gts-steps li {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.gts-steps li:last-child {
  margin-bottom: 0px;
}

.gts-steps li p {
  padding: 10px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
}

.gts-steps li span {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgb(255 255 255 / 0%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  border: 2px solid #ffffff26;
  background-color: #e63e3b;
}

.gts-steps li span.number {
  font-weight: 400;
  width: auto;
  height: auto;
  background-color: transparent;
  border: 0;
  font-size: 16px;
  margin-right: 6px;
}

.gts-steps.org-steps li span.number {
  font-weight: 400;
  width: auto;
  height: auto;
  background-color: transparent;
  border: 0;
  font-size: 16px;
  margin-right: 6px;
}

.gts-steps.org-steps li span {
  background-color: #ffbc00;
}

.gts-steps li span img {
  width: 18px;
}


/* ================= IMAGE ================= */

.gts-card-image {
  position: absolute;
  bottom: 0;
  right: 0px;
  max-width: 59%;
}

.gts-card-image.emp-img {
  position: absolute;
  bottom: -130px;
  right: -40px;
  max-width: 59%;
}

.gts-card-image img {
  width: 100%;
  display: block;
}

.gts-intro-section .sectionTitle {
  margin-bottom: 40px;
}

.gts-intro-section .sectionTitle h2 {
  font-weight: 300;
}

.gts-intro-section .sectionTitle h2 strong {
  font-weight: 700;
}

.gts-card-content {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  height: 100%;
}

.mentor-padding {
  --bs-gutter-x: 3rem;
}

.learner-support-padding {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}


/* ========================================
   QUIZ PAGE (quiz.html)
   ======================================== */

/* ── Hero Banner ────────────────────────── */
.qz-hero-banner {
  background: url(../img/inner-bg.jpg) center center / cover no-repeat;
  padding: 140px 0 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.qz-hero-banner__inner {
  max-width: 680px;
  margin: 0 auto;
}

.qz-hero-banner__title {
  font-size: 50px;
  font-weight: 300;
  color: #000;
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.qz-hero-banner__title span {
  color: var(--primary);
  font-weight: 700;
}

.qz-hero-banner__sub {
  font-size: 17px;
  color: #000;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Landing Card ───────────────────────── */
.qz-land__card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #E8E8EE;
  border-radius: 24px;
  padding: 48px 56px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.07);
}

.qz-land__icon-wrap {
  width: 76px;
  height: 76px;
  background: rgba(230, 62, 59, 0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary);
  margin: 0 auto 30px;
}

.qz-land__title {
  font-weight: 300;
  color: var(--heading);
  font-size: 30px;
  margin: 0 0 16px;
  line-height: 1.15;
}

.qz-land__title span {
  color: var(--primary);
  font-weight: 700;
}

.qz-land__sub {
  font-size: 16px;
  color: #666;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.qz-land__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 25px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  line-height: 1;
}

.qz-land__cta:hover {
  background: #f0ae00;
  box-shadow: 0 8px 28px rgba(255, 188, 0, 0.38);
  transform: translateY(-1px);
}

.qz-land__cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--secondary);
  display: flex;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.qz-land__trust {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #bbb;
  margin: 22px 0 0;
  text-transform: uppercase;
}

/* ── Modal Overlay ──────────────────────── */
.qz-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.qz-modal.open {
  display: flex;
}

.qz-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.55);
  cursor: pointer;
  animation: qzBackdropIn 0.25s ease;
}

@keyframes qzBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.qz-modal__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 20px;
  animation: qzModalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: #E0E0E8 transparent;
}

@keyframes qzModalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.qz-modal__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

/* Modal Header */
.qz-modal__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px 18px;
  border-bottom: 1px solid #F0F0F6;
}

.qz-modal__hdr-l {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.qz-modal__back {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #E0E0EA;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.qz-modal__back:hover {
  border-color: var(--heading);
  color: var(--heading);
}

.qz-modal__slabel {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.qz-modal__prog {
  flex: 1;
  height: 4px;
  background: #EBEBF3;
  border-radius: 30px;
  overflow: hidden;
  min-width: 60px;
}

.qz-modal__prog-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 30px;
  width: 0%;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.qz-modal__hdr-r {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.qz-modal__tip {
  font-size: 12px;
  color: #aaa;
  font-style: italic;
  white-space: nowrap;
  display: none;
}

.qz-modal__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #E0E0EA;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.qz-modal__close:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(230, 62, 59, 0.06);
}

/* ── Steps Body ─────────────────────────── */
.qz-modal__body {
  display: block;
}

.qz-mstep {
  display: none;
  animation: qzStepIn 0.3s ease;
}

.qz-mstep.active {
  display: grid;
  grid-template-columns: 2fr 3fr;
}

@keyframes qzStepIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Left — question column */
.qz-mstep__q {
  padding: 36px 28px 36px 36px;
  background: #FAFAFD;
  border-right: 1px solid #F0F0F6;
  display: flex;
  flex-direction: column;
}

.qz-mstep__icon {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
}

.qz-mstep__lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.qz-mstep__lbl i {
  font-size: 14px;
}

.qz-mstep__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.qz-mstep__desc {
  font-size: 13.5px;
  color: #999;
  margin: 0;
  line-height: 1.65;
}

/* Right — options column */
.qz-mstep__opts {
  padding: 28px 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Radio rows */
.qz-rrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1.5px solid #E8E8EE;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  user-select: none;
}

.qz-rrow:hover {
  border-color: rgba(230, 62, 59, 0.4);
  background: rgba(230, 62, 59, 0.02);
}

.qz-rrow.selected {
  border-color: var(--primary);
  background: rgba(230, 62, 59, 0.04);
  box-shadow: 0 2px 14px rgba(230, 62, 59, 0.10);
}

.qz-rrow__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.3;
}

.qz-rrow__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #D0D0DC;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.18s ease;
}

.qz-rrow__dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.18s ease;
}

.qz-rrow.selected .qz-rrow__dot {
  border-color: var(--primary);
}

.qz-rrow.selected .qz-rrow__dot::after {
  background: var(--primary);
}

/* ── Result Screen ──────────────────────── */
.qz-mresult {
  padding: 48px 40px 36px;
  text-align: center;
  display: none;
  animation: qzStepIn 0.35s ease;
}

.qz-mresult__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.qz-mresult__title span {
  color: var(--primary);
}

.qz-mresult__sub {
  font-size: 15px;
  color: #888;
  margin: 0 0 36px;
}

.qz-mresult__cards {
  margin-bottom: 28px;
  text-align: left;
}

.qz-mcard {
  border: 1.5px solid #E8E8EE;
  border-radius: 14px;
  padding: 22px 18px 18px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  display: flex;
  flex-direction: column;
}

.qz-mcard:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.qz-mcard__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}

.qz-mcard__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
  line-height: 1.3;
}

.qz-mcard__desc {
  font-size: 12.5px;
  color: #777;
  margin: 0 0 14px;
  line-height: 1.55;
  flex: 1;
}

.qz-mcard__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.qz-mcard__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555;
  font-weight: 500;
}

.qz-mcard__list li i {
  font-size: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.qz-mcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px 6px 6px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(230, 62, 59, 0.30);
  line-height: 1;
}

.qz-mcard__cta:hover {
  background: #cc3532;
  transform: translateY(-1px);
  color: #fff;
}

.qz-mcard__cta-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.qz-mresult__retake {
  font-size: 13px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-family);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.qz-mresult__retake:hover {
  color: var(--primary);
}

/* ── Modal Footer Bar ───────────────────── */
.qz-modal__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-top: 1px solid #F0F0F6;
}

.qz-modal__foot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
}

.qz-modal__foot-txt {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #bbb;
  text-transform: uppercase;
}

/* ── Responsive ─────────────────────────── */
@media (min-width: 768px) {
  .qz-modal__tip {
    display: block;
  }
}

@media (max-width: 991px) {
  .qz-hero-banner {
    padding: 130px 0 80px;
  }

  .qz-hero-banner__title {
    font-size: 40px;
  }

  .qz-mresult__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .qz-hero-banner {
    padding: 110px 0 60px;
  }

  .qz-hero-banner__title {
    font-size: 32px;
  }

  .qz-land__card {
    padding: 40px 24px;
  }

  .qz-land__title {
    font-size: 28px;
  }

  .qz-mstep.active {
    display: flex;
    flex-direction: column;
  }

  .qz-mstep__q {
    padding: 24px 20px 20px;
    border-right: none;
    border-bottom: 1px solid #F0F0F6;
  }

  .qz-mstep__opts {
    padding: 20px;
  }

  .qz-mresult__cards {
    grid-template-columns: 1fr;
  }

  .qz-mresult {
    padding: 28px 20px 24px;
  }

  .qz-mresult__title {
    font-size: 24px;
  }

  .qz-modal__hdr {
    padding: 14px 18px 12px;
  }
}

@media (max-width: 480px) {
  .qz-hero-banner__title {
    font-size: 26px;
  }

  .qz-land__title {
    font-size: 24px;
  }

  .qz-land__card {
    padding: 32px 18px;
  }
}



/* ========================================
   COUNSELLOR PAGE (counsellor.html)
   ======================================== */

.cl-hero {
  /* background: linear-gradient(135deg, var(--heading) 0%, #2D2D52 100%); */
  background: url(../img/inner-bg.jpg) center center / cover no-repeat;

  padding: 140px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}



.cl-hero__title {
  font-size: 50px;
  font-weight: 300;
  color: #000;
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cl-hero__title span {
  color: var(--primary);
  font-weight: 700;
}

.cl-hero__sub {
  font-size: 17px;
  color: #000;
  max-width: 520px;
  margin: 0 auto 25px;
  line-height: 1.75;
}

.cl-hero__cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cl-hero__cta-icon i {
  font-weight: 400;
  font-size: 18px;
}

.cl-hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cl-hero__trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cl-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  color: #000;
}

.cl-hero__trust-item i {
  font-size: 15px;
  color: #10B981;
}

/* What You'll Get */


.cl-value__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cl-value__title {
  color: var(--heading);
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}

.cl-value__sub {
  font-size: 16px;
  color: #666;
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

.cl-value__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cl-val-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  position: relative;
  overflow: hidden;
}

.cl-val-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cl-val-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.cl-val-card:hover::before {
  opacity: 1;
}

.cl-val-card__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(230, 62, 59, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cl-val-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(230, 62, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
}

.cl-val-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px;
}

.cl-val-card__desc {
  font-size: 14px;
  color: #000;
  line-height: 1.65;
  margin: 0;
}

/* Form Section */
.cl-form-section {
  background: #F8F8F8;
}

.cl-form-section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cl-form-section__title {
  color: var(--heading);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.cl-form-section__sub {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 400px;
}

.cl-reassure {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.cl-reassure__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cl-reassure__icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(230, 62, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.cl-reassure__text strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2px;
}

.cl-reassure__text span {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
}

/* Form Card */
.cl-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.cl-form-card__title {
  font-size: 25px;
  color: var(--heading);
  font-weight: 700;
  margin: 0 0 10px;
}

.cl-form-card__sub {
  font-size: 16px;
  color: #000;
  margin: 0 0 32px;
}

.cl-fg {
  margin-bottom: 20px;
}

.cl-fg label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 7px;
}

.cl-fg label span {
  color: var(--primary);
}

.cl-fg input,
.cl-fg select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--heading);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.cl-fg input::placeholder {
  color: #C0C0C8;
}

.cl-fg input:focus,
.cl-fg select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 62, 59, 0.10);
}

.cl-select-wrap {
  position: relative;
}

.cl-select-wrap::after {
  content: '\ea4e';
  font-family: 'remixicon';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
  pointer-events: none;
}

.cl-fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cl-time-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cl-time-pill {
  flex: 1;
  min-width: 90px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.cl-time-pill input[type="radio"] {
  display: none;
}

.cl-time-pill__icon {
  font-size: 18px;
  color: #aaa;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.cl-time-pill__label {
  font-size: 13px;
  font-weight: 600;
  color: #777;
  transition: color 0.2s ease;
}

.cl-time-pill:hover {
  border-color: var(--primary);
}

.cl-time-pill.selected {
  border-color: var(--primary);
  background: rgba(230, 62, 59, 0.06);
}

.cl-time-pill.selected .cl-time-pill__icon,
.cl-time-pill.selected .cl-time-pill__label {
  color: var(--primary);
}

.cl-fg .cl-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  cursor: pointer;
}

.cl-consent__box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: #fff;
}

.cl-consent input[type="checkbox"] {
  display: none;
}

.cl-consent__box i {
  display: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.cl-consent input[type="checkbox"]:checked+.cl-consent__box {
  background: var(--primary);
  border-color: var(--primary);
}

.cl-consent input[type="checkbox"]:checked+.cl-consent__box i {
  display: block;
}

.cl-consent__text {
  font-size: 13.5px;
  color: #666;
  line-height: 1.55;
}

.cl-submit {
  width: 100%;
  padding: 16px 25px;
  border: none;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: max-content;
  gap: 10px;
  line-height: 1.2;
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 22px rgba(230, 62, 59, 0.28);
}

/* .cl-submit:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(230, 62, 59, 0.35);
} */

/* .cl-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
} */

.cl-submit__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cl-submit__icon i {
  font-weight: 400;
  font-size: 18px;
}

.cl-thankyou {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeSlideIn 0.4s ease;
}

.cl-thankyou.show {
  display: block;
}

.cl-thankyou__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #EDFAF4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #10B981;
  margin: 0 auto 22px;
}

.cl-thankyou__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 10px;
}

.cl-thankyou__sub {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

/* FAQ Section */


.cl-faq__head {
  text-align: center;
  margin-bottom: 52px;
}

.cl-faq__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cl-faq__title {
  color: var(--heading);
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

.cl-faq__sub {
  font-size: 15px;
  color: #777;
  margin: 0;
}

.cl-faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cl-faq__item {
  border-bottom: 1.5px solid var(--border);
}

.cl-faq__item:first-child {
  border-top: 1.5px solid var(--border);
}

.cl-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 4px;
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.cl-faq__question:hover {
  color: var(--primary);
}

.cl-faq__question.open {
  color: var(--primary);
}

.cl-faq__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #aaa;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.cl-faq__question.open .cl-faq__arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.cl-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.cl-faq__answer.open {
  max-height: 300px;
}

.cl-faq__answer-inner {
  padding: 0 4px 22px;
  font-size: 15px;
  color: #666;
  line-height: 1.75;
}

/* CTA Band */
.cl-cta-band {
  padding: 90px 0;
  background: #fff;
}

.cl-cta-band__inner {
  background: linear-gradient(135deg, var(--heading) 0%, #2D2D52 100%);
  border-radius: var(--radius);
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cl-cta-band__inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(230, 62, 59, 0.18) 0%, transparent 65%);
  border-radius: 50%;
}

.cl-cta-band__title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}

.cl-cta-band__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.cl-cta-band__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cl-cta-band__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-family);
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
  box-shadow: 0 6px 20px rgba(230, 62, 59, 0.35);
}

.cl-cta-band__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}

.cl-cta-band__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-family);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}

.cl-cta-band__btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

@media (max-width: 1199px) {
  .cl-cta-band__inner {
    padding: 48px 40px;
  }
}

@media (max-width: 991px) {
  .cl-hero__title {
    font-size: 38px;
  }

  .cl-value__cards {
    grid-template-columns: 1fr 1fr;
  }

  .cl-form-card {
    padding: 36px 28px;
  }

  .cl-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .cl-cta-band__actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .cl-hero {
    padding: 115px 0 70px;
  }

  .cl-hero__title {
    font-size: 30px;
    letter-spacing: -0.3px;
  }

  .cl-hero__sub {
    font-size: 15px;
  }

  .cl-hero__trust-row {
    gap: 14px;
  }

  .cl-value {
    padding: 70px 0;
  }

  .cl-value__cards {
    grid-template-columns: 1fr;
  }

  .cl-value__title {
    font-size: 28px;
  }

  .cl-form-section {
    padding: 70px 0;
  }

  .cl-form-section__title {
    font-size: 28px;
  }

  .cl-form-card {
    padding: 28px 20px;
  }

  .cl-fg-row {
    grid-template-columns: 1fr;
  }

  .cl-faq {
    padding: 70px 0;
  }

  .cl-faq__title {
    font-size: 26px;
  }

  .cl-cta-band {
    padding: 60px 0;
  }

  .cl-cta-band__inner {
    padding: 36px 24px;
  }

  .cl-cta-band__title {
    font-size: 22px;
  }

  .cl-cta-band__actions {
    flex-direction: column;
    width: 100%;
  }

  .cl-cta-band__btn-primary,
  .cl-cta-band__btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cl-hero__title {
    font-size: 26px;
  }

  .cl-time-pills {
    flex-direction: column;
  }

  .cl-time-pill {
    min-width: unset;
  }
}


/* ==========================================================================
   COURSE DETAIL — Modernization overlay
   Refines spacing, typography, cards, hover states; aligns with the home
   page's section-header / card aesthetic.
   ========================================================================== */

/* ---- Hero polish ---- */
.cd-hero {
  padding: 150px 0 100px;
}

.cd-hero__content {
  position: relative;
  text-align: start;
}

.contact_banner .cd-hero__content {
  position: relative;
  text-align: center;
}

.cd-hero__content::before {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(232, 65, 66, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.cd-hero__title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cd-hero__subtitle {
  font-size: 17px;
  color: #4a4a55;
  max-width: 520px;
}

.cd-hero__pill {
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(232, 65, 66, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-hero__pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 65, 66, 0.28);
}

.cd-hero__form-card {
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(20, 20, 50, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ---- Info strip ---- */
.cd-info-strip {
  margin-top: -32px;
  position: relative;
  z-index: 3;
}

.cd-info-strip__card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border, #ebebef);
  box-shadow: 0 10px 30px rgba(20, 20, 50, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-info-strip__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20, 20, 50, 0.10);
}

.cd-info-strip__icon {
  background: rgba(232, 65, 66, 0.08);
  color: var(--primary);
  border-radius: 14px;
}

/* ---- Section-level header pattern (eyebrow-like via ::before on titles) ---- */
.cd-overview__title,
.cd-eligibility__title,
.cd-program-structure__title,
.cd-fees__title,
.cd-curriculum__title,
.cd-batch__title,
.cd-demand__title,
.cd-career__title,
.cd-gateway__heading,
.cd-why__title,
.cd-different__title {
  position: relative;
  font-weight: 300;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.cd-overview__title strong,
.cd-eligibility__title strong,
.cd-program-structure__title strong,
.cd-fees__title strong,
.cd-curriculum__title strong,
.cd-batch__title strong,
.cd-demand__title strong,
.cd-career__title strong,
.cd-gateway__heading strong {
  font-weight: 700;
  color: var(--heading);
}

/* ---- Overview ---- */
.cd-overview {
  padding: 90px 0;
}

.cd-overview__heading {
  color: var(--heading);
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 18px;
}

.cd-overview__para {
  color: var(--paragraph, #4a4a55);
  line-height: 1.8;
}

.cd-overview__img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 20, 50, 0.12);
}

.cd-overview__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ---- Gateway cards ---- */
.cd-gateway {
  padding: 90px 0;
}

.cd-gateway__card {
  background: var(--white);
  border: 1px solid var(--border, #ebebef);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cd-gateway__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 20, 50, 0.10);
  border-color: rgba(232, 65, 66, 0.35);
}

.cd-gateway__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}

.cd-gateway__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading);
  margin: 0;
}

/* ---- Eligibility table ---- */
.cd-eligibility {
  padding: 80px 0;
}

.cd-eligibility__table-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 20, 50, 0.06);
  border: 1px solid var(--border, #ebebef);
}

.cd-eligibility__table thead tr {
  background: var(--primary);
}

.cd-eligibility__table thead th {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.cd-eligibility__table tbody tr:hover {
  background: rgba(232, 65, 66, 0.04);
}

/* ---- Curriculum ---- */
.cd-curriculum {
  padding: 90px 0;
  background: linear-gradient(180deg, transparent, rgba(232, 65, 66, 0.02));
}

/* ---- Batch / Demand ---- */
.cd-batch,
.cd-demand,
.cd-career,
.cd-program-structure {
  padding: 80px 0;
}

/* ---- Fees ---- */
.cd-fees {
  padding: 90px 0;
}

.cd-fees__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.cd-fees__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.cd-fees__title::before {
  content: "Investment & EMI";
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.cd-fees__subtitle {
  color: var(--paragraph, #4a4a55);
  line-height: 1.75;
}

.cd-fees__prog-card {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(20, 20, 50, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-fees__prog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(20, 20, 50, 0.12);
}

.cd-fees__table-card {
  border-radius: 18px;
  border: 1px solid var(--border, #ebebef);
  box-shadow: 0 10px 30px rgba(20, 20, 50, 0.05);
  overflow: hidden;
}

.cd-fees__feat {
  background: var(--white);
  border: 1px solid var(--border, #ebebef);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-fees__feat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(20, 20, 50, 0.08);
}

.cd-fees__feat-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* ---- Advisor section ---- */
.cd-advisor {
  padding: 70px 0;
}

.cd-advisor__inner {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 20, 50, 0.10);
}

.cd-advisor__btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cd-advisor__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

/* ---- Generic cd-* card lift ---- */
.cd-curriculum__module,
.cd-batch__card,
.cd-demand__card,
.cd-career__card,
.cd-program-structure__card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-curriculum__module:hover,
.cd-batch__card:hover,
.cd-demand__card:hover,
.cd-career__card:hover,
.cd-program-structure__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20, 20, 50, 0.08);
}

/* ---- Subtle divider between major sections ---- */
.cd-overview+.cd-gateway,
.cd-gateway+.cd-why,
.cd-why+.gts-intro-section,
.cd-eligibility+.cd-curriculum,
.cd-curriculum+.cd-batch,
.cd-program-structure+.cd-career,
.cd-career+.cd-fees {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

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

  .cd-hero {
    padding: 140px 0 60px;
  }

  .cd-hero__title {
    font-size: 32px;
  }

  .cd-overview,
  .cd-gateway,
  .cd-eligibility,
  .cd-curriculum,
  .cd-batch,
  .cd-demand,
  .cd-career,
  .cd-program-structure,
  .cd-fees {
    padding: 60px 0;
  }
}


.qz-land {
  padding-top: 0;
  margin-top: -100px;
  z-index: 1;
  position: relative;
}

/* ========================================
   NEW SECTIONS — Sitemap Update
   ======================================== */

/* 4 Key Features Strip */
.features-strip-section {
  padding: 0;
}

.features-strip {
  border-top: 4px solid var(--primary);
}

.feature-strip-card {
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  height: 100%;
}

.feature-strip-card--yellow {
  background: var(--secondary);
  color: #0a0a0a;
}

.feature-strip-card--red {
  background: var(--primary);
  color: #fff;
}

.feature-strip-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}

.feature-strip-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.feature-strip-card__desc {
  font-size: 13.5px;
  opacity: 0.85;
  margin: 0;
  line-height: 1.5;
}

/* Two Programme Type Blocks */
.prog-blocks-section {
  padding: var(--section-padding);
}

.prog-block-row {
  margin-bottom: 60px;
}

.prog-block-row:last-child {
  margin-bottom: 0;
}

.prog-block__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}

.prog-block__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.prog-block__content {
  padding: 0 24px;
}

.prog-block__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.prog-block__label--red {
  background: var(--primary);
  color: #fff;
}

.prog-block__label--yellow {
  background: var(--secondary);
  color: #0a0a0a;
}

.prog-block__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.prog-block__desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* Study & Work Abroad Section */
.abroad-section {
  padding: var(--section-padding);
  background: #0a0a0a;
  color: #fff;
}

.abroad-section__title {
  color: #fff;
}

.abroad-section__subtitle {
  color: rgba(255, 255, 255);
  margin: 0 auto 48px;
}

.abroad-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: 16px 16px 16px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abroad-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.abroad-card--red {
  border-top-color: var(--primary);
}

.abroad-card__icon {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1;
}

.abroad-card--red .abroad-card__icon {
  color: var(--primary);
}

.abroad-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.abroad-card__desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.abroad-section__footer {
  text-align: center;
  margin-top: 48px;
}

.abroad-section__partner-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 20px;
}


/* ========================================
   3-TAB MEGAMENU
   ======================================== */

.mm-tabbed {
  min-width: 860px;
  height: 441px;
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
}

.mm-tab-strip {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 14px 16px 12px;
  background: transparent;
  border-bottom: none;
  overflow: visible;
}

.mm-tab-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  background: transparent;
  color: var(--heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s ease;
}

.mm-tab-btn:hover {
  border-color: var(--primary);
  color: #ffffff !important;
  background: var(--primary);
}

.mm-tab-btn--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}

.mm-tab-pane {
  display: none;
  padding: 24px 28px 20px;
}

.mm-tab-pane--active {
  display: block;
  overflow-y: auto;
}

/* Industry grid — 3 columns */
.mm-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 16px;
  margin-bottom: 20px;
}

.mm-industry-item {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.mm-industry-item:hover {
  background: #fff5f5;
}

.mm-industry-item__name {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.mm-industry-item__sub {
  font-size: 11.5px;
  color: #888;
  line-height: 1.4;
}

/* ── Active pane fills column space below the tab strip ── */
.mm-tabbed .mm-tab-pane--active {
  flex: 1;
}

/* ── mm-split-layout: sidebar + cards inside Browse by Industry tab ── */
#mm-industry {
  padding: 0;
}

#mm-industry.mm-tab-pane--active {
  display: flex;
  flex-direction: column;
}

#mm-industry .mm-foot {
  padding: 12px 24px;
  flex-shrink: 0;
}

.mm-split-layout {
  display: flex;
  flex: 1;
  align-items: stretch;
  overflow: hidden;
}

.mm-split-sidebar {
  flex: 0 0 230px;
  width: 230px;
  background: #fff;
  border-right: 1px solid #f0f0f0;
  padding: 8px 11px 8px 11px;
  overflow-y: auto;
}

.mm-split-sidebar .courses-nav {
  padding: 0;
  gap: 2px;
}

.mm-split-sidebar .courses-nav .nav-item {
  margin-bottom: 0;
  width: 100%;
}

.mm-split-sidebar .courses-nav__link {
  font-size: 12.5px;
  padding: 8px 12px 8px 14px;
  border-radius: 50px;
  border-left: 0px solid transparent;
  width: 100%;
}



.mm-split-content {
  flex: 1;
  background: #fafafa;
  padding: 18px 20px;
  overflow-y: auto;
}

.mm-split-title {
  font-size: 17px;
  font-weight: 300;
  color: var(--heading);
  margin-bottom: 14px;
}

.mm-split-title strong {
  font-weight: 700;
}

.mm-split-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.mm-split-cards-grid .courses-grid-card {
  padding: 15px;
  gap: 18px;
  border-radius: 10px !important;
}

.mm-split-cards-grid .courses-grid-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.mm-split-cards-grid .courses-grid-card__meta {
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
}

.mm-split-cards-grid .who-for-card__btn {
  font-size: 12px;
  padding: 0;
  margin-top: auto;
  width: max-content;
  line-height: 1;
  border: 0;
  color: #f93c2b;
}

.mm-split-cards-grid .who-for-card:hover .who-for-card__btn,
.mm-split-cards-grid .who-for-card--active .who-for-card__btn,
.mm-split-cards-grid .who-for-card__btn:hover {
  background: transparent;
  color: var(--primary) !important;
}

.mm-split-cards-grid .who-for-card__btn-circle {
  display: none;
}

.mm-split-cards-grid .new-course-card {
  background: #fff;
  padding: 10px;
}

.mm-split-cards-grid .new-course-card__img-wrap {
  height: 140px;
}

.mm-split-cards-grid .new-course-card__body {
  padding: 0px 0 0;
}

.mm-split-cards-grid .new-course-card__body .new-course-card__meta-val {
  font-size: 14px !important;
}

.mm-split-cards-grid .new-course-card__title {
  font-size: 17px;
  margin-bottom: 8px;
}

.mm-split-cards-grid .new-course-card__meta {
  gap: 8px;
  margin-bottom: 8px;
}

/* ── Coloured icon boxes for Browse by Industry cards ── */
.mm-meta-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mm-meta-icon--duration {
  background: #fff3e0;
  color: #e67e00;
}

.mm-meta-icon--university {
  background: #eef2ff;
  color: #4f46e5;
}

.mm-split-cards-grid .new-course-card__meta-icon {
  width: 36px;
  height: 36px;
}

.mm-split-cards-grid .new-course-card__meta-label {
  font-size: 10.5px;
}

.mm-split-cards-grid .new-course-card__meta-val {
  font-size: 11.5px;
}

.mm-split-cards-grid .who-for-card__btn {
  font-size: 12px;
  /* padding: 6px 12px; */
}

.mm-split-cards-grid .who-for-card__btn-circle {
  display: none;
}

/* ── Cert & Degree panes: 4-column card grid ── */
#mm-cert,
#mm-degree {
  padding: 20px 24px;
}

/* No images inside mega menu cert/degree cards */
#mm-cert .courses-grid-card__img-wrap,
#mm-degree .courses-grid-card__img-wrap {
  display: none;
}

/* No arrow circle on View Details in cert/degree mega menu cards */
#mm-cert .who-for-card__btn-circle,
#mm-degree .who-for-card__btn-circle {
  display: none;
}

/* Hide UGC Recognised badge in degree mega menu cards */
#mm-degree .courses-grid-card__meta span:last-child {
  display: none;
}

.mm-course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

/* compact courses-grid-card overrides inside the 4-column mega menu grid */
.mm-course-grid .courses-grid-card {
  padding: 15px;
  gap: 18px;
  border-radius: 10px !important;
}

.mm-course-grid .courses-grid-card__img-wrap {
  height: 130px !important;
}

.mm-course-grid .courses-grid-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.mm-course-grid .courses-grid-card__meta {
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
}

.mm-course-grid .who-for-card__btn {
  font-size: 12px;
  padding: 0;
  margin-top: auto;
  width: max-content;
  line-height: 1;
  border: 0;
  color: #f93c2b;
}

.mm-course-grid .who-for-card:hover .who-for-card__btn,
.mm-course-grid .who-for-card--active .who-for-card__btn {
  background: transparent;
  color: #000;
}

.mm-course-grid .who-for-card__btn:hover {
  background: transparent;
  color: #000;
}

.mm-course-grid .who-for-card__btn-circle {
  width: 26px;
  height: 26px;
  font-size: 13px;
}

/* Programme cards grid — 4 columns */
.mm-prog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.mm-prog-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  border-radius: 8px;
  border: 1px solid #ececec;
  text-decoration: none;
  transition: all 0.15s ease;
  background: #fff;
}

.mm-prog-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(230, 62, 59, 0.08);
  transform: translateY(-2px);
}

.mm-prog-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 999px;
  width: fit-content;
}

.mm-prog-card--cert .mm-prog-card__badge {
  background: #FFF3CD;
  color: #856404;
}

.mm-prog-card--degree .mm-prog-card__badge {
  background: #fdecea;
  color: var(--primary);
}

.mm-prog-card__name {
  font-size: 12.5px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
}

.mm-prog-card__meta {
  font-size: 11px;
  color: #999;
}

/* Megamenu footer bar */
.mm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.mm-foot__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.mm-foot__link:hover {
  text-decoration: underline;
}

.mm-foot__quiz {
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.mm-foot__quiz:hover {
  background: #ffeeee;
  color: var(--primary);
}

/* Mobile menu group labels */
.ej-mobile-menu__submenu-group-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  padding: 10px 12px 4px;
  list-style: none;
}


/* ========================================
   FEATURES STRIP — WHITE CARDS
   ======================================== */
.features-strip-section {
  padding: 80px 0 60px;
  background: #fff;
}

.features-strip-header {
  text-align: center;
  margin-bottom: 48px;
}


.features-strip-header__sub {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.feature-white-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-white-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
}

.feature-white-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ic-bg);
  color: var(--ic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-white-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.feature-white-card__desc {
  font-size: 13.5px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   PROGRAMME TYPE CARDS — horizontal pair
   ======================================== */
.prog-blocks-section {
  padding: 80px 0;
}

.prog-blocks-header {
  text-align: center;
  margin-bottom: 48px;
}


.prog-blocks-header__title strong {
  font-weight: 800;
}

.prog-blocks-header__sub {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.prog-type-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  height: 100%;
  border-bottom: 5px solid transparent;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prog-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

/* Collapsible chevron — hidden on desktop, shown at <992px via responsive.css */
.prog-type-card__chevron {
  display: none;
  font-size: 22px;
  color: var(--dark);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Body grid collapse — only active at <992px via responsive.css */
.prog-type-card__body-inner {
  overflow: hidden;
}

.prog-type-card--degree {
  border-bottom-color: var(--primary);
}

.prog-type-card--cert {
  border-bottom-color: var(--secondary);
}

.prog-type-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.prog-type-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 14px;
  border-radius: 999px;
}

.prog-type-card--degree .prog-type-card__badge {
  background: #fdecea;
  color: var(--primary);
}

.prog-type-card--cert .prog-type-card__badge {
  background: #fff8e1;
  color: #856404;
}

.prog-type-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.prog-type-card--degree .prog-type-card__icon {
  background: #fdecea;
  color: var(--primary);
}

.prog-type-card--cert .prog-type-card__icon {
  background: #fff8e1;
  color: #b38b00;
}

.prog-type-card__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.prog-type-card__desc {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}

.prog-type-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.prog-type-card__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #000;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
}

.prog-type-card__bullets li:last-child {
  border-bottom: none;
}

.prog-type-card__bullets .ri-check-line {
  color: #16a34a;
  font-size: 16px;
  flex-shrink: 0;
}

/* Custom tick icon */
.ej-tick {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ========================================
   COURSES CATEGORY TABS
   ======================================== */
.courses-cat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.courses-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid #e8e8e8;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s ease;
}

.courses-cat-tab i {
  font-size: 16px;
}

.courses-cat-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.courses-cat-tab--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}

/* ========================================
   WHY CARD ICONS — Remix icon style
   ======================================== */
.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fdecea;
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
}

/* ========================================
   SECTION 13 — GALLERY
   ======================================== */
.gallery-section {
  padding: 80px 0;
  background: #fff;
}

.gallery-section__subtitle {
  font-size: 15px;
  color: #666;
  margin: 0 auto;
}

/* Gallery filter dropdown — mobile only (below 1000px) */
.gallery-filter-dropdown {
  display: none;
  position: relative;
  margin: 32px auto 0;
  max-width: 400px;
}

.gallery-filter-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  gap: 8px;
  transition: border-color 0.2s;
}

.gallery-filter-dropdown__trigger:hover {
  border-color: var(--primary);
}

.gallery-filter-dropdown__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-filter-dropdown__label i {
  font-size: 16px;
  color: var(--primary);
}

.gallery-filter-dropdown__arrow {
  font-size: 18px;
  color: #888;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.gallery-filter-dropdown__arrow.open {
  transform: rotate(180deg);
}

.gallery-filter-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 16px;
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.gallery-filter-dropdown__menu.open {
  display: block;
}

.gallery-filter-dropdown__menu li button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.gallery-filter-dropdown__menu li button:hover,
.gallery-filter-dropdown__menu li button.active {
  background: #fff5f5;
  color: var(--primary);
}

.gallery-filter-dropdown__menu li button i {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0 40px;
}

.gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 2px solid #e8e8e8;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.gallery-filter i {
  font-size: 15px;
  flex-shrink: 0;
}

.gallery-filter:hover,
.gallery-filter--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-tile {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  position: relative;
  cursor: pointer;
}

.gallery-tile--tall {
  grid-row: span 2;
}

.gallery-tile--wide {
  grid-column: span 2;
}

.gallery-tile--video {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.gallery-tile__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}

.gallery-tile__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 999px;
}

.gallery-tile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-tile__play:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.gallery-section__footer {
  text-align: center;
  margin-top: 40px;
}

.mm-split-cards-grid .courses-grid-card__meta {
  margin-bottom: 12px !important;
}

/* ========================================
   MODERN DESIGN — merged from modern.css
   ======================================== */
/* ╔══════════════════════════════════════════════════════╗
   ║   MODERN DESIGN REFRESH — Satoshi era               ║
   ╚══════════════════════════════════════════════════════╝ */

/* ─── Root token overrides ────────────────────────────── */
:root {
  --primary: #F93C2B;
  --primary-dark: #8E0C00;
  --primary-gradient: linear-gradient(135deg, #3346d8 0%, #2937a8 100%);
  --secondary: #FFBC00;
  --dark: #0f0f12;
  --ink: #1c1c22;
  --ink-soft: #4a4a55;
  --ink-muted: #8e8e9a;
  --surface: #ffffff;
  --surface-2: #f7f7f9;
  --border: #ebebef;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(15, 15, 18, 0.07);
  --shadow-md: 0 6px 32px rgba(15, 15, 18, 0.10);
  --shadow-lg: 0 16px 56px rgba(15, 15, 18, 0.13);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base ──────────────────────────────────────────────── */
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

p {
  color: var(--ink-soft);
  line-height: 1.72;
}

/* ─── Announcement bar ──────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, #0f0f12 0%, #1e1e28 50%, #0f0f12 100%);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 0;
}

.announcement-bar a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity var(--transition);
}

.announcement-bar a:hover {
  opacity: 0.8;
}

/* ─── Header ────────────────────────────────────────────── */
.site-header {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgb(255 255 255);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15, 15, 18, 0.04);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.site-header__nav-link {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--transition);
}

.site-header__nav-link:hover,
.site-header__nav-link--active {
  color: var(--primary);
}


.site-header__counsel-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(222, 79, 71, 0.35);
}

.site-header__dropdown,
.site-header__megamenu {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-custom {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 7px 22px 7px 7px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}


.btn-custom:hover {
  transform: translateY(-2px);
}

.btn-custom:active {
  transform: translateY(0);
}

.btn-red,
.btn-custom.btn-red {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgb(51 70 216 / 36%);
}

.btn-red:active,
.btn-custom.btn-red:active {
  color: #fff !important;
}

.cd-form .btn-red,
.cd-form .btn-custom.btn-red {
  background: var(--secondary);
  color: #fff;
  box-shadow: none;
}


.btn-red:hover,
.btn-custom.btn-red:hover {
  background: var(--primary-gradient);
  box-shadow: 0 4px 16px rgb(51 70 216 / 36%);
}

.btn-yellow,
.btn-custom.btn-yellow {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 188, 0, 0.22);
}

.btn-yellow:hover,
.btn-custom.btn-yellow:hover {
  background: #f0b000;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 188, 0, 0.32);
}

/* 1-Min Quiz / grey → gradient red with white text */
.btn-grey,
.btn-custom.btn-grey {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249, 60, 43, 0.30);
}

.btn-grey:hover,
.btn-custom.btn-grey:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(142, 12, 0, 0.38);
}

/* ─── Hero — full viewport height + bg image ────────────── */
.hero-section {
  background: url('../img/ehhb.png') center center / cover no-repeat;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Let the Bootstrap container/row fill the height naturally */
.hero-section>.container {
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}

/* ─── Hero right image ───────────────────────────────────── */
.hero-right-img {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-right-img__img {
  width: 100%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 32px 64px rgba(15, 15, 18, 0.20));
  border-radius: 20px;
  margin-left: auto;
}

.hero-section__title {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(36px, 4.2vw, 50px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  white-space: nowrap;
}

.hero-section__title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-section__title span::after {
  display: none;
}

.hero-section__subtitle {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 400;
}

.hero-features li {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}



/* ─── Feature white cards ───────────────────────────────── */
.feature-white-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(15, 15, 18, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  /* padding: 36px 28px; */
  background: #fff;
}

.feature-white-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(15, 15, 18, 0.10);
}

.feature-white-card__icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 26px;
}

.feature-white-card__title {
  font-weight: 700;
  color: var(--dark);
}

.feature-white-card__desc {
  font-size: 16px;
  color: #000;
}

/* ─── Programme type cards ──────────────────────────────── */
.prog-type-card {
  border-radius: 22px;
  padding: 44px 40px;
  box-shadow: 0 4px 32px rgba(15, 15, 18, 0.07);
  background: #fff;
}

.prog-type-card:hover {
  box-shadow: 0 20px 60px rgba(15, 15, 18, 0.12);
}

.prog-type-card__title {
  font-family: 'Satoshi', sans-serif;
}

/* ─── Course cards ──────────────────────────────────────── */
.new-course-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 15, 18, 0.05);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  background: #fff;
}

.new-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15, 15, 18, 0.10);
}

.new-course-card__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.courses-cat-tab {
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  border-radius: 999px;
  font-size: 14px;
  padding: 10px 24px;
  border-width: 1.5px;
  letter-spacing: -0.01em;
  transition: all var(--transition);
}

.courses-cat-tab--active {
  background: #f23928;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(222, 79, 71, 0.25);
}

/* ─── Who-for cards ─────────────────────────────────────── */
.who-for-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.who-for-card:hover {
  /* transform: translateY(-4px); */
  box-shadow: var(--shadow-md);
}

.who-for-card__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ─── Stats / Why cards ─────────────────────────────────── */
.why-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 15, 18, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card__odometer,
.why-card__num-wrap {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  color: #1a2b5e;
}

.why-card__suffix {
  font-weight: 900;
  color: var(--primary);
}

.why-card__label {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-soft);
}

.why-card__icon {
  border-radius: 14px;
  width: 52px;
  height: 52px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.why-card--cta {
  background: linear-gradient(135deg, #0f0f12 0%, #1e1e2e 100%);
  border: none;
}

.why-card--cta .why-card__cta-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #fff;
}

/* ─── Career cards ──────────────────────────────────────── */
.career-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.career-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.career-card__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ─── Testimonials ──────────────────────────────────────── */






/* ─── Awards ────────────────────────────────────────────── */
.award-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 15, 18, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.award-card__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ─── Abroad / GTS ──────────────────────────────────────── */

.abroad-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgb(255 255 255 / 25%);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.abroad-card:hover {
  border-color: rgb(255, 255, 255);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.abroad-card__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.abroad-card__icon {
  font-size: 30px;
}

/* ─── Platform banner ───────────────────────────────────── */
.platform-banner {
  background-image: url('../img/small-cta-bg.jpg');
  min-height: unset;
}

.platform-banner__visual {
  position: absolute;
  right: -32px;
  bottom: 00;
  left: auto;
  top: auto;
  width: 57%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  height: auto;
}

.platform-banner__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  max-height: none;
}

.platform-banner__title {
  font-family: 'Satoshi', sans-serif;
  color: #fff;
}


.platform-banner__subtitle {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

/* ─── FAQ ───────────────────────────────────────────────── */
.accordion-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(15, 15, 18, 0.04);
}


/* ─── Consultation banner ───────────────────────────────── */
.consult-banner {
  background-image: url(../img/cta-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}



.consult-banner__subtitle {
  color: #fff;
  line-height: 1.7;
}

/* ─── Gallery ───────────────────────────────────────────── */
.gallery-tile {
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
  background: linear-gradient(135deg, #ececf1 0%, #e0e0e8 100%);
}

.gallery-tile--video {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f12 100%);
}

.gallery-tile:hover {
  transform: scale(1.025);
}

/* ─── Gallery filters — match courses-cat-tab style ─────── */
.gallery-filter {
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  color: #555;
  letter-spacing: -0.01em;
  transition: all var(--transition);
}

.gallery-filter i {
  font-weight: 400;
}

.gallery-filter:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

.gallery-filter--active {
  background: #f23928;
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(222, 79, 71, 0.25);
}

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
}



.site-footer__link-list a {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}

.site-footer__link-list a:hover {
  color: var(--primary);
}

.site-footer__copyright p {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
}



.footer-newsletter__input {
  font-family: 'Satoshi', sans-serif;
  border-radius: 999px;
}

.footer-newsletter__btn {
  border-radius: 999px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  background: var(--primary);
  transition: background var(--transition);
}

.footer-newsletter__btn:hover {
  background: var(--primary-dark);
}

/* ─── Mobile menu ───────────────────────────────────────── */
.ej-mobile-menu__link,
.ej-mobile-menu__sublink {
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ─── Megamenu ──────────────────────────────────────────── */
.mm-tab-btn {
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
}

.mm-industry-item__name {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
}

.mm-prog-card__name {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
}

/* ─── Inputs global ─────────────────────────────────────── */
input,
textarea,
select {
  font-family: 'Satoshi', sans-serif;
  letter-spacing: -0.01em;
}

/* ─── Subtle section separators ────────────────────────── */
.features-strip-section,
.prog-blocks-section,
.courses-section,
.who-for-section,
.choose-section,
.gallery-section,
.faq-section {
  border-top: 1px solid var(--border);
}

/* ─── Gradient red override for all key red surfaces ──── */
.site-header__counsel-btn {
  background: linear-gradient(135deg, #F93C2B 0%, #8E0C00 100%);
}

.site-header__counsel-btn:hover {
  background: linear-gradient(135deg, #e02e1e 0%, #7a0800 100%);
}

.footer-newsletter__btn {
  background: var(--primary-gradient);
}

.footer-newsletter__btn:hover {
  background: linear-gradient(135deg, #e02e1e 0%, #7a0800 100%);
}

/* .prog-type-card--degree {
  border-bottom-color: #2f41c7;
} */

.abroad-section__footer .btn-red,
.consult-banner .btn-red,
.platform-banner .btn-red {
  background: var(--primary-gradient);
}

.btn.btn-custom.btn-red.ej-chatbot__cta {
  justify-content: start;
}

/* ─── Feature icon colour classes (explicit, no custom props) ── */
.fwi--red {
  background: #fdecea;
  color: #F93C2B;
}

.fwi--yellow {
  background: #fff8e1;
  color: #d4960a;
}

.fwi--blue {
  background: #eff6ff;
  color: #2563eb;
}

.fwi--green {
  background: #f0fdf4;
  color: #16a34a;
}

/* ─── Why JobsAcademy Works — bigger card title ─── */

/* ─── Section subtitles global — bigger & bolder ─── */
.courses-section__subtitle,
.who-for-section__subtitle,
.choose-section__subtitle,
.careers-section__subtitle,
.partners-section__subtitle,
.companies-section__subtitle,
.awards-section__subtitle,
.gallery-section__subtitle,
.prog-blocks-header__sub,
.features-strip-header__sub,
.hero-section__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}


/* ─── Bullet list pointers bolder ─── */
.prog-type-card__bullets li,
.hero-features li,
.site-footer__link-list li,
ul li,
ol li {
  font-weight: 500;
}

/* ─── Course category tabs — centered ─── */
.courses-cat-tabs {
  justify-content: center;
  margin-bottom: 40px;
}

/* ─── Course category panes ─── */
.courses-cat-pane {
  display: none;
}

.courses-cat-pane.courses-cat-pane--active {
  display: block;
}

/* ─── Cert / Degree grid panes ─── */
.courses-grid-pane {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  padding-left: 15px;
  padding-right: 15px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}

.courses-grid-pane::-webkit-scrollbar {
  height: 4px;
}

.courses-grid-pane::-webkit-scrollbar-track {
  background: transparent;
}

.courses-grid-pane::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px;
}

.courses-grid-pane .courses-grid-card {
  flex: 0 0 calc(20% - 13px);
  align-self: stretch;
  scroll-snap-align: start;
}

.courses-grid-pane .courses-grid-card.who-for-card {
  display: flex;
  flex-direction: column;
}

.courses-grid-pane .courses-grid-card.who-for-card .who-for-card__btn {
  margin-top: auto;
}

.courses-grid-card {
  background: #fff;
  border: 1px solid #ebebef;
  border-radius: 16px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(15, 15, 18, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.courses-grid-card:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 12px 32px rgba(15, 15, 18, 0.10);
}

.courses-grid-card__badge {
  display: inline-flex;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 12px;
  border-radius: 999px;
}

.courses-grid-card__badge--cert {
  background: #fff8e1;
  color: #b38b00;
}

.courses-grid-card__badge--degree {
  background: #fdecea;
  color: #F93C2B;
}

.courses-grid-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #0f0f12;
  /* letter-spacing: -0.02em; */
  line-height: 1.3;
  margin: 0;
}

.courses-grid-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.courses-grid-card__meta span {
  font-size: 12px;
  color: #8e8e9a;
  background: #f7f7f9;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.courses-grid-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #F93C2B;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.courses-grid-card__link:hover {
  gap: 10px;
}

/* ─── Companies section — compact ─── */
.companies-section {
  padding: 48px 0;
}



.companies-section__subtitle {
  margin-bottom: 24px;
}


.company-pill {
  padding: 8px 16px;
}

.companies-actions {
  margin-top: 47px;
  gap: 12px;
}

/* ─── Gallery — masonry columns ─── */
.gallery-grid-clean {
  columns: 4;
  column-gap: 16px;
}

.gallery-mobile-swiper {
  display: none;
}

.courses-industry-dropdown {
  display: none;
  position: relative;
}

/* ── Custom trigger ── */
.courses-ind-dd__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.2s;
}

.courses-ind-dd__trigger.is-open {
  border-color: #e74c3c;
}

.courses-ind-dd__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.courses-ind-dd__label i {
  color: #e74c3c;
  font-size: 16px;
}

.courses-ind-dd__arrow {
  color: #888;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.courses-ind-dd__trigger.is-open .courses-ind-dd__arrow {
  transform: rotate(180deg);
}

/* ── Dropdown menu ── */
.courses-ind-dd__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 200;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.courses-ind-dd__menu.is-open {
  display: block;
}

.courses-ind-dd__menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 18px;
  background: none;
  border: none;
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer;
  text-align: left;
}

.courses-ind-dd__menu button:hover {
  background: #f9f9f9;
}

.courses-ind-dd__menu button i {
  color: #e74c3c;
  font-size: 16px;
}

.courses-ind-dd__menu button.is-active {
  font-weight: 600;
  color: #e74c3c;
}

/* legacy select — no longer used but kept to avoid errors */
.courses-cat-mobile-select {
  display: none;
  cursor: pointer;
}

.gallery-clean-tile {
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;
  height: 240px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8e8f0 0%, #d8d8e4 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* Vary heights for masonry rhythm */
.gallery-clean-tile:nth-child(1) {
  height: 300px;
}

.gallery-clean-tile:nth-child(2) {
  height: 200px;
}

.gallery-clean-tile:nth-child(3) {
  height: 200px;
}

.gallery-clean-tile:nth-child(4) {
  height: 300px;
}

.gallery-clean-tile:nth-child(5) {
  height: 200px;
}

.gallery-clean-tile:nth-child(6) {
  height: 300px;
}

.gallery-clean-tile:nth-child(7) {
  height: 300px;
}

.gallery-clean-tile:nth-child(8) {
  height: 200px;
}

.gallery-clean-tile--video {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f12 100%);
}

.gallery-clean-tile:hover {
  box-shadow: 0 12px 36px rgba(15, 15, 18, 0.15);
}

.gallery-clean-tile__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
}

.gallery-clean-tile__cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(4px);
  padding: 4px 11px;
  border-radius: 999px;
}

/* ─── Awards — centered text ─── */
/* .award-card__body {
  text-align: center;
} */

.award-card__title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
}

.award-card__sub {
  font-size: 11px;
  color: #8e8e9a;
  margin: 0;
}

/* ─── FAQ — compact ─── */
.faq-section {
  padding: 48px 0;
}

.faq-padding {
  margin-top: 0;
}


/* ─── Global 100px section padding ─────────────────────── */
.features-strip-section,
.prog-blocks-section,
.courses-section,
.who-for-section,
.abroad-section,
.careers-section,
.companies-section,
.gallery-section,
.awards-section,
.testimonials-section,
.testimonials-section2,
.faq-section,
.consult-banner,
.teams-section,
.partnership-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.choose-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* FAQ already set compact — keep its override on top */
.faq-section {
  padding: 80px 0;
}

/* Hero and announcement bar are excluded (100vh / auto height) */


/* ─── Prog-type card: icon left of title, bolder bullets ── */
.prog-type-card__top {
  display: none;
}

.prog-type-card__heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.prog-type-card__heading .prog-type-card__icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.prog-type-card__heading .prog-type-card__title {
  margin: 0;
}

.prog-type-card__bullets li {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 0;
  gap: 10px;
}

.prog-type-card__bullets li:last-child {
  border-bottom: none;
}

.prog-type-card__bullets .ri-checkbox-circle-fill {
  color: #16a34a;
  font-size: 18px;
  flex-shrink: 0;
}

.prog-type-card--cert .prog-type-card__bullets .ri-checkbox-circle-fill {
  color: #d4960a;
}

/* ─── Remove rounded pill box behind header nav ─────────── */
.site-header__bar,
.site-header.site-header--scrolled.is-sticky .site-header__bar,
.site-header--scrolled .site-header__bar {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* ─── Hero buttons — bigger ─────────────────────────────── */
.hero-actions .btn-custom {
  font-size: 16px;
}

/* ─── Hero feature list — bigger text & icons ───────────── */
.hero-features li {
  font-size: 16px;
  font-weight: 600;
  gap: 14px;
  margin-bottom: 4px;
}

.hero-features__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.hero-features__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── Prog-type card heading — vertical center align ──────── */
.prog-type-card__heading {
  align-items: center;
}

.prog-type-card__heading .prog-type-card__icon {
  margin-top: 0;
}

/* ─── Courses grid card "View Details" — matches cat-tab style ── */
.courses-grid-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1c1c22;
  background: #f7f7f9;
  border: 1.5px solid #ebebef;
  border-radius: 999px;
  padding: 9px 20px;
  text-decoration: none;
  transition: all 0.22s ease;
  margin-top: auto;
  width: fit-content;
}

.courses-grid-card__link:hover {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: #fff;
  gap: 12px;
}

/* ─── Explore Courses section — 1400px width ───────────── */
.courses-section .container {
  max-width: 1400px;
}

/* ─── Who-for card icons — consistent icon box style ──────── */
.wfc-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.wfc-icon--red {
  background: #fdecea;
  color: #F93C2B;
}

.wfc-icon--yellow {
  background: #fff8e1;
  color: #d4960a;
}

.wfc-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.wfc-icon--purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.wfc-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

/* remove old svg wrapper styles */
.who-for-card__svg {
  display: none;
}

/* ─── Shared hero bg image on select sections ───────────── */
.who-for-section,
.careers-section,
.companies-section {
  background: url(../img/ehhb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.awards-section {
  background: #fff;
}

/* ─── Equal spacing: section header subtext → content ───── */
.courses-section__subtitle,
.who-for-section__subtitle,
.choose-section__subtitle,
.careers-section__subtitle,
.companies-section__subtitle,
.awards-section__subtitle,
.gallery-section__subtitle,
.prog-blocks-header__sub,
.features-strip-header__sub,
.abroad-section__subtitle,
.partners-section__subtitle {
  margin-bottom: 48px;
  display: block;
}

/* ─── Careers nav tabs — match courses-cat-tab style ────── */
.careers-nav-tab {
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  color: #555;
  opacity: 1;
  letter-spacing: -0.01em;
  transition: all var(--transition);
}

.careers-nav-tab i {
  font-weight: 400;
}

.careers-nav-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

.careers-nav-tab.active {
  background: #f23928;
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(222, 79, 71, 0.25);
}

/* Section header wrappers — consistent bottom margin */
.courses-section__header,
.who-for-section__header,
.choose-section__header,
.careers-section__header,
.section-header,
.prog-blocks-header,
.features-strip-header,
.testimonials-header,
.testimonials-header2,
.courses-section__header {
  margin-bottom: 40px;
}

/* ─── Course card "View In Detail" — matches grid card pill style ── */
.new-course-card__btn.new-course-card__btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1c1c22;
  background: #f7f7f9;
  border: 1.5px solid #ebebef;
  border-radius: 999px;
  padding: 9px 20px;
  text-decoration: none;
  transition: all 0.22s ease;
  width: fit-content;
  margin-top: 8px;
}

.new-course-card__btn.new-course-card__btn--outline:hover {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: #fff;
}

.new-course-card__btn-icon {
  display: none;
}

/* ─── btn-grey now deprecated — alias to yellow (secondary) ── */
.btn-grey,
.btn-custom.btn-grey {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 188, 0, 0.22);
}

.btn-grey:hover,
.btn-custom.btn-grey:hover {
  background: #f0b000;
  box-shadow: 0 8px 24px rgba(255, 188, 0, 0.32);
}

/* ─── Course card btn — force pill style, hide icon circle ── */
.new-course-card__btn--outline,
a.new-course-card__btn.new-course-card__btn--outline {
  background: #f7f7f9;
  border: 1.5px solid #ebebef;
  border-radius: 999px;
  color: #1c1c22;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 22px;
  gap: 0;
  width: fit-content;
  justify-content: center;
  transition: all 0.22s ease;
}

.new-course-card__btn--outline:hover,
a.new-course-card__btn.new-course-card__btn--outline:hover {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: #fff;
}

.new-course-card__btn--outline .new-course-card__btn-icon,
a.new-course-card__btn.new-course-card__btn--outline .new-course-card__btn-icon {
  display: none;
}

/* ─── Career cards — bigger height ─────────────────────── */


/* ─── Remove gap between teams section and partnership section ── */
.teams-section {
  padding-bottom: 0;
  margin-bottom: 0;
}

.partnership-section {
  padding-top: 0;
  margin-top: 0;
}

/* ─── Companies section — restore standard heading sizes ─── */


.companies-section__subtitle {
  color: #000;
  margin-bottom: 48px;
}

/* ─── Remove gap teams → partnership (stronger override) ─── */
.teams-section {
  padding-bottom: 0;
  margin-bottom: 0;
}

.partnership-section {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

/* ─── Teams section inner row — remove bottom margin too ─── */
.teams-section .row.mb-5 {
  margin-bottom: 0;
}

.teams-section .container:last-child {
  padding-bottom: 40px;
}

/* ─── Career cards — taller height ─────────────────────── */


/* ─── Card body text — bigger globally ──────────────────── */
.feature-white-card__desc,
.award-card__title,
.award-card__sub,
.why-card__label,
.new-course-card__meta-label,
.new-course-card__meta-val,
.mm-industry-item__sub,
.mm-prog-card__meta,
.partner-step__desc,
.prog-type-card__desc,
.abroad-card__desc,
.gallery-clean-tile__cat,
.testi-slide-card__role {
  font-size: 15px;
}

/* General paragraph/desc text inside any card */
.card p,
.who-for-card p,
.award-card p,
.feature-white-card p,
.prog-type-card p,
.courses-grid-card p {
  font-size: 16px;
}

/* Course card meta values */
.new-course-card__meta-val {
  /* font-size: 14px; */
  font-weight: 600;
}

.new-course-card__meta-label {
  font-size: 12px;
}

/* ─── Global base font: 14px → 16px ────────────────────── */
body {
  font-size: 16px;
}

/* Bump all explicit 14px text up to 16px */
.site-header__nav-link,
.btn-custom,
.feature-white-card__desc,
.prog-type-card__desc,
.abroad-card__desc,
.why-card__label,
.courses-grid-card__link,
.new-course-card__meta-val,
.mm-tab-btn,
.mm-industry-item__sub,
.mm-prog-card__meta,
.site-footer__link-list a,
.courses-cat-tab,
.hero-features li,
.testi-slide-card__role {
  font-size: 16px;
}

/* ─── Why JobsAcademy Works + Who Are We For — card title weight 700 ── */
.feature-white-card__title,
.who-for-card__title {
  font-weight: 700;
}

/* ─── Hero feature icons — sized for inline list ────────── */
.hero-features .wfc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 22px;
  flex-shrink: 0;
  margin-bottom: 0;
}

/* ─── Cert card bullets — green ticks like degree card ───── */
.prog-type-card--cert .prog-type-card__bullets .ri-checkbox-circle-fill {
  color: #16a34a;
}

/* ─── Sleek icon system — refined globally ──────────────── */

/* Base icon box */
.wfc-icon,
.feature-white-card__icon-wrap,
.why-card__icon,
.prog-type-card__icon,
.abroad-card__icon {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* Subtle lift on hover */
.who-for-card:hover .wfc-icon,
.feature-white-card:hover .feature-white-card__icon-wrap,
.why-card:hover .why-card__icon {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
}

/* Sleeker icon sizing — consistent 52x52 */
.wfc-icon {
  width: 52px;
  height: 52px;
  font-size: 24px;
  margin-bottom: 18px;
}

/* Feature card icons */
.feature-white-card__icon-wrap {
  width: 52px;
  height: 52px;
  font-size: 24px;
}

/* Why card icons */
.why-card__icon {
  width: 52px;
  height: 52px;
  font-size: 22px;
  background: #fdecea;
  color: var(--primary);
}

/* Prog card icons */
.prog-type-card__icon {
  width: 48px;
  height: 48px;
  font-size: 22px;
  border-radius: 14px;
}

/* Abroad card icons */
.abroad-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

/* Hero feature icons */
.hero-features .wfc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 0;
}

/* Ensure all icons use line (outline) variants via opacity tweak */
.wfc-icon i,
.feature-white-card__icon-wrap i,
.why-card__icon i,
.prog-type-card__icon i {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SLEEK ICON REDESIGN — minimal, gradient, no borders ── */

/* Reset all icon boxes */
.wfc-icon,
.feature-white-card__icon-wrap,
.why-card__icon,
.prog-type-card__icon {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

/* Color-specific gradient backgrounds */
.wfc-icon--red,
.fwi--red {
  background: linear-gradient(135deg, #ff6b5b 0%, #F93C2B 100%);
  color: #fff;
}

.wfc-icon--yellow,
.fwi--yellow {
  background: linear-gradient(135deg, #ffd566 0%, #FFBC00 100%);
  color: #fff;
}

.wfc-icon--blue,
.fwi--blue {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  color: #fff;
}

.wfc-icon--green,
.fwi--green {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  color: #fff;
}

.wfc-icon--purple,
.fwi--purple {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  color: #fff;
}

/* Why card icon */
.why-card__icon {
  background: linear-gradient(135deg, #ff6b5b 0%, #F93C2B 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 60, 43, 0.25);
}

/* Prog card degree icon */
.prog-type-card--degree .prog-type-card__icon {
  background: linear-gradient(135deg, #ff6b5b 0%, #F93C2B 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 60, 43, 0.22);
}

/* Prog card cert icon */
.prog-type-card--cert .prog-type-card__icon {
  background: linear-gradient(135deg, #ffd566 0%, #FFBC00 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 188, 0, 0.22);
}

/* Abroad icons */
.abroad-card__icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  box-shadow: none;
}

/* Icon size — bigger, cleaner */
.wfc-icon {
  width: 56px;
  height: 56px;
  font-size: 26px;
}

.feature-white-card__icon-wrap {
  width: 54px;
  height: 54px;
  font-size: 26px;
}

/* Hover effect — lift + stronger shadow */
.who-for-card:hover .wfc-icon,
.feature-white-card:hover .feature-white-card__icon-wrap {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ─── FINAL SLEEK ICON STYLE — pastel bg, coloured icon ─── */

/* Reset gradient/shadow overrides */
.wfc-icon,
.feature-white-card__icon-wrap,
.why-card__icon,
.prog-type-card__icon,
.abroad-card__icon {
  box-shadow: none;
  border: none;
  border-radius: 14px;
  transition: transform 0.2s ease;
}

/* Light pastel backgrounds with matching icon color */
.wfc-icon--red,
.fwi--red {
  background: #ffeaea;
  color: #F93C2B;
}

.wfc-icon--yellow,
.fwi--yellow {
  background: #fff8e0;
  color: #d4960a;
}

.wfc-icon--blue,
.fwi--blue {
  background: #eef2ff;
  color: #3b5bdb;
}

.wfc-icon--green,
.fwi--green {
  background: #edfbf0;
  color: #2f9e44;
}

.wfc-icon--purple,
.fwi--purple {
  background: #f3f0ff;
  color: #7048e8;
}

/* Why card icon — red pastel */
.why-card__icon {
  background: #ffeaea;
  color: #F93C2B;
  box-shadow: none;
}

/* Prog type card icons */
.prog-type-card--degree .prog-type-card__icon {
  background: #e331261f;
  color: #e43226;
  box-shadow: none;
}

.prog-type-card--cert .prog-type-card__icon {
  background: #fff8e0;
  color: var(--secondary);
  box-shadow: none;
}

/* Abroad icons — subtle on dark bg */
.abroad-card__icon {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

/* Hover — subtle scale only */
.who-for-card:hover .wfc-icon,
.feature-white-card:hover .feature-white-card__icon-wrap,
.why-card:hover .why-card__icon {
  transform: scale(1.08);
  box-shadow: none;
}

/* ─── Tabler icon sizing inside icon boxes ──────────────── */
.wfc-icon .ti,
.feature-white-card__icon-wrap .ti,
.why-card__icon .ti,
.prog-type-card__icon .ti,
.abroad-card__icon .ti,
.hero-features .wfc-icon .ti {
  font-size: 26px;
  line-height: 1;
}

/* ─── Phosphor Icons — thin weight inside icon boxes ──────── */
.wfc-icon .ph,
.feature-white-card__icon-wrap .ph,
.why-card__icon .ph,
.prog-type-card__icon .ph,
.abroad-card__icon .ph,
.hero-features .wfc-icon .ph {
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

/* Also update the old ti selector */
.wfc-icon .ti,
.feature-white-card__icon-wrap .ti,
.why-card__icon .ti {
  display: none;
}

/* ─── Hero logo strip ───────────────────────────────────── */
.hero-logo-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-logo-strip__label {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8e8e9a;
  white-space: nowrap;
  padding: 0 24px;
  flex-shrink: 0;
}

.hero-logo-strip__track-wrap {
  overflow: hidden;
  flex: 1;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero-logo-strip__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: heroLogoScroll 30s linear infinite;
}

.hero-logo-strip__track:hover {
  animation-play-state: paused;
}

.hero-logo-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-logo-strip__item img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(40%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.hero-logo-strip__item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes heroLogoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── Hero logo strip — inside 100vh + prominent logos ──── */
.hero-section {
  padding-bottom: 80px;
  /* room for logo strip */
}

.hero-logo-strip {
  position: absolute;
  bottom: 0;
}

/* Logos full opacity + colour by default */
.hero-logo-strip__item img {
  opacity: 1;
  filter: none;
  height: 34px;
}

.hero-logo-strip__item img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.08);
  transition: transform 0.2s ease;
}

/* Mobile two-row marquee — hidden on desktop */
.hero-logo-strip__mobile {
  display: none;
}

/* ─── True 100vh fold: announcement + header + hero + logo strip ── */
:root {
  --announcement-h: 42px;
}

/* Fix hero to exact remaining viewport after announcement bar.
   100dvh = dynamic viewport height (excludes mobile browser chrome when visible),
   so the hero never hides behind the address bar on iOS/Android. */
.hero-section {
  height: calc(100vh - var(--announcement-h));
  height: calc(100dvh - var(--announcement-h));
  min-height: unset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Container fills naturally, centred vertically */
.hero-section>.container {
  padding-top: 0;
  padding-bottom: 0;
  /* flex: 1; */
  min-height: 0;
  display: flex;
  align-items: center;
  width: 100%;
}

/* Row fills the container height */
.hero-section>.container>.row {
  width: 100%;
  align-items: center;
}

/* Logo strip stays pinned to bottom of hero */
.hero-logo-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* ─── Two Pathways cards — bigger title + prominent subtext ── */
.prog-type-card__title {
  font-size: 24px;
  line-height: 1.25;
  color: #0f0f12;
  font-weight: 700;
}

.prog-type-card__desc {
  font-size: 16px;
  font-weight: 500;
  color: #4a4a55;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ─── Explore Courses — tighter gap between subtitle and tabs ── */


.courses-section__subtitle {
  margin-bottom: 0;
}

.courses-cat-tabs {
  margin-bottom: 32px;
}

/* ─── Abroad cards — image instead of icon ─────────────── */
.abroad-card__img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.abroad-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}


/* ─── Who Are We For — card title matches Why JobsAcademy Works ── */

/* ─── Abroad section — darker background ────────────────── */
.abroad-section {
  background-image: url(../img/large-cta-bg.jpg);
}

/* ─── Who Are We For titles — exact match to Why JobsAcademy Works ── */

/* Ensure feature-white-card__title is also 800 */

/* ─── Hero right image — no shadow ─────────────────────── */
.hero-right-img__img {
  filter: none;
  box-shadow: none;
}

/* ─── Explore Courses cards — left-align text + bottom button ── */

/* Industry tab cards */
.new-course-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  justify-content: space-around;
}

.new-course-card__title {
  text-align: left;
}

.new-course-card__meta {
  text-align: left;
  justify-content: flex-start;
}

.new-course-card.who-for-card {
  display: flex;
  flex-direction: column;
}

/* Push button to bottom in industry tab cards */
.new-course-card__body .who-for-card__btn {
  margin-top: 13px;
}

/* Cert / Degree grid cards */
.courses-grid-card.who-for-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.courses-grid-card__title,
.courses-grid-card__meta,
.courses-grid-card__badge {
  text-align: left;
}

/* Push button to bottom in grid cards */
.courses-grid-card.who-for-card .who-for-card__btn {
  margin-top: auto;
}

/* ─── Cert / Degree grid cards — course photo ───────────── */
.courses-grid-card__img-wrap {
  width: calc(100% + 48px);
  height: 180px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  flex-shrink: 0;
}

.courses-grid-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.courses-grid-card.who-for-card:hover .courses-grid-card__img {
  transform: scale(1.05);
}

/* ─── Cert / Degree cards — image matches industry tab style ── */
.courses-grid-card__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  background: #f3f4f6;
  flex-shrink: 0;
}

.courses-grid-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


#cd-scope {
  padding: 100px 0;
  background-image: url(../img/large-cta-bg.jpg);
}

.degree-section {
  background: url(../img/ehhb.png) center center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fee-section {
  background: url(../img/ehhb.png) center center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.curriculum-section {
  background: url(../img/ehhb.png) center center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cd-faq-section {
  background: url(../img/ehhb.png) center center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cd-form .btn-custom {
  justify-content: start !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}


.cd-form .partnership-form__btn-icon i {
  font-weight: 400;
}

.cd-form .btn-red:hover,
.cd-form .btn-custom.btn-red:hover {
  background: var(--secondary);
  box-shadow: none;
}


/* =============================================================================
   COURSE DETAIL PAGE — START
   Styles specific to course-detail.html (hero, sticky nav, sections, cards,
   salary timeline, fee table, FAQ, CTA form, related courses, responsive).
   ============================================================================= */

/* First-fold wrapper: header (position:absolute) + hero + quickfacts = 100vh — desktop only */
@media (min-width: 992px) {
  .cd-fold-1 {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* Hero fills remaining space; reduce padding — header is absolute so 90px clears it */
  .cd-fold-1 .cd-hero.cd-hero-banner {
    flex: 1;
    height: auto !important;
    padding-top: 90px !important;
    padding-bottom: 32px !important;
    min-height: 0;
  }

  .cd-quickfacts {
    flex-shrink: 0;
  }
}

/* Hero */
.cd-hero.cd-hero-banner {
  background: url(./assets/img/ehhb.png) center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}

.cd-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cd-hero__h1 {
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cd-hero__h1 span {
  color: var(--primary);
  font-weight: bold;
}

.cd-hero__hook {
  color: var(--paragraph);
  line-height: 1.75;
  margin-bottom: 28px;
  margin: 0 auto 28px 0;
}

.contact_banner .cd-hero__hook {
  margin: 0 auto 28px;
}

.cd-hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact_banner .cd-hero__actions {
  justify-content: center;
}

.cd-hero__stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.cd-hero__stat-lbl {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}

.cd-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: start;
}

.banner-emp .cd-hero__actions {
  justify-content: start;
}

.cd-hero__img-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.cd-hero__img {
  width: 100%;
  max-width: 480px;
  display: block;
  border-radius: 12px 12px 0 0;
  object-fit: cover;
}

/* Feature list — same style as home page hero-features */
.cd-hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cd-hero__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

/* Match home page hero icon size exactly */
.cd-hero__features .wfc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Quick Facts — mirrors home page why-stats-strip */
.cd-quickfacts {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 0;
}

.cd-quickfacts .why-stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px 0;
  gap: 10px;
}

.cd-quickfacts .why-stat {
  flex: 1;
  min-width: 140px;
  /* border-right: 1px solid #eee; */
  padding: 16px 0;
}

.cd-quickfacts .why-stat:last-child {
  border-right: none;
}

/* Mobile autoplay marquee — hidden on desktop, shown below 767px */
.cd-quickfacts__marquee {
  display: none;
}

/* Sticky Nav */
.cd-nav {
  background: #fff;
  /* border-bottom: 2px solid #eee; */
  position: sticky;
  top: 0;
  z-index: 200;
}

.cd-nav__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.cd-nav__inner::-webkit-scrollbar {
  display: none;
}

.cd-nav__link {
  display: block;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cd-nav__link:hover,
.cd-nav__link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Mobile dropdown — mirrors home careers-section dropdown, hidden on desktop */
.cd-nav-dropdown {
  display: none;
  position: relative;
  width: 100%;
}

.cd-nav-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  gap: 8px;
  transition: border-color 0.2s;
}

.cd-nav-dropdown__trigger:hover {
  border-color: var(--primary);
}

.cd-nav-dropdown__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cd-nav-dropdown__arrow {
  font-size: 18px;
  color: #888;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.cd-nav-dropdown__arrow.open {
  transform: rotate(180deg);
}

.cd-nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 16px;
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 200;
  max-height: 60vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.cd-nav-dropdown__menu.open {
  display: block;
}

.cd-nav-dropdown__menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.cd-nav-dropdown__menu li a:hover,
.cd-nav-dropdown__menu li a.active {
  background: #fff5f5;
  color: var(--primary);
}

/* Section shared */
.cd-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.cd-section--gray {
  background: #f8f9fa;
}

.cd-section--dark {
  background: #0f0f1a;
}

.cd-section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}


.cd-section-title--white {
  color: #fff;
}

section.Mission_section {
  border-top: 1px solid var(--border);
}

.why_train .cd-section-sub {
  color: var(--paragraph);
  line-height: 1.75;
  margin: 0 auto 0 0;
  max-width: 79%;
}

.cd-section-sub {
  color: var(--paragraph);
  line-height: 1.75;
  margin: 0 auto;
}

.cd-section-sub--white {
  color: rgba(255, 255, 255, 0.72);
  margin-left: auto;
  max-width: 100%;
}

/* Stats strip */
.cd-stats-strip {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 40px;
}

.cd-stat {
  flex: 1;
  min-width: 140px;
  padding: 24px 20px;
  border-right: 1px solid #eee;
  text-align: start;
}

.cd-stat:last-child {
  border-right: none;
}

.cd-stat__num {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.cd-stat__lbl {
  font-size: 16px;
  color: #000;
  margin-top: 6px;
}

.cd-stats-strip--dark {
  border-color: rgba(255, 255, 255, 0.1);
}

.cd-stats-strip--dark .cd-stat {
  border-right-color: rgba(255, 255, 255, 0.1);
}

.cd-stats-strip--dark .cd-stat__num {
  color: var(--secondary);
}

.cd-stats-strip--dark .cd-stat__lbl {
  color: rgba(255, 255, 255, 0.55);
}

/* Where jobs are pills */
.cd-sector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cd-sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.cd-sector-pill i {
  color: var(--secondary);
  font-size: 15px;
  line-height: 1;
}

/* Where jobs are pills — dual-direction marquee (mobile only, <768px) */
.cd-sector-marquee {
  display: none;
  margin-top: 28px;
  flex-direction: column;
  gap: 10px;
}

.cd-sector-marquee__row {
  overflow: hidden;
}

.cd-sector-marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.cd-sector-marquee__row--ltr .cd-sector-marquee__track {
  animation: cd-sector-marquee-ltr 18s linear infinite;
}

.cd-sector-marquee__row--rtl .cd-sector-marquee__track {
  animation: cd-sector-marquee-rtl 18s linear infinite;
}

.cd-sector-marquee__row:hover .cd-sector-marquee__track {
  animation-play-state: paused;
}

@keyframes cd-sector-marquee-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes cd-sector-marquee-rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Role cards grid */
.cd-roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.cd-role-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 18px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.cd-role-card:hover {
  box-shadow: 0 6px 24px rgba(230, 62, 59, 0.1);
  border-color: rgba(230, 62, 59, 0.25);
  transform: translateY(-2px);
}

.cd-role-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.cd-role-card__icon i {
  font-size: 24px;
}

.cd-role-card__icon--red {
  background: #fdecea;
  color: #F93C2B;
}

.cd-role-card__icon--yellow {
  background: #fff8e1;
  color: #d4960a;
}

.cd-role-card__icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.cd-role-card__icon--purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.cd-role-card__icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

/* Salary list icon boxes — white box, hero-style */
.cd-salary-card__role-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cd-salary-card__role-icon--red {
  color: #F93C2B;
}

.cd-salary-card__role-icon--yellow {
  color: #d4960a;
}

.cd-salary-card__role-icon--blue {
  color: #2563eb;
}

.cd-salary-card__role-icon--purple {
  color: #7c3aed;
}

.cd-salary-card__role-icon--green {
  color: #16a34a;
}

/* On dark senior card — white semi-transparent box */
.cd-salary-card--senior .cd-salary-card__role-icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
  color: #fff;
}

.cd-role-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.cd-role-card__desc {
  font-size: 16px;
  color: #000;
  line-height: 1.55;
}

/* Salary timeline */
.cd-salary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cd-salary-card {
  border-radius: 24px;
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-salary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Decorative circle blob */
.cd-salary-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
}

.cd-salary-card--entry {
  background: #FEF6F3;
  border: 1.5px solid #f5e4dd;
}

.cd-salary-card--entry::after {
  background: radial-gradient(circle, rgba(230, 62, 59, 0.10) 0%, transparent 70%);
}

.cd-salary-card--mid {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  color: var(--dark);
}

.cd-salary-card--mid::after {
  background: radial-gradient(circle, rgba(230, 62, 59, 0.07) 0%, transparent 70%);
}

.cd-salary-card--senior {
  background: #4244D6;
  color: #fff;
  border: none;
}

.cd-salary-card--senior::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.cd-salary-card__stage {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(230, 62, 59, 0.1);
  color: var(--primary);
}

.cd-salary-card--senior .cd-salary-card__stage {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cd-salary-card__years {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: -10px;
}

.cd-salary-card__lpa {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.cd-salary-card--mid .cd-salary-card__lpa {
  color: var(--primary);
}

.cd-salary-card--senior .cd-salary-card__lpa {
  color: var(--secondary);
}

/* Divider before pills */
.cd-salary-card__roles-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.cd-salary-card__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cd-salary-card--senior .cd-salary-card__roles {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.cd-salary-card__roles span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.cd-salary-card--entry .cd-salary-card__roles span {
  background: #fff;
  border-color: #f0d8d0;
  color: #7a3a2e;
}

.cd-salary-card--mid .cd-salary-card__roles span {
  background: #f8f8f8;
  border-color: #e0e0e0;
  color: var(--dark);
}

.cd-salary-card--senior .cd-salary-card__roles span {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: none;
}

/* Hiring partners logo wall */
.cd-logos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: #eee;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 40px;
}

.cd-logo-cell {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  min-height: 80px;
}

.cd-logo-cell img {
  max-width: 90px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.2s;
}

.cd-logo-cell:hover img {
  filter: grayscale(0) opacity(1);
}

/* University card */
.cd-uni-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
}

.cd-uni-card__logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 28px;
}

.cd-uni-card__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.cd-uni-card__meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

.cd-uni-card__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px;
}

.cd-uni-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cd-uni-badge {
  background: rgba(230, 62, 59, 0.07);
  color: var(--primary);
  border: 1px solid rgba(230, 62, 59, 0.2);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
}

.cd-uni-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cd-uni-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.cd-uni-points li:last-child {
  border-bottom: none;
}

.cd-uni-points li i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Fee table */
.cd-fee-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

.cd-fee-table thead th {
  background: var(--dark);
  color: #fff;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.cd-fee-table tbody td {
  padding: 14px 20px;
  font-size: 16px;
  color: #000;
  border-bottom: 1px solid #f0f0f0;
}

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

.cd-fee-table tbody tr:hover td {
  background: #fafafa;
}

.cd-fee-table tbody td:first-child {
  font-weight: 700;
  color: var(--dark);
}

.cd-fee-table tbody td strong {
  color: var(--primary);
}

/* Financial aid cards */
.cd-aid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.cd-aid-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
}

.cd-aid-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.cd-aid-card__icon i {
  font-size: 24px;
}

.cd-aid-card__icon--red {
  background: #fdecea;
  color: #F93C2B;
}

.cd-aid-card__icon--yellow {
  background: #fff8e1;
  color: #d4960a;
}

.cd-aid-card__icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.cd-aid-card__icon--purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.cd-aid-card__icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

.cd-aid-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.cd-aid-card__desc {
  font-size: 16px;
  color: #000;
  line-height: 1.55;
}

/* Comparison table */
.cd-compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
}

.cd-compare-table thead th {
  padding: 22px 28px;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}

.cd-compare-table thead th:first-child {
  background: linear-gradient(135deg, var(--primary) 0%, #c0392b 100%);
  color: #fff;
  width: 52%;
}

.cd-compare-table thead th:last-child {
  background: #f0f0f0;
  color: #888;
}

.cd-compare-table tbody tr {
  transition: background 0.15s;
}

.cd-compare-table tbody tr:hover td:first-child {
  background: rgba(230, 62, 59, 0.05);
}

.cd-compare-table tbody tr:hover td:last-child {
  background: #f7f7f7;
}

.cd-compare-table tbody td {
  padding: 18px 28px;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.55;
  vertical-align: middle;
}

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

.cd-compare-table tbody td:first-child {
  color: var(--dark);
  font-weight: 600;
  background: rgba(230, 62, 59, 0.025);
}

.cd-compare-table tbody td:last-child {
  color: #aaa;
  background: #fafafa;
  font-weight: 500;
}

/* Icon badges in comparison cells */
.cd-cmp-yes {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cd-cmp-yes__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(230, 62, 59, 0.35);
}

.cd-cmp-no {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cd-cmp-no__badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ebebeb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #bbb;
  font-size: 15px;
}

/* Mobile comparison accordions — one per column, hidden on desktop */
.cd-cmp-acc {
  display: none;
}

.cd-cmp-acc__item {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}

.cd-cmp-acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.cd-cmp-acc__head--yes {
  background: linear-gradient(135deg, var(--primary) 0%, #c0392b 100%);
  color: #fff;
}

.cd-cmp-acc__head--no {
  background: #f0f0f0;
  color: #888;
}

.cd-cmp-acc__chevron {
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.cd-cmp-acc__head--yes .cd-cmp-acc__chevron {
  color: rgba(255, 255, 255, 0.9);
}

.cd-cmp-acc__head--no .cd-cmp-acc__chevron {
  color: #aaa;
}

.cd-cmp-acc__head.open .cd-cmp-acc__chevron {
  transform: rotate(180deg);
}

.cd-cmp-acc__body {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px;
}

.cd-cmp-acc__body.open {
  display: flex;
}

.cd-cmp-acc__item--yes .cd-cmp-acc__body {
  background: rgba(230, 62, 59, 0.025);
}

.cd-cmp-acc__item--no .cd-cmp-acc__body {
  background: #fafafa;
}

.cd-cmp-acc__body .cd-cmp-yes,
.cd-cmp-acc__body .cd-cmp-no {
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
}

.cd-cmp-acc__item--yes .cd-cmp-yes {
  color: var(--dark);
  font-weight: 600;
}

.cd-cmp-acc__item--no .cd-cmp-no {
  color: #aaa;
  font-weight: 500;
}

/* Key offerings 6-card grid */
.cd-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.cd-offer-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cd-offer-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(230, 62, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-offer-card__icon i {
  color: var(--primary);
  font-size: 20px;
}

.cd-offer-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.cd-offer-card__desc {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

.oc-stories-section .stories-swiper {
  overflow: visible;
}

/* Curriculum */
.cd-outcomes {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cd-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

.cd-outcomes li i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.mission-point i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cd-accordion {
  margin-bottom: 10px;
}

.cd-accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.cd-accordion__btn:hover {
  background: #fafafa;
}

.cd-accordion__btn.open {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  border-radius: 10px 10px 0 0;
}

.cd-accordion__btn.open i {
  transform: rotate(180deg);
  color: #fff;
}

.cd-accordion__btn i {
  transition: transform 0.25s;
  color: #aaa;
}

.cd-accordion__body {
  display: none;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 20px 24px;
  font-size: 16px;
  color: #000;
  line-height: 1.7;
}

.cd-accordion__body.open {
  display: block;
}

.cd-tools-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.cd-tool-pill {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cd-tool-pill i {
  color: var(--secondary);
  font-size: 15px;
}

/* Placement process */
.cd-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 40px;
}

/* Base track line — grey, vertically centred on 44px circle */
.cd-process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 3px;
  background: #e8e8e8;
  border-radius: 999px;
  z-index: 0;
}

/* Animated fill line */
.cd-process-steps::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 22px);
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
  z-index: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.cd-process-steps.cd-steps--animate::after {
  width: calc(75% - 44px);
}

.cd-step {
  text-align: center;
  padding: 0 12px;
}

.cd-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(230, 62, 59, 0.35);
}

.cd-step:nth-child(2) .cd-step__num {
  background: var(--dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.cd-step:nth-child(3) .cd-step__num {
  background: var(--primary);
}

.cd-step:nth-child(4) .cd-step__num {
  background: var(--secondary);
  box-shadow: 0 4px 14px rgba(255, 188, 0, 0.4);
}

/* Step-by-step reveal animation */
.cd-step {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
  z-index: 1;
}

.cd-step.cd-step--visible {
  opacity: 1;
  transform: translateY(0);
}

.cd-step:nth-child(1) {
  transition-delay: 0.0s;
}

.cd-step:nth-child(2) {
  transition-delay: 0.15s;
}

.cd-step:nth-child(3) {
  transition-delay: 0.30s;
}

.cd-step:nth-child(4) {
  transition-delay: 0.45s;
}

.cd-step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.cd-step__desc {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  max-width: 310px;
  margin: 0 auto;
}

/* Testimonials */
.cd-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cd-testi-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.cd-testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: var(--secondary);
  line-height: 0.75;
  opacity: 0.4;
}

.cd-testi-card__quote {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cd-testi-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cd-testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-testi-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.cd-testi-card__role {
  font-size: 12px;
  color: #888;
}

.cd-testi-card__stars {
  color: var(--secondary);
  font-size: 12px;
  margin-bottom: 12px;
}

/* Admission */
.cd-admission-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cd-adm-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.cd-adm-step:last-child {
  border-bottom: none;
}

.cd-adm-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-adm-step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.cd-adm-step__desc {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

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

.cd-eligibility-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

.cd-eligibility-item .elig-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.cd-docs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cd-docs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #000;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
}

.cd-docs-list li .doc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* FAQ */
.cd-faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-top: 40px;
}

.cd-faq-col {
  display: flex;
  flex-direction: column;
}

.cd-faq-item {
  margin-bottom: 10px;
}

.cd-faq-btn {
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.cd-faq-btn:hover {
  background: #fafafa;
}

.cd-faq-btn.open {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  border-radius: 10px 10px 0 0;
}

.cd-faq-btn.open i {
  transform: rotate(45deg);
  color: #fff;
}

.cd-faq-btn i {
  transition: transform 0.25s;
  color: #aaa;
  font-size: 18px;
}

.cd-faq-body {
  display: none;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 18pcx 20px;
  font-size: 16px;
  color: #000;
  line-height: 1.7;
}

.cd-faq-body.open {
  display: block;
}

/* Final CTA Form */
.cd-cta-band {
  background-image: url(../img/large-cta-bg.jpg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.cd-cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 0, 0.12) 0%, transparent 70%);
}

.cd-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cd-form__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.cd-form__sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.cd-form__field {
  margin-bottom: 12px;
}

.cd-form__row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.cd-form__row .cd-form__input {
  flex: 1;
  min-width: 0;
}

.cd-form__input {
  width: 100%;
  border: 1.5px solid #e8e8e8;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 14px;
  font-family: 'Satoshi', sans-serif;
  color: var(--dark);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.cd-form__input::placeholder {
  color: #aaa;
}

.cd-form__input:focus {
  border-color: var(--secondary);
  background: #fff;
}

.cd-form__btn-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}

.cd-form__btn-yellow:hover {
  background: #e6a800;
  transform: translateY(-2px);
}

.cd-form__btn-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: #e6a800;
}

.cd-form__trust {
  font-size: 11.5px;
  color: #aaa;
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cd-form__trust i {
  color: var(--secondary);
}

/* Related courses */
.cd-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cd-related-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}

.cd-related-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.cd-related-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.cd-related-card__body {
  padding: 16px;
}

.cd-related-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.cd-related-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cd-related-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cd-related-card__meta span {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cd-related-card__meta span i {
  font-size: 13px;
}

.cd-related-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cd-related-card__link i {
  font-size: 14px;
}

/* Disclaimer */
.cd-disclaimer {
  font-size: 11.5px;
  color: #aaa;
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

/* Salary ticker strip */
.cd-salary-ticker {
  padding: 0;
  overflow: hidden;
}

.cd-salary-ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: cd-ticker-scroll 28s linear infinite;
}

.cd-salary-ticker__track:hover {
  animation-play-state: paused;
}

@keyframes cd-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cd-salary-ticker__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13.5px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
  border-right: 1px solid #eee;
}

.cd-salary-ticker__item i.ri-arrow-right-line {
  color: #ccc;
  font-size: 13px;
}

.cd-salary-ticker__item>i:first-child {
  color: var(--primary);
  font-size: 16px;
}

.cd-salary-ticker__item strong {
  color: var(--dark);
  font-weight: 700;
}

.cd-ticker-hi {
  color: var(--primary);
  font-weight: 700;
}

/* ── Course Detail Responsive ── */
@media (max-width: 1200px) {
  .cd-roles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cd-role-card {
    flex: 0 0 calc(25% - 12px);
  }

  .cd-salary-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cd-salary-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 991px) {
  .cd-quickfacts__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cd-qf {
    border-bottom: 1px solid #eee;
  }

  .cd-role-card {
    flex: 0 0 calc(50% - 8px);
  }

  .cd-salary-card {
    flex: 0 0 100%;
  }

  .cd-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cd-aid-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cd-offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contactIcon {
    margin-top: 30px;
  }

  .cd-outcomes {
    grid-template-columns: 1fr;
  }

  .cd-process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .cd-step__desc {
    max-width: 330px;
  }

  .cd-process-steps::before {
    display: none;
  }

  .cd-testi-grid {
    grid-template-columns: 1fr;
  }

  .cd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cd-eligibility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cd-docs-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .cd-quickfacts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cd-eligibility-grid {
    grid-template-columns: 1fr
  }

  .cd-docs-list {
    grid-template-columns: 1fr
  }

  .cd-role-card {
    flex: 0 0 100%;
    text-align: center;
  }

  .cd-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cd-aid-grid {
    grid-template-columns: 1fr;
  }

  .cd-offer-grid {
    grid-template-columns: 1fr;
  }

  .cd-process-steps {
    grid-template-columns: 1fr;
  }

  .cd-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cd-hero__actions {
    flex-direction: column;
  }

  .cd-hero__stats {
    gap: 18px;
  }

  .cd-faq-wrap {
    grid-template-columns: 1fr;
  }

  .cd-form__row {
    flex-direction: column;
  }
}

/* =============================================================================
   COURSE DETAIL PAGE — END
   ============================================================================= */

/* =============================================================================
   SHARED UTILITY CLASSES - START
   ============================================================================= */

.icon-xs {
  font-size: 11px;
}

.cd-mb-0 {
  margin-bottom: 0 !important;
}

.cd-mb-6 {
  margin-bottom: 6px;
}

.cd-mb-8 {
  margin-bottom: 8px;
}

.cd-mb-28 {
  margin-bottom: 28px;
}

.cd-mb-32 {
  margin-bottom: 32px;
}

.cd-mt-32 {
  margin-top: 32px;
}

.cd-mt-48 {
  margin-top: 48px;
}

/* =============================================================================
   SHARED UTILITY CLASSES - END
   ============================================================================= */


/* =============================================================================
   BUTTON MODIFIERS - START
   ============================================================================= */

.btn-white {
  background: #fff;
  color: var(--dark);
  border: 1px solid #ddd;
}

.btn-white:hover {
  background: #fff;
  color: var(--dark);
  border: 1px solid #ddd;
}

.btn-white:active {
  border: 1px solid #ddd !important;
  outline: 0px;
}

.btn-white .btn-icon {
  background: #f5f5f5;
  color: var(--primary);
}

.btn-block-center {
  width: 100%;
  justify-content: center;
}

/* =============================================================================
   BUTTON MODIFIERS - END
   ============================================================================= */


/* =============================================================================
   SECTION HEADER HELPERS - START
   ============================================================================= */

.cd-section-header {
  max-width: 640px;
  margin: 0 auto 48px;
}

.cd-section-header-sm {
  margin: 0 auto 40px;
}

.cd-section-header-xs {
  margin: 0 auto;
}

.cd-section-eyebrow--secondary {
  color: var(--secondary);
}

.cd-section-eyebrow--mb {
  margin-bottom: 14px;
}

.cd-section-eyebrow--mb-lg {
  margin-bottom: 20px;
}

.cd-section-title--flush {
  margin-bottom: 0;
}

.cd-section-title--cta {}

.cd-section-sub--mb-sm {
  margin-bottom: 28px;
}

.cd-section-sub--mb-md {
  margin-bottom: 32px;
}

.cd-section-h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.cd-section-h3-sm {
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 16px;
  color: var(--dark);
}

/* =============================================================================
   SECTION HEADER HELPERS - END
   ============================================================================= */


/* =============================================================================
   HERO PLACEHOLDER PANEL - START
   ============================================================================= */



.cd-hero__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =============================================================================
   HERO PLACEHOLDER PANEL - END
   ============================================================================= */


/* =============================================================================
   IMAGE FRAME COMPONENT - START
   Dark-section wrapper with glassmorphism caption overlay.
   ============================================================================= */

.cd-img-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cd-img-frame__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cd-img-frame__overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px;
}

.cd-img-frame__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.cd-img-frame__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* Mission section frame — sits in an align-items-center row (not a
   stretched flex column), so it needs its own aspect-ratio to size itself
   instead of inheriting height from a sibling column. */
.Mission_section .cd-img-frame {
  aspect-ratio: 4 / 3;
}

/* Our Approach section frame — same align-items-center layout as above. */
.our_approach .cd-img-frame {
  aspect-ratio: 6 / 3;
}

/* =============================================================================
   IMAGE FRAME COMPONENT - END
   ============================================================================= */


/* =============================================================================
   QUICK FACTS STRIP - STAT NUM OVERRIDE - START
   ============================================================================= */

.cd-quickfacts .why-stat__num {
  font-size: 16px;
  line-height: 1.3;
}

/* =============================================================================
   QUICK FACTS STRIP - STAT NUM OVERRIDE - END
   ============================================================================= */


/* =============================================================================
   SECTOR GRID MODIFIER - START
   ============================================================================= */

.cd-sector-grid--flush {
  margin-top: 0;
}

/* =============================================================================
   SECTOR GRID MODIFIER - END
   ============================================================================= */


/* =============================================================================
   STATS STRIP MARGIN VARIANTS - START
   ============================================================================= */

.cd-stats-strip--mt-32 {
  margin-top: 32px;
}

.cd-stats-strip--mt-48 {
  margin-top: 48px;
}

/* =============================================================================
   STATS STRIP MARGIN VARIANTS - END
   ============================================================================= */


/* =============================================================================
   SALARY TICKER WRAPPER - START
   ============================================================================= */

.cd-ticker-wrap {
  overflow: hidden;
  margin-bottom: 36px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

/* =============================================================================
   SALARY TICKER WRAPPER - END
   ============================================================================= */


/* =============================================================================
   SALARY CARD - SENIOR ROLES LABEL - START
   ============================================================================= */

.cd-salary-card__roles-label--senior {
  color: #fff;
}

/* =============================================================================
   SALARY CARD - SENIOR ROLES LABEL - END
   ============================================================================= */


/* =============================================================================
   ACCREDITATION BADGES - START
   ============================================================================= */

.cd-accred-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cd-accred-badge {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 14px;
  padding: 12px 19px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  min-width: 200px;
}

.cd-accred-badge__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.cd-accred-badge__icon--red {
  background: rgba(230, 62, 59, 0.08);
  color: var(--primary);
}

.cd-accred-badge__icon--yellow {
  background: rgba(255, 188, 0, 0.1);
  color: var(--secondary);
}

.cd-accred-badge__icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.cd-accred-badge__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.cd-accred-badge__sub {
  font-size: 14px;
  color: #888;
  margin-top: 0;
}

/* =============================================================================
   ACCREDITATION BADGES - END
   ============================================================================= */


/* =============================================================================
   UNIVERSITY INFO CARD - START
   ============================================================================= */

.cd-uni-info {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 20px;
  padding: 36px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cd-uni-info__logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #ff6b5b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.cd-uni-info__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.cd-uni-info__meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

.cd-uni-info__desc {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cd-uni-info__tags {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* =============================================================================
   UNIVERSITY INFO CARD - END
   ============================================================================= */


/* =============================================================================
   UNIVERSITY HIGHLIGHTS CARD - START
   ============================================================================= */

.cd-uni-highlights {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 20px;
  padding: 36px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cd-uni-highlights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cd-uni-highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}

.cd-uni-highlight-item__icon {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cd-uni-highlight-item__text {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

/* =============================================================================
   UNIVERSITY HIGHLIGHTS CARD - END
   ============================================================================= */


/* =============================================================================
   FEE SECTION HEADER - START
   ============================================================================= */

.cd-fee-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.cd-fee-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cd-fee-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 10px;
  padding: 10px 18px;
}

.cd-fee-badge__icon--primary {
  color: var(--primary);
  font-size: 18px;
}

.cd-fee-badge__icon--green {
  color: #16a34a;
  font-size: 18px;
}

.cd-fee-badge__icon--blue {
  color: #2563eb;
  font-size: 18px;
}

.cd-fee-badge__text {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

/* =============================================================================
   FEE SECTION HEADER - END
   ============================================================================= */


/* =============================================================================
   FEE TABLE MODIFIERS - START
   ============================================================================= */

.cd-fee-table--mb {
  margin-bottom: 60px;
}

.cd-fee-table__note {
  font-size: 12px;
  color: #888;
}

/* =============================================================================
   FEE TABLE MODIFIERS - END
   ============================================================================= */


/* =============================================================================
   COMPARE TABLE MODIFIER - START
   ============================================================================= */

.cd-compare-table--featured {
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
  margin-bottom: 56px;
}

/* =============================================================================
   COMPARE TABLE MODIFIER - END
   ============================================================================= */


/* =============================================================================
   OFFER CARD MODIFIERS - START
   Column layout variant used in the JobsAcademy Advantage section.
   ============================================================================= */

.cd-offer-card--col {
  flex-direction: column;
  gap: 0;
}

.cd-offer-card--col .cd-aid-card__icon {
  margin-bottom: 14px;
}

.cd-offer-card__title--lg {
  font-size: 22px;
  margin-bottom: 8px;
}

.cd-offer-card__desc--lg {
  font-size: 16px;
}

/* =============================================================================
   OFFER CARD MODIFIERS - END
   ============================================================================= */


/* =============================================================================
   TOOL PILL IMAGE - START
   ============================================================================= */

.cd-tool-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* =============================================================================
   TOOL PILL IMAGE - END
   ============================================================================= */


/* =============================================================================
   DISCLAIMER MODIFIER - START
   ============================================================================= */

.cd-disclaimer--center {
  text-align: center;
}

/* =============================================================================
   DISCLAIMER MODIFIER - END
   ============================================================================= */


/* =============================================================================
   SECTION OVERFLOW - START
   Prevents horizontal scroll bleed from animated children.
   ============================================================================= */

.careers-section,
.teams-section,
.testimonials-section,
.testimonials-section2 {
  overflow-x: hidden;
}

/* =============================================================================
   SECTION OVERFLOW - END
   ============================================================================= */


/* =============================================================================
   ELIGIBILITY & DOCUMENT ICON COLOURS - START
   ============================================================================= */

.elig-icon--red,
.doc-icon--red {
  background: #fdecea;
  color: #F93C2B;
}

.elig-icon--yellow,
.doc-icon--yellow {
  background: #fff8e1;
  color: #d4960a;
}

.elig-icon--blue,
.doc-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.elig-icon--purple,
.doc-icon--purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.doc-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

/* =============================================================================
   ELIGIBILITY & DOCUMENT ICON COLOURS - END
   ============================================================================= */


/* =============================================================================
   CTA BAND FEATURE LIST - START
   ============================================================================= */

.wfc-icon--cta-item {
  width: 44px;
  height: 44px;
  font-size: 20px;
  border-radius: 12px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.cd-cta-text {
  color: #fff;
  font-size: 16px;
}

/* =============================================================================
   CTA BAND FEATURE LIST - END
   ============================================================================= */


/* =============================================================================
   EXPLORE COURSES — BROWSE BY INDUSTRY SECTION SIZE - START
   Reduces sidebar width/height and nav item size so the section sits smaller.
   ============================================================================= */

[data-cat-pane="industry"] .courses-layout {
  gap: 16px;
}

[data-cat-pane="industry"] .courses-sidebar {
  flex: 0 0 270px;
  width: 270px;
  height: auto;
  max-height: 640px;
  padding: 10px;
}

[data-cat-pane="industry"] .courses-nav .nav-item {
  margin-bottom: 2px;
}

[data-cat-pane="industry"] .courses-nav__link {
  padding: 5px 12px;
  font-size: 13px;
  gap: 8px;
}

[data-cat-pane="industry"] .courses-nav__link i {
  font-size: 15px;
}

[data-cat-pane="industry"] .courses-grid-pane {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}

[data-cat-pane="industry"] .courses-grid-pane::-webkit-scrollbar {
  height: 4px;
}

[data-cat-pane="industry"] .courses-grid-pane::-webkit-scrollbar-track {
  background: transparent;
}

[data-cat-pane="industry"] .courses-grid-pane::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px;
}

[data-cat-pane="industry"] .courses-grid-pane .courses-grid-card {
  flex: 0 0 260px;
  height: auto;
  align-self: stretch;
  scroll-snap-align: start;
}

[data-cat-pane="industry"] .courses-grid-pane .courses-grid-card.who-for-card .who-for-card__btn {
  margin-top: auto;
}

[data-cat-pane="industry"] .courses-panel {
  padding: 16px 16px 0;
  /* max-height: 420px; */
  overflow: hidden;
}

/* Outer wrapper injected by JS — wraps .courses-layout + arrows */
.industry-panel-outer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.industry-panel-outer .courses-layout {
  flex: 1;
  min-width: 0;
}

/* ── Industry tab vertical arrow column ── */
.industry-arrows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.industry-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #333;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.industry-arrow:hover {
  background: var(--primary, #e63329);
  border-color: var(--primary, #e63329);
  color: #fff;
}

.industry-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

[data-cat-pane="industry"] .courses-panel__title {
  display: none;
}

/* =============================================================================
   EXPLORE COURSES — BROWSE BY INDUSTRY SECTION SIZE - END
   ============================================================================= */


/* =============================================================================
   EXPLORE COURSES — COMPACT CARD OVERRIDES - START
   Applies to Browse by Industry, Certification Programmes, and Degree Programmes.
   ============================================================================= */

[data-cat-pane="cert"] .courses-grid-card,
[data-cat-pane="degree"] .courses-grid-card {
  padding: 10px;
  gap: 10px;
  height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

[data-cat-pane="cert"] .courses-grid-card .courses-grid-card__title,
[data-cat-pane="degree"] .courses-grid-card .courses-grid-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-cat-pane="cert"] .courses-grid-card .who-for-card__btn,
[data-cat-pane="degree"] .courses-grid-card .who-for-card__btn {
  margin-top: auto;
  flex-shrink: 0;
}

#coursesTabContent .courses-grid-card {
  padding: 10px;
  gap: 10px;
}

#coursesTabContent .courses-grid-card__img-wrap,
[data-cat-pane="cert"] .courses-grid-card__img-wrap,
[data-cat-pane="degree"] .courses-grid-card__img-wrap {
  height: 120px;
  border-radius: 10px;
}

#coursesTabContent .courses-grid-card__title,
[data-cat-pane="cert"] .courses-grid-card__title,
[data-cat-pane="degree"] .courses-grid-card__title {
  font-size: 18px;
  line-height: 1.35;
}

#coursesTabContent .courses-grid-card__meta,
[data-cat-pane="cert"] .courses-grid-card__meta,
[data-cat-pane="degree"] .courses-grid-card__meta {
  gap: 6px;
}

#coursesTabContent .courses-grid-card__meta span,
[data-cat-pane="cert"] .courses-grid-card__meta span,
[data-cat-pane="degree"] .courses-grid-card__meta span {
  font-size: 11px;
  padding: 2px 8px;
}

#coursesTabContent .who-for-card__btn,
[data-cat-pane="cert"] .who-for-card__btn,
[data-cat-pane="degree"] .who-for-card__btn {
  padding: 5px 14px 5px 5px;
  font-size: 16px;
}

/* =============================================================================
   EXPLORE COURSES — COMPACT CARD OVERRIDES - END
   ============================================================================= */

/* =============================================================================
   EXPLORE COURSES — MOBILE DOTS (below 768px)
   ============================================================================= */
.courses-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.courses-dots__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.courses-dots__dot--active {
  width: 20px;
  border-radius: 4px;
  background: var(--primary);
}

.courses-grid-pane.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}

@media (max-width: 767px) {
  .courses-dots {
    display: flex;
  }

  /* Scrollbar no longer needed below 767px — dots handle navigation */
  .courses-grid-pane {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .courses-grid-pane::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* Prev/next arrows no longer needed below 767px — dots handle navigation */
  .industry-arrows,
  .courses-slider-arrow {
    display: none !important;
  }

}

/* ── Cert / Degree slider wrapper & arrows ── */
.courses-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.courses-slider-wrap .courses-grid-pane {
  flex: 1;
  min-width: 0;
}

.courses-slider-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #333;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.courses-slider-arrow:hover {
  background: var(--primary, #e63329);
  border-color: var(--primary, #e63329);
  color: #fff;
}

.courses-slider-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.courses-slider-arrow--prev {
  margin-right: 12px;
}

.courses-slider-arrow--next {
  margin-left: 12px;
}


/* =============================================================================
   EMPLOYER PAGES — HERO OVERRIDES
   ============================================================================= */

.cd-hero.emp-hero-banner {
  background-image: url(../img/ehhb.png);
  height: 700px;
}

.contact_banner.emp-hero-banner {
  background-image: url(../img/ehhb.png);
  height: auto;
  padding: 150px 0 100px;
}

/* Employers hero — right-column fade slider (transparent PNG cutouts, same
   contain + drop-shadow treatment as the homepage hero image). */
.emp-hero-slider {
  width: 100%;
  display: flex;
  align-items: center;
}

.emp-hero-swiper {
  width: 100%;
}

.emp-hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.emp-hero-slider__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
}

/* Programme Catalogue — MBA / BBA / B.Voc / D.Voc cards */
.programme-catalogue .feature-white-card {
  height: 100%;
}

.companies-section.comp-partners .companies-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.programme-catalogue__name {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.programme-catalogue__meta {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 16px;
}

.programme-catalogue__list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.programme-catalogue__list li {
  padding: 7px 0;
  border-bottom: 1px solid #f0f0ee;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.programme-catalogue__list li:last-child {
  border-bottom: none;
}

.programme-catalogue__list li i {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.section-hero-bg {
  background: url(../img/ehhb.png) center center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

}

/* Programme Structure — info cards (Duration / Qualification / Learning
   Model / Assessment / On Completion) */
.prog-detail-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}

.prog-detail-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.prog-detail-card__label--primary {
  color: var(--primary);
}

.prog-detail-card__label--secondary {
  color: var(--secondary);
}

.prog-detail-card__label--dark {
  color: var(--dark);
}

.prog-detail-card__value {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
}

.prog-detail-card__desc {
  font-size: 16px;
  color: var(--paragraph);
  margin-top: 4px;
}

.skill-domains-section {
  background-image: url(../img/large-cta-bg.jpg);
  background-size: cover;
  background-position: center;
}

.emp-page .companies-section {
  background: #fff !important;
}


a.btn.btn-custom.btn-red.btn-red-old {
  background: linear-gradient(135deg, var(--primary) 0%, #c0201d 100%);
  box-shadow: 0 4px 16px rgb(209 40 33 / 0%);
}

/* ─── Icon symbol keeps its own color on hover (no yellow) ── */
.who-for-card:has(.wfc-icon--red):hover .who-for-card__icon,
.who-for-card--active:has(.wfc-icon--red) .who-for-card__icon {
  color: #F93C2B;
}

.who-for-card:has(.wfc-icon--yellow):hover .who-for-card__icon,
.who-for-card--active:has(.wfc-icon--yellow) .who-for-card__icon {
  color: #d4960a;
}

.who-for-card:has(.wfc-icon--blue):hover .who-for-card__icon,
.who-for-card--active:has(.wfc-icon--blue) .who-for-card__icon {
  color: #3b5bdb;
}

.who-for-card:has(.wfc-icon--purple):hover .who-for-card__icon,
.who-for-card--active:has(.wfc-icon--purple) .who-for-card__icon {
  color: #7048e8;
}

.who-for-card:has(.wfc-icon--green):hover .who-for-card__icon,
.who-for-card--active:has(.wfc-icon--green) .who-for-card__icon {
  color: #2f9e44;
}

.awward-section .feature-white-card {
  border: 1.5px solid #f93c2b;
}

/* ─── Contact Form Card & Styles ──────────────────────────── */
.ja-contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  position: relative;
}

.ja-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-bottom: 7px;
  text-transform: Capitalize;
}

.ja-required {
  color: var(--primary);
  font-weight: 700;
}

.ja-form-control {
  border-radius: 12px !important;
  border: 1.5px solid #e5e5e0 !important;
  padding: 13px 16px !important;
  font-size: 14px !important;
  color: var(--dark) !important;
  background-color: #fafaf8 !important;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: none !important;
  resize: none;
}

.ja-form-control:focus {
  border-color: var(--primary) !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 4px rgba(249, 60, 43, 0.09) !important;
  outline: none;
}

.ja-form-control::placeholder {
  color: #b0aea8;
  font-weight: 400;
}

.ja-form-consent {
  font-size: 12px;
  color: #999;
  margin-bottom: 18px;
  line-height: 1.6;
}

.ja-form-consent a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.ja-form-consent a:hover {
  text-decoration: underline;
}

.ja-form-submit {
  width: max-content;
  justify-content: center;
  font-size: 15px;
}

@media (max-width: 575px) {
  .ja-contact-form-card {
    padding: 28px 20px;
  }
}

/* ─── Contact Hero — details cards row ────────────────────── */
/* Rules are scoped under .contact-details so they keep winning over
   the base .feature-white-card__* rules at every breakpoint, exactly
   as the previous inline styles did. */
.contact-details {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 40px;
}

.contact-details .contact-info-card {
  padding: 16px 20px;
}

.contact-details .contact-info-card__icon {
  margin-bottom: 16px;
}

.contact-details .contact-info-card__title {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-details .contact-info-card__desc {
  font-size: 14px;
  margin-bottom: 0;
}

.contact-details .contact-info-card__email {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* ─── Contact Form section wrapper ────────────────────────── */
/* Scoped with the #contact-form id so padding-top keeps beating the
   responsive .cd-section overrides at every breakpoint, matching the
   previous inline style. */
#contact-form.contact-form-section {
  background: #f8f8f6;
  padding-top: 100px;
}

/* ─── Offices grid (dark cards over image background) ─────── */
.offices-grid {
  align-items: stretch;
}

.offices-grid__col {
  display: flex;
}

.office-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.office-card .office-card__icon {
  margin-bottom: 16px;
}

.office-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.office-card__title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.office-card__title--flush {
  margin-bottom: 0;
}

.office-card__text {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 0;
}

.office-card__text--light {
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}



.two-entry-point {
  background: url(../img/ehhb.png) center center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ─── Prog-type card: spec rows + tag + advantage ─────────── */
.prog-type-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.prog-type-card__tag--cert {
  background: #fff8e1;
  color: #856404;
}

.prog-type-card__tag--degree {
  background: #fdecea;
  color: var(--primary);
}

.prog-type-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0 20px;
  border-top: 1px solid #f0f0ec;
}

.prog-spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0ec;
}

.prog-spec-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f5f5f2;
  color: #555;
  font-size: 15px;
  flex-shrink: 0;
}

.prog-type-card--cert .prog-spec-row__icon {
  background: #fff8e1;
  color: #b38b00;
}

.prog-type-card--degree .prog-spec-row__icon {
  background: #fdecea;
  color: var(--primary);
}

.prog-spec-row__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  min-width: 100px;
}

.prog-spec-row__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-left: auto;
  text-align: right;
}

.prog-type-card__advantage {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.prog-type-card--cert .prog-type-card__advantage {
  background: #fff8e1;
  color: var(--secondary);
}

.prog-type-card--degree .prog-type-card__advantage {
  background: #fdecea;
  color: var(--primary);
}

.prog-type-card__advantage i {
  font-size: 16px;
  flex-shrink: 0;
}

/* ─── Prog spec row icon colour modifiers ─────────────────── */
.psi--red {
  background: #fdecea;
  color: #DD473F;
}

.psi--yellow {
  background: #fff8e1;
  color: #b38b00;
}

.psi--blue {
  background: #e8f0fe;
  color: #2563eb;
}

.psi--green {
  background: #e8f5e9;
  color: #16a34a;
}

.psi--purple {
  background: #f3e8ff;
  color: #7c3aed;
}

.psi--orange {
  background: #fff3e0;
  color: #d97706;
}


/* ========================================
   PROG BLOCKS v2 — "Choose Your Path" card revamp
   (scoped to .prog-blocks-section--v2 so the shared
   .prog-type-card component on other pages is untouched)
   ======================================== */

.prog-blocks-section--v2 {
  position: relative;
  overflow: hidden;
}


.prog-blocks-section--v2 .container {
  position: relative;
}

/* ── Header: accent line + two-tone gradient title ── */
.prog-blocks-header__accent-line {
  display: block;
  width: 48px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.prog-blocks-header__title-accent {
  background: linear-gradient(90deg, var(--primary), #ff7a3d, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Card surface: tinted gradient + refined border + lift ── */
.prog-blocks-section--v2 .prog-type-card {
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.prog-blocks-section--v2 .prog-type-card--cert {
  background: linear-gradient(180deg, #fffaf0 0%, #fff 55%);
  border-color: rgba(255, 188, 0, 0.25);
}

.prog-blocks-section--v2 .prog-type-card--degree {
  background: linear-gradient(180deg, #fdf1f0 0%, #fff 55%);
  border-color: rgba(249, 60, 43, 0.15);
}

.prog-blocks-section--v2 .prog-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

.prog-blocks-section--v2 .prog-type-card__title {
  transition: transform 0.25s ease;
}

.prog-blocks-section--v2 .prog-type-card:hover .prog-type-card__title {
  transform: translateX(3px);
}

/* ── Certification badge (promoted from the old spec row) ── */
.prog-type-card__cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.prog-type-card--cert .prog-type-card__cert-badge {
  background: #fff3cd;
  color: var(--secondary);
  border: 1px solid rgba(255, 188, 0, 0.35);
}

.prog-type-card--degree .prog-type-card__cert-badge {
  background: #fdecea;
  color: var(--primary);
  border: 1px solid rgba(249, 60, 43, 0.2);
}

/* ── Stat grid: Duration / Monthly EMI as featured numbers ── */
.prog-type-card__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid #f0f0ec;
  border-bottom: 1px solid #f0f0ec;
  margin-bottom: 16px;
}

.prog-type-card__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.prog-type-card__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  font-size: 16px;
  flex-shrink: 0;
}

.prog-type-card__stat .prog-type-card__stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #888;
  margin: 0;
}

.prog-type-card__stat .prog-type-card__stat-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin: 2px 0 0;
  line-height: 1.25;
}

/* ── Facts list: Mode / Intake ── */
.prog-type-card__facts {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.prog-type-card__facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: #333;
  border-bottom: 1px solid #f5f5f2;
}

.prog-type-card__facts li:last-child {
  border-bottom: none;
}

.prog-type-card__facts strong {
  color: var(--dark);
  font-weight: 700;
}

.prog-type-card__fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── Salary highlight box ── */
.prog-type-card__salary-box {
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.prog-type-card__salary-box .prog-type-card__salary-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.prog-type-card__salary-box .prog-type-card__salary-value {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

.prog-type-card__salary-box .prog-type-card__salary-value span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
}

.prog-type-card--cert .prog-type-card__salary-box {
  background: #fff8e1;
}

.prog-type-card--cert .prog-type-card__salary-label,
.prog-type-card--cert .prog-type-card__salary-value {
  color: var(--secondary);
}

.prog-type-card--degree .prog-type-card__salary-box {
  background: #fdecea;
}

.prog-type-card--degree .prog-type-card__salary-label,
.prog-type-card--degree .prog-type-card__salary-value {
  color: var(--primary);
}

/* ── CTA: full width ── */
.prog-blocks-section--v2 .prog-type-card .btn-custom {
  width: 100%;
  justify-content: start;
}

@media (max-width: 420px) {
  .prog-type-card__stat-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   LEGAL PAGES — Privacy / Terms / Refund
   ======================================== */
.legal-page-section {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.legal-page__inner {
  margin: 0 auto;
}

.legal-page__inner h2 {
  margin-top: 44px;
  margin-bottom: 16px;
}


.legal-page__inner p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 16px;
}

.legal-page__inner ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.legal-page__inner ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16.5px;
  line-height: 1.75;
  color: #444;
}

.legal-page__inner ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.legal-page__inner a {
  color: var(--primary);
  font-weight: 600;
  text-underline-offset: 2px;
}

.legal-page__inner a:hover {
  color: var(--dark);
  text-decoration: none;
}

@media (max-width: 767px) {
  .legal-page-section {
    padding: 48px 0;
  }

  .legal-page__inner p {
    font-size: 16px;
    line-height: 1.8;
  }

  .legal-page__inner h2 {
    text-align: start;
  }

}


/* ========================================
   OUTCOMES PAGE — oc-* components
   ======================================== */

/* ── Hero tweak ── */
.oc-hero .cd-hero__content {
  max-width: 620px;
}

/* ── Stats grid ── */
.oc-stats-section {
  background: #fff;
  padding: 64px 0;
}

.oc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.oc-stat-card {
  background: #f7f7f5;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid #ebebeb;
  transition: box-shadow 0.2s, transform 0.2s;
}

.oc-stat-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.oc-stat-card--accent {
  background: var(--primary, #e63329);
  border-color: var(--primary, #e63329);
  color: #fff;
}

.oc-stat-card--accent .oc-stat-card__icon,
.oc-stat-card--accent .oc-stat-card__label,
.oc-stat-card--accent .oc-stat-card__sub {
  color: rgba(255, 255, 255, 0.85);
}

.oc-stat-card--accent .oc-stat-card__number {
  color: #fff;
}

.oc-stat-card__icon {
  font-size: 32px;
  color: var(--primary, #e63329);
  margin-bottom: 12px;
  line-height: 1;
}

.oc-stat-card__number {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: #111;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.oc-stat-card__plus {
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 4px;
}

.oc-stat-card__label {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.oc-stat-card__sub {
  font-size: 12.5px;
  color: #888;
  line-height: 1.4;
}

/* ── Difference table ── */
.oc-diff-section {
  background: #f7f7f5;
  padding: 80px 0;
}

.oc-diff-table {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e8e8e8;
  background: #fff;
}

.oc-diff-table__header,
.oc-diff-table__row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  align-items: center;
}

.oc-diff-table__header {
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 0;
}

.oc-diff-table__col {
  padding: 16px 24px;
}

.oc-diff-table__col--them {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.oc-diff-table__col--us {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary, #f5a623);
  display: flex;
  align-items: center;
  gap: 8px;
}

.oc-diff-logo {
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.oc-diff-table__row {
  font-size: 14px;
  border-top: 1px solid #f0f0f0;
}

.oc-diff-table__row--alt {
  background: #fafaf8;
}

.oc-diff-table__col--label {
  font-weight: 700;
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.oc-diff-table__col--them {
  color: #888;
  border-left: 1px solid #f0f0f0;
}

.oc-diff-table__col--us {
  color: #222;
  border-left: 1px solid #f0f0f0;
  font-weight: 500;
}

.oc-diff-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.oc-diff-icon--yes {
  color: #16a34a;
}

.oc-diff-icon--no {
  color: #dc2626;
}

/* ── Process steps ── */
.oc-steps-section {
  background: #fff;
  padding: 80px 0;
}

.oc-steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.oc-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.oc-step__num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--primary, #e63329);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.oc-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff4f3;
  border: 2px solid #fdd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary, #e63329);
  margin: 0 auto 16px;
}

.oc-step__title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.oc-step__desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
}

.oc-step__arrow {
  font-size: 22px;
  color: #ccc;
  padding-top: 32px;
  flex-shrink: 0;
}

/* ── Sector cards ── */
.oc-sectors-section {
  background: #f7f7f5;
  padding: 80px 0;
}

.oc-sector-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #ebebeb;
  padding: 24px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.oc-sector-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.oc-sector-card--red {
  background: var(--primary, #e63329);
  border-color: var(--primary, #e63329);
  color: #fff;
}

.oc-sector-card--dark {
  background: #111;
  border-color: #111;
  color: #fff;
}

.oc-sector-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.oc-sector-card--red .oc-sector-card__head,
.oc-sector-card--dark .oc-sector-card__head {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.oc-sector-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #888;
  flex-shrink: 0;
}

.oc-sector-card__icon-wrap--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
}

.oc-sector-card__icon-wrap--purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8B5CF6;
}

.oc-sector-card__icon-wrap--green {
  background: rgba(22, 163, 74, 0.12);
  color: #16A34A;
}

.oc-sector-card__icon-wrap--yellow {
  background: rgba(214, 158, 0, 0.12);
  color: #D4A000;
}

.oc-sector-card__icon-wrap--teal {
  background: rgba(6, 182, 212, 0.12);
  color: #06B6D4;
}

.oc-sector-card__icon-wrap--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
}

.oc-sector-card--red .oc-sector-card__icon-wrap,
.oc-sector-card--dark .oc-sector-card__icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.oc-sector-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.oc-sector-card--red .oc-sector-card__name,
.oc-sector-card--dark .oc-sector-card__name {
  color: #fff;
}

.oc-sector-card__placed {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

.oc-sector-card--red .oc-sector-card__placed,
.oc-sector-card--dark .oc-sector-card__placed {
  color: rgba(255, 255, 255, 0.65);
}

.oc-sector-card__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oc-sector-card__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.oc-sector-card__stat span {
  color: #888;
}

.oc-sector-card__stat strong {
  color: #111;
  font-weight: 700;
  font-size: 14px;
}

.oc-sector-card--red .oc-sector-card__stat span,
.oc-sector-card--dark .oc-sector-card__stat span {
  color: rgba(255, 255, 255, 0.65);
}

.oc-sector-card--red .oc-sector-card__stat strong,
.oc-sector-card--dark .oc-sector-card__stat strong {
  color: #fff;
}

/* ── Student stories ── */
.oc-stories-section {
  background: url(../img/ehhb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Header row: left text + right arrows */
.oc-stories-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.oc-stories-header__text .cd-section-title {
  margin-bottom: 4px;
}

.oc-stories-header__text .cd-section-sub {
  margin: 0;
}

.oc-stories-header__arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.oc-story-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.oc-story-arrow:hover {
  background: var(--primary, #e63329);
  border-color: var(--primary, #e63329);
  color: #fff;
}

.oc-story-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Student Stories below 991px: dots replace the header arrows, heading centered */
@media (max-width: 991px) {
  .oc-stories-header {
    flex-direction: column;
    text-align: center;
  }

  .oc-stories-header__arrows {
    display: none !important;
  }

  .stories-pagination {
    display: block !important;
  }
}

/* Outer wrapper: full-bleed left, right-aligned with container/arrow */
.oc-stories-scroll-outer {
  overflow: visible;
  position: relative;
}

/* Stories Swiper */
.stories-swiper {
  overflow: visible;
}

.stories-swiper .swiper-wrapper {
  align-items: stretch;
}

.stories-swiper .swiper-slide {
  width: 420px;
  height: auto;
  display: flex;
}

/* Image story card */
.oc-img-story-card {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid #ebebeb;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.oc-img-story-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

/* Image area — top corners rounded (card no longer uses overflow:hidden) */
.oc-img-story-card__img {
  position: relative;
  height: 320px;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

/* Full-height gradient overlay — all text at the bottom */
.oc-img-story-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 45%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px 18px;
  gap: 4px;
}

/* Sector badge inside overlay */
.oc-img-story-card__sector {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary, #e63329);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  align-self: flex-start;
  margin-bottom: 6px;
}

.oc-img-story-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.oc-img-story-card__role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.oc-img-story-card__salary {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
  letter-spacing: -0.3px;
}

/* Quote below image — bottom corners rounded */
.oc-img-story-card__quote {
  padding: 18px 18px;
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  border-radius: 0 0 14px 14px;
  font-weight: 400;
}

/* ── Employer groups ── */
.oc-employers-section {
  background: #f7f7f5;
  padding: 80px 0;
}

.oc-employer-group {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #ebebeb;
  overflow: hidden;
  height: 100%;
}

.oc-employer-group__head {
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}

.oc-employer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oc-employer-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid #f4f4f2;
}

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

.oc-employer-list li span {
  color: #111;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.1px;
}

.oc-employer-list li em {
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  background: #16a34a;
  padding: 2px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.oc-employer-list__more a {
  color: var(--primary, #e63329);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
}

.oc-employer-list__more a:hover {
  text-decoration: underline;
}

/* ── Cities section — stat card grid ── */
.oc-cities-section {
  background: url(../img/ehhb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.oc-city-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.oc-city-stat-card {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 22px 16px 18px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.oc-city-stat-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.oc-city-stat-card__num {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary, #e63329);
  line-height: 1;
  margin-bottom: 7px;
  font-family: var(--font-family) !important;
  letter-spacing: 1px;
}


.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: var(--font-family) !important;

}

.oc-city-stat-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

.oc-city-stat-card__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #999;
}

.cities-v2-more--light {
  color: #666;
  font-size: 13.5px;
}

.cities-v2-more--light i {
  color: #bbb;
}

.oc-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.oc-city-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.oc-city-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.oc-city-card--large {
  background: var(--primary, #e63329);
  border-color: var(--primary, #e63329);
}

.oc-city-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.oc-city-card__count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.oc-city-card--large .oc-city-card__count {
  color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════════
   OUTCOMES PAGE — NEW SECTION STYLES
   ═══════════════════════════════════════════════ */

/* ── Stats strip stroke ── */
.oc-stats-strip {
  border-bottom: 1.5px solid #e8e8e4;
}

/* ── Diff Two-Panel ── */
.oc-diff-two-section .cd-section-title {
  white-space: nowrap;
}

.diff-dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  position: relative;
}

.diff-panel {
  display: flex;
  flex-direction: column;
}

.diff-panel--them {
  background: #fff;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

.diff-panel--us {
  background: linear-gradient(135deg, var(--primary) 0%, #c0392b 100%);
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}

.diff-panel__header {
  padding: 24px 32px 20px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}

.diff-panel--us .diff-panel__header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.diff-panel__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}

.diff-panel--us .diff-panel__label {
  color: rgba(255, 255, 255, 0.65);
}

.diff-panel__items {
  flex: 1;
}

.diff-panel__item {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.diff-panel--us .diff-panel__item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.diff-panel__item:last-child {
  border-bottom: none;
}

.diff-panel__value {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  white-space: nowrap;
}

.diff-panel--us .diff-panel__value {
  color: #fff;
}

.diff-panel__sub {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
  white-space: nowrap;
}

.diff-panel--us .diff-panel__sub {
  color: rgba(255, 255, 255, 0.65);
}

/* VS circle absolutely centred at the 50/50 split */
.diff-vs-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #f83c2b;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.14);
  z-index: 2;
}

/* ── Hero bg sections ── */
.oc-hero-bg-section {
  background: url(../img/hero-bg.jpg) center center / cover no-repeat;
  position: relative;
}

.oc-hero-bg-section>.container,
.oc-hero-bg-section>.section-header,
.oc-sectors-section.oc-hero-bg-section>* {
  position: relative;
  z-index: 1;
}

/* Index homepage hero gradient — used for The Process section */
.oc-index-hero-bg {
  background: url(../img/ehhb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* The Difference — compact width cap */
.oc-diff-two-section .container {
  max-width: 1300px;
}

.diff-dual-panel {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Stories One-Card Slider — 50/50 split ── */
.oc-stories-slider {
  background: #0a0a0a;
  overflow: hidden;
}

/* Full-width 50/50 container */
.oc-stories-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* LEFT — image column */
.oc-stories-img-col {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.oc-stories-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.oc-stories-img-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.oc-stories-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.oc-stories-stat {
  text-align: center;
}

.oc-stories-stat__num {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary, #f5b800);
  line-height: 1.1;
  margin-bottom: 4px;
}

.oc-stories-stat__lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* RIGHT — content column */
.oc-stories-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px;
  min-width: 0;
  overflow: hidden;
}

.oc-stories-slider__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.oc-stories-slider__eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.oc-stories-slider__title {
  color: #fff;
  margin-bottom: 8px;
}

.oc-stories-slider__sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  margin: 0;
}

.oc-stories-slider__nav-wrap {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.oc-story-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.oc-story-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.oc-stories-swiper {
  overflow: hidden;
}

/* Each slide — single column quote card */
.story-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  min-height: 320px;
  position: relative;
}

.story-slide__sector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
}

.story-slide__big-quote {
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 0.7;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 28px;
  left: 36px;
  user-select: none;
  pointer-events: none;
}

.story-slide__quote {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  flex: 1;
}

.story-slide__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-slide__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(230, 51, 41, 0.15);
  border: 2px solid rgba(230, 51, 41, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
}

.story-slide__person-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.story-slide__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.story-slide__role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.story-slide__salary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230, 51, 41, 0.15);
  color: #ff6b5e;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  width: fit-content;
}

.oc-stories-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
  gap: 6px;
}

.oc-stories-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  opacity: 1;
  transition: background 0.2s, width 0.2s;
}

.oc-stories-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
}

/* ── Story V2 Cards (kept for reference, unused) ── */
.oc-stories-v2 {
  background: #fff;
}

.story-v2-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #ebebeb;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.22s, transform 0.22s;
}

.story-v2-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.story-v2-card--featured {
  border-color: var(--primary);
}

.story-v2-card__top {
  position: relative;
  height: 110px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 20px 14px;
}

.story-v2-card__top--teal {
  background: linear-gradient(135deg, #0b7b77, #14a8a2);
}

.story-v2-card__top--red {
  background: linear-gradient(135deg, #c0392b, #e84646);
}

.story-v2-card__top--green {
  background: linear-gradient(135deg, #1a7a3c, #25b85a);
}

.story-v2-card__top--purple {
  background: linear-gradient(135deg, #5b3ea6, #7c5ccf);
}

.story-v2-card__top--orange {
  background: linear-gradient(135deg, #c05e00, #f07c00);
}

.story-v2-card__top--blue {
  background: linear-gradient(135deg, #1563a0, #2089d6);
}

.story-v2-card__sector {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
}

.story-v2-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.story-v2-card__quote-mark {
  position: absolute;
  bottom: -18px;
  left: 20px;
  font-size: 80px;
  line-height: 1;
  color: #fff;
  font-family: Georgia, serif;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}

.story-v2-card__body {
  padding: 28px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-v2-card__quote {
  font-size: 13.5px;
  color: #444;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin: 0 0 16px;
  border: none;
  padding: 0;
}

.story-v2-card__divider {
  height: 1px;
  background: #ebebeb;
  margin-bottom: 14px;
}

.story-v2-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.story-v2-card__role {
  font-size: 12px;
  color: #888;
  margin: 3px 0 10px;
}

.story-v2-card__salary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0faf5;
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

.story-v2-card--featured .story-v2-card__salary {
  background: #fff4f3;
  color: var(--primary);
}

/* ── Where They Earn ── */
.oc-earn-section {
  background: url(../img/ehhb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.earn-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.earn-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.earn-card--featured {
  border-color: var(--primary);
  background: #fff9f9;
}

.earn-card__employer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.earn-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.earn-card__icon--teal {
  background: #e0f5f4;
  color: #0b7b77;
}

.earn-card__icon--red {
  background: #fdecea;
  color: var(--primary);
}

.earn-card__icon--gold {
  background: #fef7e0;
  color: #b07a00;
}

.earn-card__icon--purple {
  background: #f0ebff;
  color: #5b3ea6;
}

.earn-card__icon--blue {
  background: #e8f3fc;
  color: #1563a0;
}

.earn-card__icon--orange {
  background: #fef0e0;
  color: #c05e00;
}

.earn-card__employer {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.earn-card__role {
  font-size: 14px;
  color: #000;
  margin-top: 2px;
}

.earn-card__salary {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: 12px;
}

.earn-card__salary span {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.earn-bar-wrap {
  height: 6px;
  background: #f0f0f0;
  border-radius: 100px;
  margin-bottom: 12px;
}

.earn-bar {
  height: 100%;
  border-radius: 100px;
  background: #0b7b77;
}

.earn-bar--red {
  background: var(--primary);
}

.earn-bar--gold {
  background: #c8960a;
}

.earn-bar--purple {
  background: #5b3ea6;
}

.earn-bar--blue {
  background: #1563a0;
}

.earn-bar--orange {
  background: #c05e00;
}

.earn-card__city {
  font-size: 16px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.earn-footer-note {
  margin-top: 32px;
  text-align: center;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.earn-footer-note i {
  color: #16a34a;
  font-size: 16px;
}

/* ── Data Deep Dive ── */
/* ── Data Deep Dive — tabbed layout ── */


.fp-tabs-wrap {
  margin-top: 0;
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #e8e8e6;
  overflow: hidden;
}

/* Tab nav strip */
.fp-tab-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1.5px solid #e8e8e6;
}

.fp-tab-nav .nav-item {
  flex: 1;
}

.fp-tab-btn {
  display: block;
  width: 100%;
  padding: 16px 12px;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.fp-tab-btn:hover {
  color: #333;
  background: #fafaf8;
}

.fp-tab-btn.active {
  color: var(--primary, #e63329);
  border-bottom-color: var(--primary, #e63329);
  background: #fff;
}

/* Tab body */
.fp-tab-body {
  padding: 32px 36px 36px;
}

.fp-tab-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.fp-tab-sub {
  font-size: 16px;
  color: #888;
  margin-bottom: 24px;
}

/* Sector label */
.fp-sector-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.fp-sector-label--green {
  color: #000;
}

.fp-sector-label--orange {
  color: #000;
}

.fp-sector-label--blue {
  color: #000;
}

/* Bar rows (income + employer) */
.fp-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.fp-bar-range {
  flex: 0 0 120px;
  font-size: 14px;
  color: #000;
  text-align: right;
}

.fp-bar-row--employer .fp-bar-range {
  flex: 0 0 160px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
}

.fp-bar-track {
  flex: 1;
  height: 28px;
  background: #f0f0ee;
  border-radius: 6px;
  overflow: hidden;
}

.fp-bar {
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s ease;
}

.fp-bar--green {
  background: #f0b000;
}

.fp-bar--orange {
  background: linear-gradient(135deg, #3346d8 0%, #2937a8 100%);
}

.fp-bar--blue {
  background: #8b5cf6;
}

.fp-bar--red {
  background: linear-gradient(135deg, var(--primary) 0%, #c0201d 100%);
}

.fp-bar-count {
  flex: 0 0 36px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-align: right;
}

/* Programme rows */
.fp-prog-row {
  margin-bottom: 20px;
}

.fp-prog-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.fp-prog-bar-wrap {
  height: 36px;
  background: #f0f0ee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 5px;
}

.fp-prog-bar {
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  transition: width 0.6s ease;
}

.fp-prog-bar--green {
  background: #f0b000;
}

.fp-prog-bar--orange {
  background: linear-gradient(135deg, #3346d8 0%, #2937a8 100%);
}

.fp-prog-bar--blue {
  background: #8b5cf6;
}

.fp-sector-label--red {
  color: #000;
}

.fp-sector-label--amber {
  color: #000;
}

.fp-prog-bar--red {
  background: linear-gradient(135deg, var(--primary) 0%, #c0201d 100%);
}

.fp-prog-bar--amber {
  background: #f0b000;
}

.fp-prog-detail {
  font-size: 12px;
  color: #888;
}

/* Mix grid */
.fp-mix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 12px;
}

.fp-mix-card {
  background: #f7f7f5;
  border-radius: 12px;
  padding: 22px 18px 18px;
}

.fp-mix-card__num {
  font-weight: 700;
  color: #000;
  font-size: 31px;
  color: var(--primary, #e63329);
  line-height: 1;
  margin-bottom: 2px;
}

.fp-mix-card__pct {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.fp-mix-card__type {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.fp-mix-card__names {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.fp-mix-card__names--link {
  color: #555;
}

.fp-mix-card__names--link strong {
  color: #111;
}

/* Notes */
.fp-tab-note,
.fp-mix-note {
  font-size: 14px;
  color: #888;
  margin-top: 20px;
  line-height: 1.7;
  font-style: italic;
}

p.footer-brand__desc {
  color: #fff;
  font-size: 16px;
  max-width: 75%;
  margin-top: 12px;
}

.data-dive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
}

.data-dive-card {
  background: #1a1a1a;
  padding: 36px 32px;
  transition: background 0.2s;
}

.data-dive-card:hover {
  background: #222;
}

.data-dive-card--highlight {
  background: var(--primary);
}

.data-dive-card--highlight:hover {
  background: #c0392b;
}

.data-dive-card__num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.data-dive-card--highlight .data-dive-card__num {
  color: #fff;
}

.data-dive-card__of {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.data-dive-card__unit {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.data-dive-card__label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin-bottom: 8px;
}

.data-dive-card__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.data-dive-card--highlight .data-dive-card__sub {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Cities V2 ── */
.oc-cities-v2 {
  background: #0b2536;
}

.cities-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.city-v2-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.city-v2-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.city-v2-card--hero {
  background: var(--primary);
  border-color: var(--primary);
  grid-column: span 2;
}

.city-v2-card--hero:hover {
  background: #c0392b;
  border-color: #c0392b;
}

.city-v2-card__region {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.city-v2-card--hero .city-v2-card__region {
  color: rgba(255, 255, 255, 0.7);
}

.city-v2-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.city-v2-card--hero .city-v2-card__name {
  font-size: 26px;
}

.city-v2-card__num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.city-v2-card--hero .city-v2-card__num {
  font-size: 48px;
}

.city-v2-card__unit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  margin-bottom: 12px;
}

.city-v2-card__bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.city-v2-bar {
  height: 100%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
}

.city-v2-card--hero .city-v2-bar {
  background: rgba(255, 255, 255, 0.8);
}

.cities-v2-footer {
  margin-top: 28px;
}

.cities-v2-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.cities-v2-more i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
}


.opp-padding {
  --bs-gutter-x: 3.5rem;
}

#two-models {
  border-top: 1px solid var(--border);
}

/* ── Employers Train & Hire Page ── */
.model-card {
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}

.model-card--primary {
  border: 2px solid var(--primary);
}

.model-card--secondary {
  border: 2px solid var(--secondary);
}

.hiw-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 14px;
  padding: 20px;
  height: 100%;
}

.why-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: transparent;
  border: 1px solid #e8e8e4;
  border-radius: 12px;
  padding: 20px;
}

.hiw-padding {
  --bs-gutter-y: 1.5rem;
}

.skill-padding {
  --bs-gutter-x: 3rem;
}

.mission-padding {
  --bs-gutter-x: 2rem;
}

.emp-padding {
  --bs-gutter-x: 3rem;
}

.indus-padding {
  --bs-gutter-x: 3rem;
}

.awwards-padding {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.member-padding {
  --bs-gutter-x: 3rem;
}

/* ─── Mentor / Faculty card ─────────────────────────────── */
.mentor-card {
  padding: 12px;
  overflow: hidden;
}

.mentor-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.mentor-card__body {
  margin-top: 10px;
}

.mentor-card__role {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 8px;
}

.membership {
  background: #f8f8f6;
}

.membership__logos {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}

.membership__logo-img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
}

.aboutBannerWrapper .cd-hero__hook {
  margin: 0 auto 28px;
}

.aboutBannerWrapper .cd-hero__actions {
  justify-content: center
}

.cd-hero.cd-hero-banner.emp-hero-banner.aboutBannerWrapper {
  height: 560px;
}

.cd-hero.cd-hero-banner.emp-hero-banner.aboutBannerWrapper.policesBanner {
  height: auto;
}