*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --teal: #0d9488;
  --teal-light: #ccfbf1;
  --teal-dark: #0f766e;
  --navy: #0f172a;
  --grey-dark: #334155;
  --grey-mid: #64748b;
  --grey-light: #f1f5f9;
  --border: #e2e8f0;
  --white: #ffffff;
  --bg: #eef4f2;
  --bg-alt: #f7faf9;
  --white: #ffffff;
  --teal: #0d6e63;
  --teal-dark: #095249;
  --teal-light: #d0ece8;
  --text: #0d1f2d;
  --text-sub: #4a6572;
  --shadow: 0 2px 16px rgba(13, 110, 99, 0.08);
  --shadow-lg: 0 4px 32px rgba(13, 110, 99, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --ff-head: "Playfair Display", Georgia, serif;
  --ff-body: "DM Sans", sans-serif;
  --transition: 0.24s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--navy);
  background: var(--white);
}
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 200;
  height: 80px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  animation: navIn 0.5s ease both;
}
@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--teal);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
}
.logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.logo-name span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-dark);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}
.nav-actions {
  display: flex;
  gap: 10px;
}
.application-text {
  display: flex;
  gap: 6px;
  align-items: center;
}
.application-text span {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
}
.disabled {
  cursor: not-allowed;
}
/* Hide mobile links on desktop */
.mobile-only {
  display: none;
}

/* Hamburger Icon Styles */
.menu-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--navy);
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}

.hamburger::before {
  top: -8px;
}
.hamburger::after {
  bottom: -8px;
}

/* Animate Hamburger to 'X' when open */
.menu-toggle.active .hamburger {
  background: transparent;
}
.menu-toggle.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

.btn-outline {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn-solid {
  padding: 8px 18px;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-solid:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  min-height: calc(71vh - 66px);
  padding: 40px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 60%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 60% at 80% 40%,
      rgba(13, 148, 136, 0.08),
      transparent
    ),
    radial-gradient(
      ellipse 30% 40% at 10% 80%,
      rgba(13, 148, 136, 0.05),
      transparent
    );
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.6s ease 0.1s both;
}
.linkedIn-link {
  padding-top: 20px;
}
.linkedIn-link a {
  text-decoration: none;
  color: var(--teal);
  font-size: larger;
  font-weight: 700;
}
.linkedIn-link a:hover {
  color: var(--teal-dark);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-eyebrow span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero h1 em {
  color: var(--teal);
  font-style: italic;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-mid);
  max-width: 500px;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cta-primary {
  padding: 13px 28px;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.hero-cta-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.4);
}
.hero-cta-secondary {
  padding: 13px 28px;
  border-radius: 7px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta-secondary:hover {
  background: var(--teal-light);
}

/* ─── PIPELINE infographic ─── */
.hero-right {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.6s ease 0.25s both;
}

.pipeline {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.07);
}
.pipeline-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 28px;
}

.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pipe-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pipe-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pipe-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pipe-connector {
  width: 2px;
  flex: 1;
  min-height: 18px;
  background: linear-gradient(to bottom, var(--teal), rgba(13, 148, 136, 0.15));
  margin: 4px 0;
}
.pipe-step:last-child .pipe-connector {
  display: none;
}

.pipe-text {
  padding-top: 8px;
}
.pipe-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.pipe-desc {
  font-size: 12.5px;
  color: var(--grey-mid);
  margin-top: 2px;
  line-height: 1.5;
}

/* ─── SHARED SECTION STYLES ─── */
.section-wrap {
  padding: 48px 6%;
}
.section-center {
  text-align: center;
}

.s-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.s-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.s-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--grey-mid);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}
.s-sub {
  font-size: 15.5px;
  color: var(--grey-mid);
  line-height: 1.75;
}
.s-sub.centered {
  margin: 0 auto;
}

