:root {
  --yellow: #f5c800;
  --black: #000000;
  --white: #ffffff;
  --gray: #f2f2f2;
  --mid-gray: #888;
  --font-display: "Bebas Neue", sans-serif;
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  border-bottom: 3px solid var(--yellow);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-badge {
  background: var(--black);
  border: 2px solid var(--yellow);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 4px 10px;
  text-transform: uppercase;
}
.nav-badge span {
  color: var(--yellow);
}
.nav-roadshow {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 3px;
  padding: 4px 14px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
  transition:
    opacity 0.2s,
    color 0.2s;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--yellow);
}
.nav-cta {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  transition: transform 0.2s;
}
.nav-cta:hover {
  transform: scale(1.04);
}

/* ─── HERO ─── */
.hero {
  background: var(--black);
  min-height: 100vh;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, transparent 0%, #000000 100%);
  pointer-events: none;
}
/* dashed road lines */
.road-dashes {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 8px;
  display: flex;
  gap: 0;
  overflow: hidden;
  z-index: 2;
}
.road-dash {
  flex-shrink: 0;
  height: 8px;
  background: var(--yellow);
  margin-right: 24px;
  animation: dashMove 3s linear infinite;
}
@keyframes dashMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-120px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px 60px;
  max-width: 48%;
}

/* ─── INDIA MAP ─── */
.hero-map-wrap {
  display: block;
  position: absolute;
  right: 0;
  top: 4;
  width: 56vw;
  pointer-events: none;
  margin-left: 40%;
}
.map-base {
  display: block;
  width: 100%;
  height: auto;
}
.map-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  filter: blur(6px) brightness(1.2) contrast(1.2);
  mix-blend-mode: screen;
  animation: cityGlow 0.8s ease-in-out infinite alternate;
}
@keyframes cityGlow {
  0% {
    opacity: 0.05;
    filter: blur(3px) brightness(1) contrast(1.1);
  }
  100% {
    opacity: 0.45;
    filter: blur(8px) brightness(1.4) contrast(1.3);
  }
}
.india-map-svg {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 64px);
  object-fit: contain;
}
/* Glow pulse on the map outline */
.india-outline {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 6px #f5c800aa) drop-shadow(0 0 18px #f5c80055);
  animation: mapPulse 3s ease-in-out infinite;
}
.india-fill {
  fill: rgba(245, 200, 0, 0.04);
}
@keyframes mapPulse {
  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 6px #f5c800aa) drop-shadow(0 0 18px #f5c80055);
  }
  50% {
    opacity: 0.75;
    filter: drop-shadow(0 0 12px #f5c800cc) drop-shadow(0 0 32px #f5c80088);
  }
}
/* City dots on map */
.city-dot {
  fill: var(--yellow);
  animation: dotPulse 2s ease-in-out infinite;
}
.city-dot-done {
  fill: #22a35a;
  animation: dotPulse 2s ease-in-out infinite;
}
.city-dot-ring {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.5;
  animation: ringExpand 2.5s ease-out infinite;
  transform-origin: center;
}
.city-dot-ring-done {
  fill: none;
  stroke: #22a35a;
  stroke-width: 1.5;
  animation: ringExpand 2.5s ease-out infinite;
  transform-origin: center;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes ringExpand {
  0% {
    r: 5;
    opacity: 0.8;
  }
  100% {
    r: 18;
    opacity: 0;
  }
}
/* Travelling car dot along route */
.travel-dot {
  fill: var(--yellow);
  filter: drop-shadow(0 0 4px #f5c800);
}
/* Route path */
.route-path {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.5;
  stroke-dasharray: 6 5;
  opacity: 0.35;
  animation: routeDash 4s linear infinite;
}
.route-path-done {
  fill: none;
  stroke: #22a35a;
  stroke-width: 2;
  opacity: 0.5;
}
@keyframes routeDash {
  to {
    stroke-dashoffset: -44;
  }
}
/* City label tooltips */
.city-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  fill: var(--yellow);
  opacity: 0.85;
}
.city-label-done {
  fill: #22a35a;
}
/* Scanning sweep line */
.scan-line {
  fill: none;
  stroke: rgba(245, 200, 0, 0.15);
  stroke-width: 80;
  animation: scanDown 5s ease-in-out infinite;
}
@keyframes scanDown {
  0% {
    transform: translateY(-100%);
    opacity: 0.3;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(200%);
    opacity: 0;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow-badge {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 12px;
}
.eyebrow-line {
  width: 40px;
  height: 3px;
  background: var(--yellow);
}
.eyebrow-text {
  color: var(--mid-gray);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 90px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 12px;
  white-space: nowrap;
}
.hero-title .yellow {
  color: var(--yellow);
}
.hero-subtitle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--white);
  opacity: 0.6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-desc {
  white-space: wrap;
  margin-bottom: 40px;
  max-width: 500px;
  position: relative;
  display: inline-block;
  animation: marqueeText 18s linear infinite;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 200, 0, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background: var(--yellow);
  display: flex;
  padding: 0 48px;
}
.hero-stat {
  flex: 1;
  padding: 28px 0;
  border-right: 2px solid rgba(0, 0, 0, 0.15);
  text-align: center;
}
.hero-stat:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 54px;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 4px;
}

/* ─── SECTION DEFAULTS ─── */
section {
  padding: 96px 48px;
}
.section-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  margin-bottom: 24px;
}
.section-title .yellow {
  color: var(--yellow);
}
.section-title .outline {
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
}
.section-body {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  max-width: 640px;
}

