:root {
  --teal: #33949a;
  --teal-dk: #237278;
  --navy: #2b558f;
  --navy-dk: #1d3d6b;
  --gold: #b69563;
  --gold-lt: #c9a97a;
  --dark: #1a1f2e;
  --charcoal: #333333;
  --grey: #535353;
  --light: #f5f5f5;
  --white: #ffffff;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── TOP BAR ─────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  padding: 6px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.topbar a {
  color: rgba(255, 255, 255, 0.8);
}
.topbar a:hover {
  color: var(--gold);
}
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar-phone {
  color: var(--gold);
  font-weight: 600;
}

/* ─── NAVBAR ──────────────────────────────── */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1170px;
  margin: 0 auto;
  padding: 12px 20px;
  height: 96px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo img {
  height: 76px;
  width: auto;
}
.navbar-logo span {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.navbar-logo span em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}
.nav-links a.active {
  border-bottom: 2px solid var(--teal);
}

/* ─── HAMBURGER (hidden on desktop) ──────── */
.hamburger {
  display: none;
}

/* ─── HERO CAROUSEL ──────────────────────── */
.hero-carousel {
  position: relative;
  height: 780px;
  overflow: hidden;
  user-select: none;
  cursor: grab;
}
.hero-carousel:active {
  cursor: grabbing;
}

/* Track holds all slides side by side */
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* Individual slide */
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Background image */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.hero-slide.is-active .hero-slide-bg {
  transform: scale(1);
}

/* Dark gradient overlay */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.68) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

/* Text content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px 64px;
}
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s 0.1s,
    transform 0.5s 0.1s;
}
.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s 0.25s,
    transform 0.55s 0.25s;
}
.hero-title span {
  color: var(--teal);
}
.hero-sub {
  font-family: "Oswald", sans-serif;
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s 0.4s,
    transform 0.55s 0.4s;
}
.hero-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s 0.55s,
    transform 0.5s 0.55s;
}
.hero-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-cert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* Animate in when slide is active */
.hero-slide.is-active .hero-tag,
.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-sub,
.hero-slide.is-active .hero-certs {
  opacity: 1;
  transform: translateY(0);
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.hero-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.hero-arrow svg {
  fill: white;
}
.hero-arrow.prev {
  left: 24px;
}
.hero-arrow.next {
  right: 24px;
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
}
.hero-dot.is-active {
  background: var(--teal);
  width: 28px;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--teal);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* ─── TEAL BANNER ─────────────────────────── */
.banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3f6e 40%, var(--teal) 100%);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
}
.banner-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.banner-text {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}
.banner-text strong {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.banner-btn {
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--white);
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}
.banner-btn:hover {
  background: var(--white);
  color: var(--navy);
}

/* ─── SECTION COMMONS ─────────────────────── */
.section {
  padding: 64px 0;
}
.section-light {
  background: var(--light);
}
.section-title {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--teal);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ─── SERVICES TAGLINE ───────────────────── */
.services-tagline {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
  letter-spacing: 0.02em;
  position: relative;
}
.services-tagline em {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

/* ─── SERVICES CARDS ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.service-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--navy);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.service-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--grey);
  flex: 1;
}
.service-card-link {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.service-card-link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ─── SERVICE DETAIL EXPAND ──────────────── */
.service-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  position: relative;
  margin-top: 0;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease,
              margin-top 0.4s ease;
}
.service-detail.is-open {
  opacity: 1;
  margin-top: 32px;
}
.service-detail-pointer {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  transform: rotate(45deg) translateY(-50%);
  z-index: 3;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-detail-inner {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1),
              0 1px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.service-detail-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}
.service-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--grey);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.service-detail-close:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.service-detail-close:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.service-detail-content {
  transition: opacity 0.25s ease;
}
.service-detail-content.is-fading {
  opacity: 0;
}