/* ─── PROBLEM SECTION ─── */
.problem {
  background: var(--grey-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.prob-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.prob-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
}
.prob-num {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 4px;
}
.prob-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.prob-text {
  font-size: 14.5px;
  color: var(--grey-mid);
  line-height: 1.75;
}

.prob-bridge {
  grid-column: 1/-1;
  background: var(--teal);
  color: #fff;
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.bridge-icon {
  font-size: 32px;
}
.bridge-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
.bridge-text strong {
  font-weight: 700;
  font-size: 17px;
}

/* ─── PRINCIPLES ─── */
.principles {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.82)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80")
      center/cover no-repeat;
}

.principles .s-heading {
  color: #fff;
}
.principles .s-sub {
  color: rgba(255, 255, 255, 0.6);
}
.principles .s-tag {
  color: var(--teal-light);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.principle-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition:
    background 0.25s,
    transform 0.2s;
}
.principle-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.pr-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--teal);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding: 8px;
}
.pr-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.program-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program-flex .image {
  width: 400px;
  height: 400px;
}
.pr-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

/* ─── NUMBERS ─── */
.numbers {
  background: var(--grey-light);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.counter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.1);
}
.counter-num {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--grey-dark);
}

/* ─── COMPANIES ─── */
.companies {
  background: var(--white);
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.company-logo {
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--grey-mid);
  letter-spacing: 0.5px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.company-logo:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.1);
}

.testimonials {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testi-track-wrap {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.testi-track-wrap::before,
.testi-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.testi-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.testi-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content; /* This stays wide for the animation */
  animation: scrollLeft 28s linear infinite;
  will-change: transform; /* Forces GPU rendering to prevent layout shifting */
}
.testi-track:hover {
  animation-play-state: paused;
}
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testi-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  align-items: flex-start;
}
.card-big {
  width: 700px;
}
.testi-quote {
  font-size: 13.5px;
  color: var(--grey-dark);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-quote::before {
  content: '"';
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  color: var(--teal);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}
.testi-role {
  font-size: 12px;
  color: var(--grey-mid);
  text-align: left;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 56px 6% 32px;
  border-top: 3px solid var(--teal);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}
.footer-brand div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-brand .logo-name {
  color: #fff;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-btn:hover {
  background: var(--teal);
  color: #fff;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

/* ─── PAGE BANNER ─── */
.page-banner {
  padding: 52px 6% 44px;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 60%, #eff6ff 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.6s ease both;
  margin-top: 80px;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 70% at 90% 50%,
      rgba(13, 148, 136, 0.07),
      transparent
    ),
    radial-gradient(
      ellipse 30% 40% at 5% 80%,
      rgba(13, 148, 136, 0.04),
      transparent
    );
  pointer-events: none;
}
.banner-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 0.6s ease both;
}
.banner-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 12px;
}
.banner-text h1 em {
  color: var(--teal);
  font-style: italic;
}
.banner-text p {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.75;
  max-width: 520px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--grey-mid);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb span {
  color: var(--border);
}

.banner-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.bstat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
  min-width: 100px;
}
.bstat-num {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  color: var(--teal);
  line-height: 1;
}
.bstat-label {
  font-size: 11.5px;
  color: var(--grey-mid);
  margin-top: 4px;
  font-weight: 500;
}

/* ─── MAIN LAYOUT: FULL WIDTH ─── */
.directory-wrap {
  display: block;
  background: var(--grey-light);
}