/* ─── MISSION ─── */
.mission {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px; /* Space between text and slider */
}
.mission-visual {
  position: relative;
}
.mission-img-wrap {
  background: var(--gray);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.mission-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--yellow);
  letter-spacing: 4px;
}
/* Simulated event photo look */
.mission-img-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.05) 2px,
    rgba(0, 0, 0, 0.05) 4px
  );
}
.mission-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  padding: 20px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--black);
  text-transform: uppercase;
  box-shadow: 8px 8px 0 var(--black);
}
.mission-badge-float strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

/* Slider Container */
.mission-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden; /* Hides the images that are outside the container */
  border-radius: 12px; /* Optional: adds rounded corners to the slider */
  aspect-ratio: 4 / 3; /* Keeps a consistent shape for the images */
  background: var(--black, #000);
}

/* The track that moves horizontally */
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out; /* This makes it slide smoothly */
}

/* Individual Slide */
.slide {
  min-width: 100%; /* Forces each slide to take up the full container width */
  height: 100%;
}

/* Images inside the slides */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the box without squishing */
  display: block;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 991px) {
  .mission {
    grid-template-columns: 1fr; /* Stacks to a single column on smaller screens */
  }
}

/* ─── ECOSYSTEM ─── */
#ecosystem {
  background: var(--black);
}
#ecosystem .section-title {
  color: var(--white);
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  border: 2px solid var(--yellow);
}
.eco-card {
  background: #111;
  padding: 40px 40px 44px;
  position: relative;
  border-bottom: 2px solid #222;
}
.eco-card:nth-child(odd) {
  border-right: 2px solid #222;
}
.eco-tag {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 20px;
}
.eco-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.eco-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.eco-icon {
  position: absolute;
  top: 36px;
  right: 36px;
  font-size: 36px;
  opacity: 0.25;
}

/* partner logos in eco */
.eco-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.eco-logo-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 5px 14px;
}

/* ─── MAP / CITIES ───  */
#cities {
  background: var(--gray);
}
.cities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.city-card {
  background: var(--white);
  padding: 28px 24px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
  border-bottom: 4px solid transparent;
}
.city-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--yellow);
  transition: width 0.3s;
}
.city-card:hover {
  background: var(--black);
  opacity: 90%;
  background-image: var(--city-img);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-4px);
}
.city-card:hover::before {
  width: 100%;
}

.city-card:hover .city-status {
  color: rgba(255, 255, 255, 0.5);
}
.city-card:hover .city-num {
  color: rgba(255, 255, 255, 0.1);
}
.city-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}
.city-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.25s;
}
.city-status {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 8px;
  transition: color 0.25s;
}

.city-done .city-status {
  color: #22a35a;
}
.city-done::after {
  content: "✓";
  position: absolute;
  top: 20px;
  right: 20px;
  color: #22a35a;
  font-size: 18px;
  font-weight: bold;
}

/* ─── HOW IT WORKS ─── */
#how {
  background: var(--white);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 2px solid var(--black);
}
.step-card {
  padding: 44px 36px;
  border-right: 2px solid var(--black);
  position: relative;
}
.step-card:last-child {
  border-right: none;
}
.step-number {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: -16px;
  display: block;
}
.step-card h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.step-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
}