/* Detail layout: image + text */
.service-detail-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  max-height: 520px;
}
.service-detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.service-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.service-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 85, 143, 0.18) 0%, transparent 60%);
}
.service-detail-text {
  padding: 40px 48px 40px 44px;
  overflow-y: auto;
  max-height: 520px;
}
.service-detail-text::-webkit-scrollbar {
  width: 5px;
}
.service-detail-text::-webkit-scrollbar-track {
  background: var(--light);
}
.service-detail-text::-webkit-scrollbar-thumb {
  background: rgba(51, 148, 154, 0.3);
  border-radius: 3px;
}
.service-detail-text::-webkit-scrollbar-thumb:hover {
  background: rgba(51, 148, 154, 0.5);
}
.service-detail-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-detail-title {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-detail-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  margin-bottom: 20px;
}
.service-detail-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 20px;
}
.service-detail-list {
  margin-bottom: 28px;
}
.service-detail-list li {
  font-size: 13px;
  color: var(--grey);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid #eee;
  line-height: 1.6;
}
.service-detail-list li:last-child {
  border-bottom: none;
}
.service-detail-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.service-detail-subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  margin-top: 8px;
}
.service-detail-cta {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: background 0.2s;
}
.service-detail-cta:hover {
  background: var(--teal-dk);
}
.service-detail-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Active card highlight */
.service-card.is-active {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(51, 148, 154, 0.18);
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

/* ─── GLOBAL LEADER SPLIT ─────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-section.reverse {
  direction: rtl;
}
.split-section.reverse > * {
  direction: ltr;
}
.split-text h2 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.3;
}
.split-text ul {
  margin-bottom: 24px;
}
.split-text ul li {
  font-size: 13px;
  color: var(--grey);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.split-text ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.cta-btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: var(--teal-dk);
}
.cta-btn.gold {
  background: var(--gold);
}
.cta-btn.gold:hover {
  background: #9c7d4e;
}

.split-image {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43, 85, 143, 0.15) 0%,
    transparent 60%
  );
}

/* ─── WHO ARE WE ──────────────────────────── */
/* ─── WHO ARE WE (REDESIGNED) ────────────── */
.who-section {
  background: var(--dark);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.who-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(51,148,154,0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(43,85,143,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.who-image-wrap {
  position: relative;
}
.who-image-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--gold);
  opacity: 0.3;
}
.who-image {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.who-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.who-carousel-img.is-visible {
  opacity: 1;
}
.who-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,46,0.3) 0%, transparent 60%);
}
.who-content {
  color: var(--white);
}
.who-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.who-heading {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.who-accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin-bottom: 24px;
}
.who-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
}
.who-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.who-stat {
  display: flex;
  flex-direction: column;
}
.who-stat-number {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.who-stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.who-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--gold);
  transition: background 0.3s, color 0.3s;
}
.who-cta:hover {
  background: transparent;
  color: var(--gold);
}

.who-text p {
  margin-bottom: 14px;
}

/* ─── MISSION & VISION ───────────────────── */
.mv-section {
  position: relative;
  padding: 70px 0 80px;
  background: var(--white);
  overflow: hidden;
}

/* Heading area */
.mv-heading-area {
  margin-bottom: 56px;
}
.mv-main-title {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--dark);
}
.mv-title-underline {
  display: flex;
  gap: 4px;
  margin-top: 18px;
}
.mv-ul-teal {
  width: 48px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
}
.mv-ul-dark {
  width: 48px;
  height: 4px;
  background: var(--dark);
  border-radius: 2px;
}
.mv-ul-gold {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

/* Row layout */
.mv-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.mv-row:last-child {
  margin-bottom: 0;
}

/* Grey bands */
.mv-row-band {
  background: #f0f0f0;
  padding: 44px 48px;
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
}
.mv-band-mission {
  flex: 1;
  padding-left: 160px;
  margin-right: calc(-50vw + 50%);
  padding-right: calc(50vw - 50% + 48px);
  border-radius: 130px 0 0 130px;
}
.mv-band-vision {
  flex: 1;
  padding-right: 160px;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50% + 48px);
  border-radius: 0 130px 130px 0;
}

/* Band content */
.mv-band-content h3 {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 12px;
}
.mv-band-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
}

/* Circle images */
.mv-row-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08),
              0 2px 8px rgba(0,0,0,0.04);
}
.mv-row-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mission circle - overlaps right onto band */
.mv-circle-mission {
  margin-right: -130px;
}
.mv-circle-mission img {
}

/* Vision circle - overlaps left onto band */
.mv-circle-vision {
  margin-left: -130px;
}
.mv-circle-vision::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(51, 148, 154, 0.25);
  mix-blend-mode: multiply;
}