/* ─── TABS ─── */
.dir-tabs-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
  display: flex;
  align-items: center;
  gap: 0;
}
.dir-tab {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-mid);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.dir-tab:hover {
  color: var(--navy);
}
.dir-tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.dir-tab-count {
  background: var(--grey-light);
  color: var(--grey-mid);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  transition:
    background 0.2s,
    color 0.2s;
}
.dir-tab.active .dir-tab-count {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* ─── TOP FILTER BAR ─── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 6%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-bar-inner {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-bar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 6px;
}
.filter-group-inline {
  display: flex;
  flex-direction: column;
}

/* Chip-style multi-select options */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-chip {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey-dark);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  background: var(--white);
}
.filter-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.filter-chip.selected {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* Skill tags (same chip style) */
.skill-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.skill-filter-tag {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey-dark);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  background: var(--white);
}
.skill-filter-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.skill-filter-tag.selected {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.filter-divider-v {
  width: 1px;
  background: var(--border);
  height: 48px;
  flex-shrink: 0;
}

.filter-clear-btn {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey-mid);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  align-self: flex-end;
}
.filter-clear-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
}

/* ─── TALENT SECTION ─── */
.talent-section {
  padding: 24px 6%;
  background: var(--grey-light);
}

.talent-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.talent-count {
  font-size: 13px;
  color: var(--grey-mid);
  font-weight: 500;
}
.talent-count strong {
  color: var(--navy);
}

.view-toggle {
  display: flex;
  gap: 4px;
}
.view-btn {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.view-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Mobile filter toggle — hidden on desktop */
.filter-toggle-btn {
  display: none;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

/* ─── CANDIDATE CARD ─── */
.candidate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.4s ease both;
}
.candidate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.candidate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.3);
}
.candidate-card:hover::before {
  transform: scaleX(1);
}

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  flex-shrink: 0;
}

.card-info {
  flex: 1;
  min-width: 0;
}
.card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-degree {
  font-size: 12px;
  color: var(--grey-mid);
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.status-trainee {
  background: #eff6ff;
  color: #3b82f6;
}
.status-alumni {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.card-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--grey-mid);
}
.card-meta-icon {
  font-size: 13px;
}

.card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.card-skill-tag {
  padding: 3px 10px;
  border-radius: 5px;
  background: var(--grey-light);
  border: 1px solid var(--border);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--grey-dark);
}

.card-cta {
  width: 100%;
  padding: 9px;
  border: 1.5px solid var(--teal);
  border-radius: 7px;
  background: transparent;
  color: var(--teal);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.card-cta:hover {
  background: var(--teal);
  color: #fff;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--grey-mid);
}
.no-results-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.no-results-text {
  font-size: 15px;
  font-weight: 500;
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
  border-radius: 20px 20px 0 0;
}
.modal-avatar {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}
.modal-title-block {
  flex: 1;
}
.text-decoration-none {
  text-decoration: none;
}
.modal-name {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}
.modal-meta {
  font-size: 13px;
  color: var(--grey-mid);
}
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
  color: var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    color 0.15s;
  flex-shrink: 0;
}
.modal-close:hover {
  background: var(--grey-light);
  color: var(--navy);
}

.modal-body {
  padding: 24px 28px 28px;
}

.modal-section {
  margin-bottom: 24px;
}
.modal-section:last-child {
  margin-bottom: 0;
}
.modal-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-info-item {
  background: var(--grey-light);
  border-radius: 10px;
  padding: 12px 14px;
}
.modal-info-label {
  font-size: 11px;
  color: var(--grey-mid);
  font-weight: 500;
  margin-bottom: 3px;
}
.modal-info-value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}

.modal-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.modal-skill {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--teal-light);
  border: 1px solid rgba(13, 148, 136, 0.2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal-dark);
}

.modal-summary {
  font-size: 14px;
  color: var(--grey-dark);
  line-height: 1.75;
  background: var(--grey-light);
  border-radius: 10px;
  padding: 16px;
}

