/* ==========================================
   DESIGN TOKENS
   ========================================== */
:root {
  --brand-dark: #003E52;
  --brand-teal: #006c8a;
  --brand-navy: #1e3c72;
  --accent-orange: #ff6b35;
  --accent-orange-hover: #e55a2b;
  --accent-yellow: #fca311;
  --accent-yellow-hover: #e59300;

  --white: #ffffff;
  --gray-lightest: #f7f9fc;
  --gray-light: #eef2f7;
  --gray-border: #dde3ea;
  --gray-medium: #64748b;
  --gray-dark: #334155;
  --charcoal: #0f172a;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.20);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  --font-heading: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: 0.25s ease;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* Responsive font scaling for large screens */
@media (min-width: 1400px) {
  html {
    font-size: 70%;
    /* 1rem = 11.2px */
  }
}

@media (min-width: 1800px) {
  html {
    font-size: 75%;
    /* 1rem = 12px */
  }
}

@media (min-width: 2400px) {
  html {
    font-size: 85%;
    /* 1rem = 13.6px */
  }
}


body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--gray-dark);
  background: #F4FAFF;
  padding-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--gray-border);
}

.desktop-only {
  display: inline;
}

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

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  /* Reduced from 1.2rem 2.6rem */
  color: #004263;
  /* New button text color */
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  white-space: nowrap;
  text-align: center;
  display: inline-flex;
  /* For icon alignment */
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.btn__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--yellow {
  background: var(--accent-yellow);
  color: #004263;
  border-color: var(--accent-yellow);
  border-radius: 4px;
  /* Radius set to 4 */
}

.btn--yellow:hover {
  background: var(--accent-yellow-hover);
  border-color: var(--accent-yellow-hover);
  box-shadow: 0 8px 24px rgba(252, 163, 17, 0.4);
}

.btn--enquire-track {
  background: #FFF0C3 !important;
  color: #542800 !important;
  border: 0.5px solid #FFB501 !important;
  border-radius: 4px !important;
}

.btn--enquire-track .btn__icon {
  filter: invert(14%) sepia(85%) saturate(1814%) hue-rotate(345deg) brightness(88%) contrast(97%);
}

.btn--enquire-track:hover {
  background: #ffe6a0 !important;
  box-shadow: 0 4px 12px rgba(255, 181, 1, 0.2);
}

.btn--outline-blue {
  background: #ffffff;
  color: #008eb4;
  border: 1px solid #008eb4;
  border-radius: 4px;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  transition: all 0.3s ease;
}

.btn--outline-blue:hover {
  background: #008eb4;
  color: #ffffff;
}

.btn--outline-blue .btn__icon {
  filter: invert(43%) sepia(93%) saturate(394%) hue-rotate(149deg) brightness(91%) contrast(101%);
}

.btn--outline-blue:hover .btn__icon {
  filter: brightness(0) invert(1);
}

.btn--hero {
  background: var(--accent-yellow);
  color: #004263;
  /* Match new button color */
  font-size: 1.4rem;
  font-weight: 800;
  padding: 0.9rem 2.8rem;
  /* Reduced height */
  border-radius: 4px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  border: 2px solid var(--accent-yellow);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn--hero:hover {
  background: var(--accent-yellow-hover);
  border-color: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 163, 17, 0.4);
}

.btn--cta-nav {
  background: var(--accent-yellow);
  color: #004263;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease);
}

.btn--cta-nav:hover {
  background: var(--accent-yellow-hover);
  transform: translateY(-1px);
}

.btn--stretched {
  padding-left: 3.6rem;
  padding-right: 3.6rem;
}

/* Main top-level header */
body>header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}