/* screening pills */
.screen-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.screen-pill {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* ─── ENABLERS ─── */
#enablers {
  background: var(--yellow);
}
#enablers .section-title {
  color: var(--black);
}
.enablers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 56px;
}
.enabler-card {
  background: var(--black);
  padding: 36px 36px 40px;
  position: relative;
}
.enabler-card h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.enabler-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.en-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.tab-btn {
  background: transparent;
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 2px solid black;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.tab-btn.active {
  background-color: var(--bg-black);
  color: var(--theme-yellow);
}

/* --- TAB CONTENT PANELS --- */
.tab-panel {
  display: none; /* Hide all panels by default */
  animation: fadeIn 0.4s ease-in-out;
}

.tab-panel.active {
  display: block; /* Show only the active panel */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── PARTNERS ─── */
#partners {
  background: var(--white);
  overflow: hidden;
}

.partners-marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  display: flex;
}

.partners-marquee {
  display: flex;
  width: max-content; /* Critical: allows the track to extend beyond screen width */
  animation: marquee 25s linear infinite;
}

/* Individual logo container */
.partner-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevents logos from squishing */
  width: 200px; /* Fixed width for consistency */
  height: 80px; /* Fixed height for consistency */
  padding: 0 30px;
}

/* The actual images */
.partner-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps logos from stretching */
  /* Optional: grayscale for a professional brand look */
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo-badge img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Infinite Scroll Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Since we have two identical sets, moving -50% creates a perfect loop */
    transform: translateX(-50%);
  }
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .partner-logo-badge {
    width: 150px;
    height: 60px;
    padding: 0 15px;
  }
}

/* ─── BRANDS ─── */
#brands {
  background: var(--black);
  padding-bottom: 80px;
  margin: 0 auto;
}
#brands .section-title {
  color: var(--white);
}
.brands-grid {
  display: grid;
  /* Desktop: Exactly 6 columns */
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.brand-logo-cell {
  aspect-ratio: 3 / 2; /* Maintains a consistent rectangular shape */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #000; /* Or your preferred background */
  border-radius: 4px;
  overflow: hidden;
}

.brand-logo-cell:hover {
  background: #f5c800b1;
  transform: scale(1.04);
  z-index: 2;
  position: relative;
}

/* The Image Control */
.brand-logo-cell img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  transition: filter 0.2s;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet: 4 columns */
@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile (Large): 3 columns */
@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

/* Mobile (Small): 2 columns */
@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .brand-logo-cell {
    padding: 10px;
  }
}
/* ─── TESTIMONIALS ─── */
/* Container for the entire card, which is centered on the page */
.profile-card {
  position: relative;
  width: 320px; /* Adjust width as needed */
  padding: 20px; /* Space around the entire component */
  background-color: transparent; /* Card is on the page background */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Items align to the left */
}

/* The yellow rectangle positioned behind the portrait and text */
.yellow-bg {
  position: absolute;
  top: 111px; /* Position down from the top of the portrait */
  left: 20px; /* Position to the left edge of the card */
  width: 280px; /* Adjust to fit composition */
  height: 140px; /* Adjust to fit composition */
  background-color: #fedd00; /* Solid yellow color */
  z-index: 1; /* Place behind other elements */
}

/* Container for the portrait, to control its size and positioning */
.image-container {
  position: relative;
  width: 100%; /* Spans the full width of the card padding */
  display: flex;
  justify-content: center; /* Center portrait in the container */
  z-index: 2; /* Place portrait in front of the yellow block */
}

/* Style the actual black and white portrait image */
.portrait {
  width: 240px; /* Set specific width for portrait */
  height: auto;
  filter: grayscale(100%); /* Force image to black and white */
}

/* Name heading text on the yellow block */
.name {
  /* padding: 10px 0 10px 20px; Inset from the yellow edge */
  font-size: 24px;
  font-weight: 700; /* Bold for name */
  text-transform: uppercase; /* Match the caps style */
  color: #000; /* Deep black text */
  position: relative;
  z-index: 3; /* Ensure text is in front */
  align-self: flex-start; /* Re-confirm left alignment */
}

/* Container for the title and company details below the yellow block */
.details {
  /* padding-left: 20px; Align with name and company */
  font-size: 16px;
  font-weight: 400; /* Regular weight for title */
  color: #333; /* Dark gray for subtle distinction */
  text-align: left;
  position: relative;
  z-index: 3; /* Ensure text is in front */
}

/* Style the bolder company name within the details text */
.company {
  font-weight: 700; /* Bold specifically for the company name */
  color: #000; /* Re-affirm black text */
}