.modal-placement {
  background: var(--teal-light);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 12px;
  padding: 16px;
}
.modal-placement-label {
  font-size: 11px;
  color: var(--teal-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.modal-placement-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.modal-placement-role {
  font-size: 13px;
  color: var(--grey-mid);
  margin-top: 2px;
}

.modal-cta {
  width: 100%;
  padding: 13px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.modal-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--navy);
  padding: 60px 6%;
  text-align: center;
  border-top: 3px solid var(--teal);
}
.cta-strip h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  margin-bottom: 12px;
}
.cta-strip p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}
.cta-strip a {
  padding: 13px 32px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(13, 148, 136, 0.4);
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}
.cta-strip a:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* TABS */
.tabs-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
  display: flex;
}
.tab-btn {
  padding: 15px 26px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-mid);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.tab-btn:hover {
  color: var(--navy);
}
.tab-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.tab-count {
  background: var(--grey-light);
  color: var(--grey-mid);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.tab-btn.active .tab-count {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* FILTER BAR */

.dd-wrap {
  position: relative;
  flex-shrink: 0;
}
.dd-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-dark);
  cursor: pointer;
  white-space: nowrap;
  min-width: 120px;
  justify-content: space-between;
  transition:
    border-color 0.15s,
    color 0.15s,
    background 0.15s;
}
.dd-trigger:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.dd-trigger.has-val {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal-dark);
}
.dd-arrow {
  font-size: 8px;
  transition: transform 0.2s;
  margin-left: 4px;
}
.dd-wrap.open .dd-arrow {
  transform: rotate(180deg);
}
.dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 500;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.13);
  min-width: 175px;
  display: none;
}
.dd-wrap.open .dd-menu {
  display: block;
}
.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-dark);
  cursor: pointer;
  transition: background 0.12s;
  user-select: none;
}
.dd-item:hover {
  background: var(--grey-light);
}
.dd-item.sel {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 700;
}
.dd-chk {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: transparent;
  transition: all 0.12s;
}
.dd-item.sel .dd-chk {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.fsep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}
.clear-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey-mid);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.clear-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
}

/* CARD */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.3);
}
.card:hover::before {
  transform: scaleX(1);
}
.card-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 12px;
}
.card-av {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  color: #fff;
}

.card-sub {
  font-size: 11.5px;
  color: var(--grey-mid);
}
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 11px;
}
.b-trainee {
  background: #eff6ff;
  color: #3b82f6;
}
.b-placed {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.card-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.card-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--grey-mid);
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.card-tag {
  padding: 3px 9px;
  border-radius: 5px;
  background: var(--grey-light);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-dark);
}
.card-btn {
  width: 100%;
  padding: 9px;
  border: 1.5px solid var(--teal);
  border-radius: 7px;
  background: transparent;
  color: var(--teal);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.card-btn:hover {
  background: var(--teal);
  color: #fff;
}
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--grey-mid);
}
.no-results-icon {
  font-size: 38px;
  margin-bottom: 10px;
}
.no-results-msg {
  font-size: 15px;
  font-weight: 500;
}

/* MODAL */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.modal-bg.show {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.22s;
}
.modal-bg.show .modal-box {
  transform: translateY(0) scale(1);
}
.modal-hd {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
  border-radius: 20px 20px 0 0;
}
.modal-av {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: #fff;
}
.modal-title {
  flex: 1;
}

.modal-bd {
  padding: 20px 24px 24px;
}
.modal-sec {
  margin-bottom: 20px;
}
.modal-sec:last-child {
  margin-bottom: 0;
}
.modal-sec-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.modal-field {
  background: var(--grey-light);
  border-radius: 9px;
  padding: 11px 13px;
}
.modal-field.full {
  grid-column: 1/-1;
}
.modal-flabel {
  font-size: 10.5px;
  color: var(--grey-mid);
  font-weight: 500;
  margin-bottom: 2px;
}
.modal-fval {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.modal-pl-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.modal-pl-company {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.modal-pl-role {
  font-size: 12.5px;
  color: var(--grey-mid);
  margin-top: 2px;
}
.modal-cta-btn {
  width: 100%;
  padding: 13px;
  margin-top: 18px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.modal-cta-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.page-banner h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.page-banner h1 em {
  color: var(--teal);
  font-style: italic;
}

.page-banner p {
  font-size: 15.5px;
  color: var(--grey-mid);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 28px;
}
.banner-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey-dark);
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

/* ─── SECTION 2: PROGRAM TRACKS ─── */
.tracks {
  background: var(--white);
}

.tracks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.track-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.1);
}