/* Mission values as tags */
.mv-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.mv-value-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--teal);
  background: rgba(51, 148, 154, 0.08);
  border: 1px solid rgba(51, 148, 154, 0.18);
  padding: 5px 14px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .mv-main-title {
    font-size: 40px;
  }
  .mv-row {
    flex-direction: column;
  }
  .mv-row-vision {
    flex-direction: column-reverse;
  }
  .mv-row-circle {
    width: 200px;
    height: 200px;
    margin: 0 0 -60px 0;
    z-index: 2;
  }
  .mv-circle-mission,
  .mv-circle-vision {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -60px;
  }
  .mv-row-band {
    padding: 80px 28px 32px;
    width: 100%;
  }
  .mv-band-mission {
    margin-right: 0;
    padding-right: 28px;
    padding-left: 28px;
  }
  .mv-band-vision {
    margin-left: 0;
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media (max-width: 600px) {
  .mv-main-title {
    font-size: 32px;
  }
  .mv-row-circle {
    width: 160px;
    height: 160px;
  }
}

/* ─── CTA SECTION ────────────────────────── */
.cta-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3f6e 40%, var(--teal) 100%);
  overflow: hidden;
  text-align: center;
}
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,149,99,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-label {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
}
.cta-heading {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 3px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.cta-btn:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.cta-btn:active {
  transform: translateY(0);
}

/* Contact Info Cards */
.cta-contact-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.cta-contact-card {
  flex: 1;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.cta-contact-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.cta-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(182,149,99,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  margin-bottom: 14px;
}
.cta-contact-label {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 6px;
}
.cta-contact-value {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}
a.cta-contact-value:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Inline Message Form */
.cta-form-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
  position: relative;
  z-index: 1;
}
.cta-form-wrap.is-open {
  opacity: 1;
  max-height: 700px;
}
.cta-form-inner {
  margin-top: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 36px 32px 40px;
}
.cta-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.cta-form-title {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-form-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.cta-form-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.cta-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}
.cta-form-field {
  flex: 1;
  margin-bottom: 18px;
}
.cta-form-field label {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 7px;
}
.cta-form-field input,
.cta-form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cta-form-field input::placeholder,
.cta-form-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.cta-form-field input:focus,
.cta-form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.cta-form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.cta-submit-btn {
  margin-top: 8px;
  width: 100%;
}

.cta-form-feedback {
  margin-top: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 20px;
  transition: opacity 0.3s ease;
}
.cta-form-feedback--success { color: #6ddba8; }
.cta-form-feedback--error   { color: var(--gold-lt); }

/* ─── FOOTER ──────────────────────────────── */
.footer {
  background: var(--white);
  color: var(--grey);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  gap: 48px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-col h4 {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal);
}
.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--grey);
}
.footer-links li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--grey);
  padding: 7px 0;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--teal);
  padding-left: 6px;
}
.footer-links a::before {
  content: "› ";
  color: var(--teal);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--grey);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.footer-contact li a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact li a:hover {
  color: var(--teal);
}
.footer-contact li span.label {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  min-width: 58px;
}
.footer-logo img {
  height: 64px;
  width: auto;
  margin-bottom: 14px;
}
.footer-bottom {
  margin-top: 48px;
  background: var(--light);
  padding: 18px 20px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1170px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--grey);
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 13px;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-links a:hover {
  background: var(--teal);
  color: white;
}

/* ─── CLIENTS MARQUEE ────────────────────── */
.clients-section {
  padding: 64px 0;
  background: var(--light);
  overflow: hidden;
}
.clients-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.clients-heading {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
}
.clients-accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin: 0 auto 48px;
}
.clients-marquee {
  position: relative;
}
.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}
.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 96px;
  width: max-content;
  animation: clients-scroll 60s linear 2s infinite backwards;
}
.clients-track:hover {
  animation-play-state: paused;
}
.clients-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  width: 160px;
  height: 80px;
}
.clients-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.clients-logo img:hover {
  opacity: 1;
}
@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation-play-state: paused;
  }
}