#testimonials {
  background: var(--gray);
}
.testi-grid {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap; /* Allows items to wrap to the next line on small screens */
  gap: 8px;
  margin-top: 56px;
}

.testi-card {
  /* calc(50% - 12px) creates 2 columns and perfectly accounts for the 24px gap */
  width: calc(25% - 18px);
  background: var(--white);
  padding: 36px;
  border-left: 5px solid var(--yellow);
  position: relative;
}

/* Tablet screens (e.g., iPads): Switch down to 2 columns */
@media (max-width: 1024px) {
  .testi-card {
    width: calc(50% - 12px);
  }
}

/* Mobile screens: Switch down to 1 column */
@media (max-width: 768px) {
  .testi-card {
    width: 100%;
  }
}
.yellow-quote {
  color: var(--yellow); /* Or simply color: #fedd00; */
  font-size: 1.7em; /* Optional: Make the quotes a bit larger */
  font-weight: bold;
  line-height: 1%;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--yellow);
  line-height: 0.8;
  display: block;
  margin-bottom: 12px;
}
.testi-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--yellow);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.testi-role {
  font-size: 13px;
  color: var(--mid-gray);
}

/* ─── MARKETING ─── */
#marketing {
  background: var(--black);
}
#marketing .section-title {
  color: var(--white);
}
.marketing-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 0;
}
.mkt-phase {
  background: #111;
  padding: 48px 32px 40px;
  position: relative;
  z-index: 1;
  border-top: 5px solid #333;
  transition: border-color 0.3s;
}
.mkt-phase:hover {
  border-top-color: var(--yellow);
}
.phase-tag {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 24px;
}
.mkt-phase h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.mkt-list {
  list-style: none;
}
.mkt-list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid #222;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.mkt-list li::before {
  content: "—";
  color: var(--yellow);
  flex-shrink: 0;
  font-weight: bold;
}

/* ─── CTA / CONTACT ─── */
#contact {
  background: var(--yellow);
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: "ROADSHOW";
  position: absolute;
  font-family: var(--font-display);
  font-size: 240px;
  color: rgba(0, 0, 0, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 8px;
}
#contact .section-title {
  font-size: clamp(54px, 8vw, 100px);
  color: var(--black);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.contact-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 480px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.contact-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.contact-chip {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-chip svg {
  width: 16px;
  height: 16px;
  fill: var(--yellow);
}
.btn-contact {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 44px;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
  margin-top: 8px;
}
.btn-contact:hover {
  transform: scale(1.04);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-top: 3px solid var(--yellow);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-brand span {
  color: var(--yellow);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-head);
  letter-spacing: 0.5px;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--yellow);
}

/* ─── ROAD DIVIDER ─── */
.road-divider {
  background: var(--black);
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.road-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0,
    var(--yellow) 60px,
    transparent 60px,
    transparent 90px
  );
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
}

/* Cards */
/* Cards Wrapper - Matches the yellow bordered box in the image */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  background-color: var(--card-bg);
  gap: 24px;
  /* border: 1px solid var(--yellow); */
}

/* Individual Card Styling */
.ecosystem-card {
  padding: 40px 20px;
  border-right: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--yellow);
}
.card-list {
  margin-top: 1.25rem;
  padding-left: 1.25rem; /* Ensures bullets don't hang off the edge */
  list-style-type: disc; /* Or use 'square' for a sharper look */
}

.card-list li {
  color: var(--yellow);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Optional: Remove margin from the last list item */
.card-list li:last-child {
  margin-bottom: 0;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: var(--black);
}

.card-description {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

/* Button Styling */
.card-btn {
  background-color: #1a1a1a;
  color: var(--text-white);
  border: 1px solid #333;
  padding: 12px 24px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start; /* Keeps the button from stretching */
}

.card-btn:hover {
  background-color: #252525;
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 64px 20px;
  }
  #mission {
    grid-template-columns: 1fr;
  }
  .ecosystem-grid,
  .steps-row,
  .marketing-timeline,
  .enablers-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-title {
    white-space: normal;
    font-size: clamp(40px, 12vw, 64px);
  }
  .hero-ctas {
    flex-wrap: wrap;
  }
  .hero-content {
    padding: 60px 20px 40px;
    max-width: 100%;
  }
  .hero-stats {
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .hero-stat {
    min-width: 50%;
  }

  .map-base,
  .map-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }
  .hero {
    flex-direction: column;
  }
}