.track-card.active {
  border-color: var(--teal);
}
.track-card.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
}
.track-card.upcoming {
  background: var(--grey-light);
}
.track-card.upcoming::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border);
}

.track-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.track-badge.badge-active {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.track-badge.badge-upcoming {
  background: var(--border);
  color: var(--grey-mid);
}

.track-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--teal-light);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.track-card.upcoming .track-icon {
  background: var(--border);
  color: var(--grey-mid);
}

.track-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}
.track-desc {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.track-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--grey-light);
  border: 1px solid var(--border);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--grey-dark);
}
.track-card.active .tag {
  background: var(--teal-light);
  border-color: rgba(13, 148, 136, 0.2);
  color: var(--teal-dark);
}

/* ─── SECTION 3: VLSI OVERVIEW ─── */
.overview {
  background: var(--grey-light);
}

.overview-header {
  margin-bottom: 40px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.09);
  border-color: rgba(13, 148, 136, 0.35);
}

.module-num {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.module-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* Differentiator module */
.module-card.differentiator {
  border-color: var(--teal);
  background: linear-gradient(135deg, #f0fdfa, #fff);
}
.module-card.differentiator::after {
  content: "Differentiator";
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--teal);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}
.module-card.dark {
  background-color: var(--teal-dark);
  color: var(--white);
  text-align: center;
}
.module-card.dark .flex {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.module-card.dark .flex p {
  font-size: 20px;
}
.module-card.dark .flex img {
  margin-top: 10px;
}
.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.module-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-dark);
  line-height: 1.5;
}
.module-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ─── SECTION 4: TRAINING APPROACH ─── */
.approach {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 60% at 80% 50%,
      rgba(13, 148, 136, 0.12),
      transparent
    ),
    radial-gradient(
      ellipse 30% 40% at 10% 20%,
      rgba(13, 148, 136, 0.07),
      transparent
    );
  pointer-events: none;
}

.approach .s-heading {
  color: #fff;
}
.approach .s-tag {
  color: var(--teal-light);
}
.approach .s-subheading {
  color: rgba(255, 255, 255, 0.55);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 44px;
  position: relative;
  z-index: 2;
}