.nav {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(44, 62, 80, 0.8);
  /* Translucent dark */
  backdrop-filter: blur(8px);
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 1rem;
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav__brand img {
  height: 44px;
  width: auto;
  display: block;
}

.nav__toggler {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Transform to X when menu is open */
.collapsible--expanded .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.collapsible--expanded .hamburger span:nth-child(2) {
  opacity: 0;
}

.collapsible--expanded .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__toggler:hover {
  opacity: 1;
}

/* Collapsible */
.collapsible__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  width: 100%;
}

.collapsible--expanded .collapsible__content {
  max-height: 400px;
  opacity: 1;
}

.nav__list {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 0;
}

.nav__item>a {
  display: block;
  padding: 1.4rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--ease), padding-left 0.3s ease;
}

.nav__item>a:hover {
  color: var(--accent-yellow);
  padding-left: 1rem;
}

.nav__item>a:hover,
.nav__item--active>a {
  color: var(--accent-yellow);
}

.cta-buttons {
  display: none;
}



/* Dropdown */
.dropdown {
  display: none;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  min-width: 200px;
  box-shadow: var(--shadow-md);
  z-index: 100;
}

.dropdown li a {
  display: block;
  padding: 1rem 1.6rem;
  font-size: 1.4rem;
  color: var(--gray-dark);
}

.dropdown li a:hover {
  color: var(--accent-orange);
  background: var(--gray-lightest);
}

/* ======== Desktop Nav ======== */
@media (min-width: 768px) {
  .nav {
    flex-wrap: nowrap;
    padding: 1.2rem 3rem;
  }

  .nav__toggler {
    display: none;
  }

  .collapsible__content {
    max-height: none;
    overflow: visible;
    opacity: 1;
    width: auto;
    flex: 1;
  }

  .nav__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
  }

  .nav__item>a {
    border-bottom: none;
    padding: 0.7rem 1.4rem;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
  }

  .nav__item>a:hover {
    color: var(--accent-yellow);
    background: transparent;
  }

  .nav__item--active>a {
    color: var(--accent-yellow);
    font-weight: 700;
    background: transparent;
  }

  .nav__item:hover>.dropdown {
    display: block;
  }

  .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
  }

  .cta-buttons {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .btn--cta-nav {
    background: var(--accent-yellow);
    color: #004263;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.8rem 2.2rem;
    border-radius: 4px;
    /* Pill-ish or rectangular from screenshot */
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn--cta-nav:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-1px);
  }
}

/* Mobile nav-open */
@media (max-width: 767px) {
  .nav {
    top: 15px;
    left: 15px;
    right: 15px;
    padding: 1rem 2rem;
  }

  body.nav-open {
    padding-top: 300px;
  }

  .nav-open .cta-buttons {
    display: block;
    margin-top: 2rem;
    width: 100%;
  }

  .nav-open .btn--cta-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1.4rem;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  /* Top-left (start) */
  justify-content: flex-start;
  padding-top: 18rem;
  /* More space for nav */
  padding-bottom: 8rem;
}

@media (max-width: 767px) {
  .hero {
    min-height: 85vh;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}

.hero__overlay {
  display: none;
  /* Removed overlay as requested */
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  margin-left: 6rem;
  padding-left: 0;
  padding-right: 2.4rem;
}

@media (max-width: 767px) {
  .hero__content {
    margin-left: 0;
    padding-left: 2.4rem;
    padding-top: 0;
    padding-bottom: 2rem;
  }
}

.hero__heading {
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero__subtext {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 3.2rem;
}

/* ==========================================
   TRACKS SECTION
   ========================================== */
.tracks-section {
  padding: 5rem 0;
  background-color: transparent;
  /* Grid background like coming soon page but light */
  background-image:
    linear-gradient(rgba(0, 62, 82, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 62, 82, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
}

.tracks__heading {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 6rem;
  letter-spacing: -0.02em;
}

.tracks-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.track-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .track-card {
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
  }
}

.track-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge--blue {
  background: var(--brand-teal);
  color: var(--white);
}

.track-card__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}

.track-card__text {
  font-size: 1.5rem;
  color: var(--gray-medium);
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

.track-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.badge-mini {
  background: #fef3e7;
  /* Light peach/tan from screenshot */
  color: #8a5a2b;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 4px;
}

.btn--sm {
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

.track-card__image-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.track-card__image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.programmes-section {
  padding: 5rem 0;
  background: transparent;
}

.programmes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .programmes__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: stretch;
  }
}

/* Left illustration card */
.programmes__visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.programmes__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.programmes__label {
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  z-index: 2;
}

/* Right programme items */
.programmes__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.programme-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-border);
}