/* ─── OUR NETWORK ────────────────────────── */
.network-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.network-inner {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

/* Title bar */
.network-title-bar {
  background: var(--dark);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.network-title {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-content: center;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0;
}
.network-stat {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Panel */
.network-panel {
  position: relative;
  padding: 40px;
  overflow: hidden;
  background: #dae1e9;
}

/* Map image background */
.network-map-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  object-fit: cover;
}

/* Regions row — 4 equal columns */
.network-regions-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1170px;
  margin: 0 auto;
  align-items: start;
}

/* Region card */
.network-region {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  opacity: 0;
}

/* Color-coded top borders */
.network-region--teal { border-top: 3px solid var(--teal); }
.network-region--gold { border-top: 3px solid var(--gold); }
.network-region--navy { border-top: 3px solid var(--navy); }

/* Region header */
.network-region-header {
  margin-bottom: 12px;
  padding-bottom: 10px;
}
.network-region--teal .network-region-header { border-bottom: 1px solid #d4eced; }
.network-region--gold .network-region-header { border-bottom: 1px solid #ecdfc9; }
.network-region--navy .network-region-header { border-bottom: 1px solid #c8d5e8; }

.network-region-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.3;
}
.network-region--teal .network-region-label { color: var(--teal); }
.network-region--gold .network-region-label { color: var(--gold); }
.network-region--navy .network-region-label { color: var(--navy); }

/* Country list — pill tags */
.network-country-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.network-country-list li {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 20px;
  padding: 4px 10px;
  transition: opacity 0.2s ease;
}
.network-region--teal .network-country-list li {
  background: #eaf6f6;
  color: var(--teal-dk);
  border: 1px solid #bde2e4;
}
.network-region--gold .network-country-list li {
  background: #fdf6ec;
  color: #7a5c26;
  border: 1px solid #e0c898;
}
.network-region--navy .network-country-list li {
  background: #eef2f9;
  color: var(--navy-dk);
  border: 1px solid #b8c8e0;
}
.network-country-list li:hover {
  opacity: 0.7;
}

/* Animation initial states */
.network-title-bar {
  opacity: 0;
}
.network-panel {
  opacity: 0;
}

/* Animated states */
.network-section.is-visible .network-title-bar {
  animation: networkFadeIn 0.5s ease forwards;
}
.network-section.is-visible .network-panel {
  animation: networkFadeIn 0.6s ease 0.2s forwards;
}
.network-section.is-visible .network-region.is-visible {
  animation: networkRegionIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes networkFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes networkRegionIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .network-title-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 24px;
  }
  .network-panel {
    padding: 24px;
  }
  .network-regions-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .network-regions-row {
    grid-template-columns: 1fr;
  }
  .network-country-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .network-title-bar,
  .network-panel,
  .network-region {
    opacity: 1;
    animation: none !important;
  }
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  /* ─── HAMBURGER MENU ─────────────────────── */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
  }
  .hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease;
    transform-origin: center;
  }
  .hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  .navbar-inner {
    justify-content: space-between;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 8px 0 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    border-radius: 0;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--light);
  }
  .nav-links a.active {
    border-bottom: none;
    color: var(--teal);
    background: rgba(51, 148, 154, 0.06);
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .service-detail-hero {
    min-height: 240px;
    height: 240px;
  }
  .service-detail-text {
    padding: 28px 28px 32px;
    max-height: none;
    overflow-y: visible;
  }
  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-section.reverse {
    direction: ltr;
  }
  .who-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .who-image {
    height: 320px;
  }
  .who-section {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .clients-heading {
    font-size: 28px;
  }
  .clients-track {
    gap: 40px;
    animation-duration: 45s;
  }
  .clients-marquee::before,
  .clients-marquee::after {
    width: 60px;
  }
  /* Network responsive 900px */
  .network-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .network-heading {
    font-size: 32px;
  }
  .network-stat-number {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-pointer {
    display: none;
  }
  .service-detail-text {
    padding: 24px 20px 28px;
  }
  .service-detail-title {
    font-size: 22px;
  }
  .service-detail-hero {
    min-height: 200px;
    height: 200px;
  }
  .network-regions-row {
    flex-wrap: wrap;
    gap: 32px;
  }
  .network-panel {
    padding: 40px 24px 36px;
  }
  .network-title-bar {
    padding: 14px 24px;
  }
  .network-region-label {
    font-size: 13px;
    min-width: 70px;
  }
  .network-country-list li {
    font-size: 13px;
  }
  .banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .who-stats {
    gap: 20px;
  }
  .who-heading {
    font-size: 28px;
  }
  .cta-section {
    padding: 52px 0;
  }
  .cta-heading {
    font-size: 26px;
  }
  .cta-contact-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .cta-contact-card {
    max-width: 100%;
    width: 100%;
  }
  .cta-form-inner {
    padding: 28px 20px 32px;
  }
  .cta-form-row {
    flex-direction: column;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .clients-section {
    padding: 48px 0;
  }
  .clients-heading {
    font-size: 24px;
  }
  .clients-track {
    gap: 32px;
    animation-duration: 35s;
  }
  .clients-logo {
    width: 120px;
    height: 60px;
  }
  .clients-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .clients-marquee::before,
  .clients-marquee::after {
    width: 40px;
  }
  /* Network responsive 600px */
  .network-section {
    padding: 64px 24px;
    min-height: auto;
  }
  .network-cards {
    gap: 8px;
  }
  .network-card {
    padding: 10px 16px;
  }
  .network-country {
    font-size: 13px;
  }
}