/* Flow steps */
.flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}
.flow-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(13, 148, 136, 0.4);
  color: var(--teal-light);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: linear-gradient(
    to bottom,
    rgba(13, 148, 136, 0.5),
    rgba(13, 148, 136, 0.1)
  );
  margin: 4px 0;
}
.flow-step:last-child .flow-line {
  display: none;
}
.flow-text {
  padding-top: 10px;
}
.flow-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.flow-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.approach-text-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 36px;
}
.approach-text-block p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 28px;
}
.approach-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 10px;
  padding: 13px 16px;
}
.pillar-icon {
  font-size: 18px;
}
.pillar-label {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* ─── SECTION 5: OUTCOMES ─── */
.outcomes {
  background: var(--white);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.outcome-card {
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.outcome-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.1);
}
.outcome-icon {
  width: 50px;
  height: 50px;
  border-radius: 7px;
  background: var(--teal-dark);
  color: var(--teal-light);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.outcome-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

/* ─── CREDIBILITY STRIP ─── */
.cred-strip {
  background: var(--navy);
  padding: 11px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}
.cred-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp 0.5s ease 0.2s both;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
.cred-num {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--teal-light);
  font-weight: 400;
}
.cred-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}
.banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.banner-cta-primary {
  padding: 13px 28px;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
  transition:
    background 0.2s,
    transform 0.15s;
}
.banner-cta-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
.banner-cta-secondary {
  padding: 13px 28px;
  border-radius: 7px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.banner-cta-secondary:hover {
  background: var(--teal-light);
}

/* ─── SECTION 1: SKILLS ─── */
.skills {
  background: var(--grey-light);
}

.skills-supporting {
  font-size: 16px;
  color: var(--grey-mid);
  font-style: italic;
  margin-top: 28px;
  text-align: center;
}

/* ── Innovative Skill Clusters: Tab-Panel style ── */
.skill-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.skill-tabs {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.skill-tab {
  padding: 16px 22px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
  position: relative;
}
.skill-tab:hover {
  background: rgba(255, 255, 255, 0.05);
}
.skill-tab.active {
  background: rgba(13, 148, 136, 0.15);
  border-left-color: var(--teal);
}
.skill-tab-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  line-height: 1.4;
}
.skill-tab.active .skill-tab-label {
  color: var(--teal-light);
}
.skill-tab-icon {
  font-size: 16px;
  margin-bottom: 4px;
  display: block;
}
.diff-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(13, 148, 136, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

.skill-panels {
  padding: 36px 40px;
  position: relative;
  min-height: 280px;
}

.skill-panel {
  display: none;
  animation: panelIn 0.25s ease;
}
.skill-panel.active {
  display: block;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.panel-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.panel-sub {
  font-size: 13px;
  color: var(--grey-mid);
  margin-bottom: 22px;
}

.skills-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skill-bubble {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--grey-dark);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
  cursor: default;
}
.skill-bubble:hover {
  background: var(--teal-light);
  border-color: rgba(13, 148, 136, 0.35);
  color: var(--teal-dark);
  transform: translateY(-2px);
}
.skill-bubble::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* differentiator panel override */
.diff-panel .skill-bubble {
  background: #f0fdfa;
  border-color: rgba(13, 148, 136, 0.25);
  color: var(--teal-dark);
}
.diff-panel .skill-bubble::before {
  background: var(--teal-dark);
}
.diff-panel .skill-bubble:hover {
  background: var(--teal-light);
}

/* ─── SECTION 2: VALUE PROPOSITION ─── */
.value {
  background: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-top: 44px;
}

.value-left p {
  font-size: 15.5px;
  color: var(--grey-mid);
  line-height: 1.85;
  margin-bottom: 28px;
}
.value-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--grey-light);
  border: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--grey-dark);
  line-height: 1.5;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.value-point:hover {
  border-color: rgba(13, 148, 136, 0.3);
  background: #f0fdfa;
}
.vp-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.value-point.highlight {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 500;
}
.value-point.highlight .vp-check {
  background: var(--teal-dark);
}

/* Dual relevance cards */
.value-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.relevance-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 4px;
}
.relevance-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.relevance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}
.relevance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.4);
}

.rc-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.rc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.rc-desc {
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.65;
}

.value-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-primary {
  padding: 13px 28px;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(13, 148, 136, 0.3);
  transition:
    background 0.2s,
    transform 0.15s;
}
.cta-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
.cta-secondary {
  padding: 13px 28px;
  border-radius: 7px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-secondary:hover {
  background: var(--teal-light);
}

/* ─── SECTION 3: ENGAGEMENT MODEL ─── */
.engagement {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.engagement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 85% 50%,
      rgba(13, 148, 136, 0.1),
      transparent
    ),
    radial-gradient(
      ellipse 30% 40% at 10% 20%,
      rgba(13, 148, 136, 0.06),
      transparent
    );
  pointer-events: none;
}

.engagement .s-heading {
  color: #fff;
}
.engagement .s-tag {
  color: var(--teal-light);
}
.engagement .s-subheading {
  color: rgba(255, 255, 255, 0.5);
}

.engage-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 52px;
  position: relative;
  z-index: 2;
}

.engage-step {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  transition: background 0.2s;
}
.engage-step:last-child {
  border-right: none;
}