.programme-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.programme-item h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 500;
  color: #1F1F1F;
  margin-bottom: 0.5rem;
}

.programme-item__row {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
}

.programme-item__next {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.programme-item p {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.65;
}

/* ==========================================
   EQUIP SECTION
   ========================================== */
.equip-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-image: url('../images/train_people.png');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0;
}

@media (max-width: 767px) {
  .equip-section {
    margin: 2rem 1.5rem;
    padding: 5rem 0;
    border-radius: 12px;
    width: auto;
  }
}

.equip__overlay {
  display: none;
  /* Removed as requested */
}

.equip__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .equip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.equip__heading {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .equip__heading {
    font-size: clamp(2rem, 5vw, 3.4rem);
    white-space: normal;
  }
}

.equip__right p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

/* ==========================================
   CLIENTS SECTION
   ========================================== */
.clients-section {
  padding: 5rem 0;
  background: transparent;
}

.clients-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .clients-header {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.clients__heading {
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin: 0;
}

@media (max-width: 767px) {
  .clients__heading {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }
}

.clients__description {
  font-size: 1.55rem;
  color: var(--gray-medium);
  line-height: 1.75;
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.client-card {
  background: var(--white);
  padding: 2.8rem 2.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.client-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.client-card__title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0;
}

.client-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.client-card__text {
  font-size: 1.4rem;
  color: var(--gray-medium);
  line-height: 1.65;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  padding: 4rem 0;
  background: transparent;
}

.testimonials__heading {
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 520px;
}

@media (max-width: 1023px) {
  .testimonials-grid {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    min-height: 380px;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    flex-direction: row;
    align-items: stretch;
  }
}

.testimonial-card {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
  min-height: 320px;
  box-shadow: var(--shadow-lg);
  transition: flex 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

@media (max-width: 1023px) {
  .testimonial-card {
    flex: 0 0 100%;
    min-height: 380px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: var(--radius-md);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-height: unset;
  }

  /* Default: first card is expanded */
  .testimonial-card:first-child {
    flex: 3;
  }

  .testimonial-card:first-child .testimonial-card__overlay {
    opacity: 1;
    visibility: visible;
  }

  /* Hover any card to expand it */
  .testimonial-card:hover {
    flex: 3 !important;
  }

  .testimonial-card:hover .testimonial-card__overlay {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Shrink first card when another card is hovered */
  .testimonials-grid:hover .testimonial-card:first-child:not(:hover) {
    flex: 1;
  }

  .testimonials-grid:hover .testimonial-card:first-child:not(:hover) .testimonial-card__overlay {
    opacity: 0;
    visibility: hidden;
  }
}

.testimonial-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.testimonial-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 1.6rem;
  align-items: flex-end;
  padding: 3rem 2.8rem 3.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  opacity: 0;
  /* Hide text by default */
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

@media (max-width: 1023px) {
  .testimonial-card__overlay {
    opacity: 1;
    visibility: visible;
  }
}

.testimonial-card:hover .testimonial-card__overlay {
  opacity: 1;
  visibility: visible;
}

.quote-icon {
  font-size: 6rem;
  line-height: 1;
  color: var(--accent-orange);
  font-family: Georgia, serif;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 0.4rem;
}

.testimonial-card__text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.testimonial-card__author {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.65);
}

.testimonial-card__author strong {
  color: var(--white);
}

/* Testimonials Dots */
.testimonials-dots {
  display: none;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

@media (max-width: 1023px) {
  .testimonials-dots {
    display: flex;
  }

  .testimonial-card {
    background: var(--brand-dark);
    box-shadow: none;
  }

  .testimonial-card__overlay {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2.5rem 2.4rem;
    background: none;
  }

  .quote-icon {
    align-self: flex-start;
    margin-bottom: 2rem;
    font-size: 4.2rem;
  }

  .testimonial-card__text {
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
  }

  .testimonial-card__author {
    font-size: 1.4rem;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--brand-dark);
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner-wrapper {
  padding: 2rem 2.4rem 5rem 2.4rem;
  position: relative;
  z-index: 10;
}

.cta-banner {
  border-radius: var(--radius-lg);
  padding: 8rem 4rem;
  min-height: 300px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  max-width: 1160px;
  margin: 0 auto;
  /* No overlay, just background image */
  background-image: url('../images/get_started_background.png');
  background-size: cover;
  background-position: center;
}

/* Subtle inner glow from top-right */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 200, 220, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Chevron pattern along bottom edge */
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-image: repeating-linear-gradient(135deg,
      rgba(255, 255, 255, 0.07) 0px, rgba(255, 255, 255, 0.07) 14px,
      transparent 14px, transparent 28px);
}

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 6rem;
  }
}

.cta-banner__heading {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.cta-banner__text {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-banner__content {
  margin-top: -50px;
}

.cta-banner__action {
  flex-shrink: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-new {
  background: #ffffff !important;
  padding: 8rem 2.4rem 4rem;
  /* Reduced top padding as banner is no longer overlapping */
  border-top: 1px solid var(--gray-border);
}

.footer-new__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .footer-new__grid {
    grid-template-columns: 1.4fr 2fr;
    gap: 6rem;
  }
}

.footer-new__logo {
  height: 60px;
  width: auto;
  margin-bottom: 2rem;
}

.footer-new__brand p {
  font-size: 1.4rem;
  color: #000000;
  line-height: 1.7;
  max-width: 300px;
}

.footer-new__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 600px) {
  .footer-new__links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-new__column h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.footer-new__column ul li {
  margin-bottom: 1.2rem;
}

.footer-new__column ul li a {
  font-size: 1.4rem;
  color: var(--gray-medium);
  transition: color var(--ease);
}

.footer-new__column ul li a:hover {
  color: var(--accent-orange);
}

.footer-new__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-border);
  font-size: 1.3rem;
  color: var(--gray-medium);
}

@media (min-width: 768px) {
  .footer-new__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-new__legal {
  display: flex;
  gap: 2.4rem;
}

.footer-new__legal a {
  color: var(--gray-medium);
  font-size: 1.3rem;
  transition: color var(--ease);
}

.footer-new__legal a:hover {
  color: var(--accent-orange);
}

/* ==========================================
   ICON & MISC UTILITIES
   ========================================== */
.icon {
  width: 20px;
  height: 20px;
}

.icon--white {
  fill: white;
}

/* Collapsible chevron for footer if needed */
.collapsible__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collapsible__chevron {
  width: 20px;
  height: 20px;
  fill: var(--gray-medium);
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.collapsible--expanded .collapsible__chevron {
  transform: rotate(0);
}

/* ==========================================
   COURSES PAGE SPECIFIC
   ========================================== */
.hero--small {
  min-height: 100vh;
  padding-top: 12rem;
}

.hero--small .hero__heading {
  font-size: clamp(4rem, 8vw, 7rem);
}

.course-track-section {
  padding: 4rem 0;
  overflow: hidden;
}

.page-pathways .course-track-section {
  padding: 7rem 0;
}

.course-track__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .course-track__grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
    gap: 6rem;
  }

  .grid--reverse {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
    gap: 6rem;
  }
}

.course-track__heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.course-track__description {
  font-size: clamp(1.5rem, 1.8vw, 1.7rem);
  color: #000;
  margin-bottom: 1.5rem;
  max-width: 600px;
  line-height: 1.6;
}

/* Grid for cards */
.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.course-card {
  background: var(--white);
  padding: 2.8rem;
  border-radius: var(--radius-md);
  border: 1px solid #FFE59D;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.course-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 1.8vw, 2.0rem);
  font-weight: 800;
  color: #003E52;
  /* Darker blue from design */
  margin-bottom: 1.6rem;
}

.track--deep-tech .course-card {
  border: 1px solid #FFE59D;
}

.course-card p {
  font-size: clamp(1.4rem, 2.2vw, 1.6rem);
  color: #445D65;
  line-height: 1.6;
  margin-bottom: 2.4rem;
  flex-grow: 1;
}

.card-level {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #64748b;
  /* Greyish blue for level label */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem 0;
}

.course-list li {
  font-size: 1.45rem;
  color: #556677;
  /* Greyish blue text for list items */
  padding: 0.6rem 0;
  border-bottom: none;
  /* Removed bottom border for cleaner look */
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.course-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #94a3b8;
  /* Small grey dot */
  border-radius: 50%;
  flex-shrink: 0;
}

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

.card--logo {
  justify-content: center;
  align-items: center;
  background: var(--white);
  border: 1px solid #c2e2ff;
  min-height: 200px;
}

.microsoft-logo {
  max-width: 180px;
  height: auto;
}

/* Human Skills List */
.course-track__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.course-track__list .btn {
  align-self: flex-start;
}

.course-list-item {
  padding: 1.6rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid #FFE59D;
  border-left: 2px solid #fec400;
  /* Yellow accent */
}

.course-list-item h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.course-list-item p {
  font-size: 1.6rem;
  color: var(--gray-medium);
}

/* Visuals */
.course-track__visual {
  height: 100%;
}

.course-track__visual img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.bg-light-blue {
  background-color: #E5F9FF;
}

@media (max-width: 1024px) {
  .grid--reverse .course-track__visual {
    order: 2;
  }

  .grid--reverse .course-track__content {
    order: 1;
  }
}

/* Grid pattern background for top section */



@media (min-width: 1024px) {
  .grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.track--deep-tech {
  padding-top: 8rem;
  background-color: #FFFEFA;
  background-image: linear-gradient(rgba(254, 196, 0, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(254, 196, 0, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
}

.track--microsoft {
  background-color: #E5F9FF;
  background-image: linear-gradient(rgba(0, 62, 82, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 62, 82, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
}

.microsoft-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 4rem;
  background-image: url('../images/microsoft_spectrum.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
}

.microsoft-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}


.microsoft-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .microsoft-banner__content {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.microsoft-banner__heading {
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}

.microsoft-banner__description {
  font-size: clamp(1.3rem, 1.6vw, 1.5rem);
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.microsoft-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.4rem;
}

@media (min-width: 1024px) {
  .microsoft-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  padding: 4rem 0 10rem 0;
  background-color: #f4faff;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}

@media (min-width: 1024px) {
  .faq__grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.faq__heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2.4rem;
  line-height: 1.1;
}

.faq__text {
  font-size: 1.8rem;
  color: var(--gray-medium);
  margin-bottom: 4rem;
  max-width: 420px;
  line-height: 1.6;
}

.btn--email-card {
  background: #fef3e7;
  /* Light orange/yellow from screenshot */
  border: 1px solid #fce7cf;
  padding: 1.2rem 2.4rem;
  font-size: clamp(1.2rem, 1.2vw, 1.3rem);
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  border-radius: 4px;
}

.btn--email-card span {
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid #e0e8f0;
}

.faq-item__header {
  padding: 2.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item__header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.faq-item__body {
  padding-bottom: 2.4rem;
  display: none;
  /* Hidden by default */
}

/* For demo purposes, we can show the first one or use a class */
.faq-item--active .faq-item__body {
  display: block;
}

.faq-item--active .faq-item__icon {
  transform: rotate(180deg);
}

.bg-white {
  background-color: #ffffff !important;
}

.faq-item__body p {
  font-size: 1.5rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

/* About Page Hero Adjustments */
.page-about .hero {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10rem;
}

.page-about .hero__overlay {
  display: block;
  background-color: #FFB501;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-about .hero__content {
  margin-left: 0;
  padding-top: 0;
  max-width: 850px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .page-about .hero__content {
    padding: 0 3rem;
  }
}

.page-about .hero__heading {
  color: #3d2c00;
  /* Darker brownish-yellow for better contrast */
  font-weight: 500;
  font-size: clamp(3.6rem, 6vw, 6.4rem);
}

.page-about .hero__subtext {
  color: #4a3a1a;
  font-size: 1.8rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   CONTACT PAGE SPECIFIC
   ========================================== */
.page-contact .hero {
  background-color: #004366;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 35px 35px;
  min-height: auto;
  padding: 18rem 0 10rem;
  align-items: flex-start;
  display: flex;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 8rem;
  }
}

.contact-info h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3.2rem, 4.6vw, 5.8rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.contact-info__subtext {
  font-size: 2.2rem;
  color: #c2e2ff;
  margin-bottom: 8rem;
}

.contact-details {
  margin-top: 4rem;
}

.contact-details__label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.contact-details__tagline {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-details__email {
  font-size: 1.8rem;
  color: #fca311;
  font-weight: 600;
  text-decoration: none;
}

/* Contact Card */
.contact-card {
  background: #fff;
  padding: 4rem;
  border-radius: 1.6rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form__group--full {
  grid-column: span 2;
}

.contact-form label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #475569;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1.2rem 1.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fca311;
  box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn--contact {
  background: #fca311;
  color: #004263;
  border: none;
  padding: 1.4rem 3rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 1rem;
}

.btn--contact:hover {
  background: #e59400;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form__group--full {
    grid-column: span 1;
  }

  .contact-card {
    padding: 2.4rem;
  }
}


.btn--about-hero {
  background: #FFF0C3;
  color: #1a1a1a;
  border-radius: 4px;
  padding: 1.2rem 2.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  border: none;
}

.btn--about-hero:hover {
  background: #fcfcfc;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


/* ==========================================
   ABOUT PAGE SPECIFIC
   ========================================== */
.about-problem-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.about-problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-problem__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
  }
}

.about-problem__heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 4.5vw, 4.8rem);
  font-weight: 500;
  color: #4a2c1f;
  /* Brownish from design */
  line-height: 1.1;
  margin-bottom: 3.5rem;
}

.about-problem__quote-box {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
}

.about-problem__bar {
  width: 4px;
  height: 80px;
  background-color: #000;
  flex-shrink: 0;
}

.about-problem__quote {
  font-size: 2.4rem;
  font-weight: 500;
  color: #1a1a1a;
  max-width: 420px;
  line-height: 1.3;
}

.about-problem__text p {
  font-size: 1.65rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 2.4rem;
}

/* Values Grid */
.about-values-section {
  padding: 6rem 0;
  background-color: #fff;
}

.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}

@media (min-width: 768px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-values__intro {
  display: flex;
  align-items: center;
  padding-right: 2rem;
}

.about-values__intro h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3.6rem, 5vw, 5.2rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.1;
}

.value-card {
  background-color: #fca311;
  /* Yellow */
  background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 3.6rem;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card__number {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: auto;
}

.value-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.4rem;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .value-card {
    padding: 2.4rem;
    min-height: auto;
  }

  .value-card h3 {
    margin-top: 3rem;
  }
}

.value-card p {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.65;
}