.step-num {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(13, 148, 136, 0.18);
  border: 1px solid rgba(13, 148, 136, 0.35);
  color: var(--teal-light);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.step-arrow {
  position: absolute;
  right: -44px;
  top: 50%;
  z-index: 3;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.2);
}
.engage-step:last-child .step-arrow {
  display: none;
}

/* ─── FLOATING ACTION BUTTON ─── */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
}
.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.45);
  transition:
    background 0.2s,
    transform 0.2s;
}
.fab-btn:hover {
  background: var(--teal-dark);
  transform: scale(1.08);
}

.fab-menu {
  position: absolute;
  bottom: 64px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.fab-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}
.fab-option:hover {
  background: var(--teal-light);
  border-color: rgba(13, 148, 136, 0.3);
  color: var(--teal-dark);
  transform: translateX(-3px);
}
.fab-option-icon {
  font-size: 16px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto;
}

.banner-inner {
  flex: 1.2; /* Gives more space to the text */
}

.banner-stats {
  flex: 0.8;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 Grid for the stats */
  gap: 30px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal); /* Example Professional Blue */
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}

.stat-label small {
  display: block;
  font-size: 0.75rem;
  color: #888;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  body {
    overflow-x: hidden;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .principles-grid {
    grid-template-columns: 1fr;
  }
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .filter-bar-inner {
    gap: 12px;
  }
  .filter-divider-v {
    display: none;
  }
  .dir-tabs-wrap {
    padding: 0 4%;
  }
  .talent-section {
    padding: 20px 4%;
  }
  .filter-bar {
    padding: 14px 4%;
    overflow-x: auto;
  }
  .tracks-grid {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }
  .approach-inner {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .engage-steps {
    grid-template-columns: 1fr;
  }
  .engage-step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .engage-step:last-child {
    border-bottom: none;
  }
  .step-arrow {
    display: none;
  }
  .skill-layout {
    grid-template-columns: 1fr;
  }
  .skill-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding: 0;
  }
  .skill-tab {
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 14px 18px;
  }
  .skill-tab.active {
    border-left: none;
    border-bottom-color: var(--teal);
  }
  /* 1. Hide the desktop buttons */
  .nav-actions {
    display: none;
  }

  /* 2. Show the hamburger button */
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001; /* Above the menu drawer */
  }

  /* 3. The Sidebar Menu Drawer */
  .nav-links {
    display: flex !important; /* Force flex instead of 'none' */
    position: fixed;
    top: 0;
    right: -100%; /* Fully off-screen by default */
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 0 20px 0; /* Space for the logo/top area */
    gap: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-left: 1px solid var(--border);
    visibility: hidden; /* Hide from the browser when closed */
    pointer-events: none; /* Prevent clicks while closed */
  }

  /* 4. When the '.active' class is added via JS */
  .nav-links.active {
    visibility: visible; /* Show when open */
    pointer-events: all;
    right: 0;
  }

  /* 5. Mobile Link Styles */
  .nav-links li {
    width: 100%;
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 18px 10%;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--grey-light);
    text-decoration: none;
  }
  .mobile-only {
    display: block;
  }
  .banner-container {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  html,
  body {
    overflow-x: hidden;
  }
  .counters-grid {
    grid-template-columns: 1fr;
  }
  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-logo img {
    width: 150px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .talent-grid {
    grid-template-columns: 1fr;
  }
  .banner-stats {
    gap: 12px;
  }
  .modal-info-grid {
    grid-template-columns: 1fr;
  }
  .dir-tab {
    padding: 14px 16px;
    font-size: 13px;
  }
  .cred-inner {
    gap: 16px;
  }
  .cred-sep {
    display: none;
  }
  .testi-card {
    width: 260px; /* Reduced from 320px */
    padding: 20px;
  }

  /* Optional: Speed up animation on mobile for shorter cards */
  .testi-track {
    animation-duration: 22s;
  }

  /* Reduce the gradient fade so it doesn't overlap text on narrow screens */
  .testi-track-wrap::before,
  .testi-track-wrap::after {
    width: 30px;
  }

  /* Ensure the animation remains smooth */
  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }
    to {
      /* Ensure your HTML has enough duplicated cards to reach 50% */
      transform: translateX(-50%);
    }
  }
  .program-flex {
    flex-direction: column;
  }
  .program-flex .image {
    width: 50%;
  }
  .banner-stats {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner-top {
    justify-content: center;
  }
}

/* Responsive for Mobile */
@media (max-width: 992px) {
}
.emp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 45, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.emp-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.emp-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(13, 31, 45, 0.22);
  width: 100%;
  max-width: 500px;
  padding: 40px 36px 36px;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.emp-modal-overlay.open .emp-modal {
  transform: translateY(0) scale(1);
}

.emp-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-sub);
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.emp-modal-close:hover {
  color: var(--text);
}

.emp-modal-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.emp-modal-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
}

.emp-modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-sub);
  font-weight: 300;
  margin-bottom: 26px;
  line-height: 1.6;
}

/* Intent selector pills */
.intent-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.intent-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.intent-pill {
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-sub);
  background: var(--bg);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.intent-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.intent-pill.selected {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  font-weight: 600;
}

.emp-form-group {
  margin-bottom: 16px;
}
.emp-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.emp-form-group input,
.emp-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  resize: vertical;
}
.emp-form-group input:focus,
.emp-form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 110, 99, 0.1);
  background: var(--white);
}
.emp-form-group input.error,
.emp-form-group textarea.error {
  border-color: #d9534f;
}
.emp-form-error {
  font-size: 0.78rem;
  color: #d9534f;
  margin-top: 5px;
  display: none;
}
.emp-form-group.has-error .emp-form-error {
  display: block;
}

.emp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.emp-submit {
  width: 100%;
  padding: 13px;
  margin-top: 8px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.emp-submit:hover:not(:disabled) {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13, 110, 99, 0.28);
}
.emp-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.emp-whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-sub);
  font-weight: 400;
  text-align: center;
}
.emp-whatsapp-link a {
  color: #25a244;
  font-weight: 600;
  transition: color var(--transition);
}
.emp-whatsapp-link a:hover {
  color: #1a7a33;
}

/* Employer success state */
.emp-modal-success {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
}
.emp-success-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.emp-modal-success h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.emp-modal-success p {
  font-size: 0.9rem;
  color: var(--text-sub);
  font-weight: 300;
  line-height: 1.65;
}
.emp-modal-success .teal {
  color: var(--teal);
  font-weight: 600;
}

.emp-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
/* ══════════════════════════════════════
       WAITLIST MODAL
    ══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 45, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(13, 31, 45, 0.22);
  width: 100%;
  max-width: 460px;
  padding: 40px 36px 36px;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-sub);
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.modal-close:hover {
  color: var(--text);
}

.modal-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.modal-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-sub);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-batch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-group input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 110, 99, 0.1);
  background: var(--white);
}

.form-group input.error {
  border-color: #d9534f;
}
.form-error-msg {
  font-size: 0.78rem;
  color: #d9534f;
  margin-top: 5px;
  display: none;
}
.form-group.has-error .form-error-msg {
  display: block;
}

.modal-submit {
  width: 100%;
  padding: 13px;
  margin-top: 8px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.modal-submit:hover:not(:disabled) {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13, 110, 99, 0.28);
}
.modal-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.modal-privacy {
  font-size: 0.75rem;
  color: var(--text-sub);
  text-align: center;
  margin-top: 14px;
  font-weight: 300;
}

/* Success state */
.modal-success {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.modal-success h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.modal-success p {
  font-size: 0.9rem;
  color: var(--text-sub);
  font-weight: 300;
  line-height: 1.65;
}

.modal-success .teal {
  color: var(--teal);
  font-weight: 600;
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
