
/* ═══════════════════════════════════════   DESIGN TOKENS   ═══════════════════════════════════════ */
:root {
  --navy:        #0C2144;
  --navy-2:      #112a52;
  --navy-3:      #1a3a6b;
  --teal:        #00E4AD;
  --teal-dim:    #00c495;
  --teal-soft:   rgba(0,228,173,0.12);
  --teal-soft2:  rgba(0,228,173,0.06);
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --surface:     #EFF3F9;
  --body-text:   #344054;
  --muted:       #6B7A8D;
  --light-muted: #98A6B5;
  --border:      #DDE3ED;
  --border-soft: #EEF1F7;
  --shadow-sm:   0 1px 3px rgba(12,33,68,0.06), 0 1px 2px rgba(12,33,68,0.04);
  --shadow-md:   0 4px 20px rgba(12,33,68,0.08), 0 2px 8px rgba(12,33,68,0.04);
  --shadow-lg:   0 12px 48px rgba(12,33,68,0.12), 0 4px 16px rgba(12,33,68,0.06);
  --shadow-xl:   0 24px 80px rgba(12,33,68,0.16);
  --font-serif:  'Montserrat', sans-serif;
  --font-sans:   'Plus Jakarta Sans', sans-serif;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --gradient-blue: linear-gradient(155deg, #3381FF, #002C72);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--body-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* line-height: 1.6; */
}
::-webkit-scrollbar { width: 4px; display: none;}
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

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

/* ═══════════════════════════════════════
   NAVIGATION NAVBAR — DESKTOP
═══════════════════════════════════════ */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background: #fff0;
  backdrop-filter: blur(3px);
}
/* .head-nav:hover {
  background: #fff;
} */
.head-nav {
  display: flex;
  width: 100%;
  padding: 10px;
  border-radius: 7px;
  align-items: center;
}
nav.scrolled {
  border-color: var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; margin-right: 48px;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center;
  list-style: none; gap: 30px;
  flex: 1;
  justify-content: end;
  margin-right: 10px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  font-size: 15px; font-weight: 500;
  color: #f7f7f7;
  padding: 8px 14px; border-radius: 7px;
  transition: all 0.2s;
  letter-spacing: 0.1px;
}
.nav-links > li > a:hover { color: var(--teal); }
.nav-links > li > a .caret {
  width: 8px; height: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
}
.nav-links > li:hover > a .caret { transform: rotate(-180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  min-width: 220px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  box-shadow: var(--shadow-lg);
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nd-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal);
  padding: 4px 10px 8px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 6px;
}
.nav-dropdown a {
  display: block; font-size: 13px;
  color: var(--body-text);
  padding: 8px 10px; border-radius: 8px;
  transition: all 0.15s;
}
.nav-dropdown a:hover {
  background: var(--teal-soft);
  color: var(--navy);
  padding-left: 14px;
}

/* ═══════════════════════════════════════
   MEGA DROPDOWN
═══════════════════════════════════════ */

/* Wide panel — replaces .nav-dropdown for mega menus */
.mega-dropdown {
  position: fixed;
  top: 50px; /* exactly nav height */
  left: 680px; right: 0;
  background: var(--white);
  border-top: 2px solid var(--navy);
  border-radius: 10px;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 16px 48px rgba(12,33,68,0.10), 0 4px 12px rgba(12,33,68,0.06);
  padding: 36px 30px 40px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  z-index: 890;
  pointer-events: none;
  width: 700px;
}
.nav-links > li:hover .mega-dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Inner max-width wrapper */
.mega-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; gap: 0;
}

/* Each column group */
.mega-col {
  flex: 1;
  padding: 0 30px;
  border-right: 1px solid var(--border-soft);
  min-width: 0;
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; padding-right: 0; }

/* Column heading */
.mega-col-head {
  font-size: 14px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-dim);
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 8px;
}
.mega-col-head::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--teal);
  border-radius: 1px;
  flex-shrink: 0;
  display: none;
}

/* Links inside mega */
.mega-col a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500;
  color: var(--body-text);
  padding: 9px 10px;
  border-radius: 8px;
  transition: all 0.15s ease;
  letter-spacing: -0.1px;
}
.mega-col a:hover {
  background: var(--teal-soft);
  color: var(--navy);
  padding-left: 10px;
}
.mega-col a:hover .mega-link-icon { color: var(--teal-dim); }

/* Small icon dot before each link */
.mega-link-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.15s;
  display: none;
}
.mega-col a:hover .mega-link-dot { background: var(--teal); }

/* Single-column variant for Industries / Solutions */
.mega-inner.mega-single .mega-col { max-width: 320px; }

/* Narrow variant — just one col, left-anchored */
.mega-dropdown.mega-narrow {
  left: -8rem; 
  right: auto; 
  top: 32px;
  width: auto;
  min-width: 290px;
  position: absolute;
  border-radius: 10px;
  padding: 24px 28px 28px;
}

/* Scrolled nav: keep mega top aligned */
nav.scrolled + * .mega-dropdown,
nav.scrolled .mega-dropdown { top: 70px; }

.nav-end {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

.btn-icon {
  width: 30px;
  height: 35px;
  object-fit: contain;
}

.btn-nav-ghost {
  font-size: 13px; font-weight: 600;
  color: var(--white);
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  transition: all 0.2s;
}
.btn-nav-ghost:hover { color:var(--navy); border-color: var(--navy); background: var(--off-white); }
.btn-nav-cta {
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  background: var(--teal);
  padding: 9px 20px;
  border-radius: 7px;
  transition: all 0.2s;
  letter-spacing: 0.1px;
}
.btn-nav-cta:hover {
  background: var(--teal-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,228,173,0.35);
}

/* ═══════════════════════════════════════
   HAMBURGER TOGGLE (mobile trigger)
═══════════════════════════════════════ */
.hamburger {
  display: none;
  width: 26px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
.hamburger span:first-child { top: 0; }
.hamburger span:last-child { bottom: 0; }

.hamburger.active span:first-child {
  transform: rotate(45deg);
  top: 8px;
}
.hamburger.active span:last-child {
  transform: rotate(-45deg);
  bottom: 8px;
}

/* ═══════════════════════════════════════
   MOBILE NAV — SLIDE-OUT PANEL
═══════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100%;
  height: 100vh;
  background: var(--navy);
  z-index: 1000;

  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);

  border-left: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.open {
  transform: translateX(0);
}

/* INNER */
.mobile-nav-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

/* TOP */
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-logo { height: 34px; }

.mobile-close {
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* CONTENT */
.mobile-nav-content {
  flex: 1;
  overflow-y: auto;
}

/* LINKS */
.mobile-link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* GROUP */
.mobile-group {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-group-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 14px 0;
  cursor: pointer;
}

.mobile-group-head span {
  color: var(--teal);
  font-size: 18px;
  transition: 0.3s;
}

.mobile-group.active .mobile-group-head span {
  transform: rotate(45deg);
}

/* SUBMENU */
.mobile-group-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  /* padding-left: 10px; */
}

.mobile-group.active .mobile-group-body {
  max-height: 500px;
}

.mobile-group-body a {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
}

/* TOP-RIGHT (globe + close) */
.mobile-top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.mobile-flag-top {
  width: 40px;
  height: auto;
  opacity: 0.85;
  transition: 0.25s;
}

.mobile-flag-top:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ═══════════════════════════════════════
   SELECT REGION DROPDOWN — DESKTOP
   (uses the same .mega-dropdown.mega-narrow
   pattern as the Solutions / Industries menu items,
   right-aligned since it's the last nav item)
═══════════════════════════════════════ */
.region-dropdown {
  left: auto;
  right: -20px;
  width: auto;
  min-width: 240px !important;
}
.region-dropdown .mega-col {
  max-width: none;
}

/* Shared row */
.globe-item {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 10px;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border-bottom: 1px solid var(--border-soft);
}
.globe-item:hover { background: var(--teal-soft); }
.globe-flag {
  font-size: 19px; line-height: 1;
  width: 22px; height: 22px;
  flex-shrink: 0; text-align: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-radius: 50%;
}
.globe-flag img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.globe-country {
  flex: 1;
  font-size: 13.5px; font-weight: 600;
  color: var(--body-text);
  transition: color 0.15s;
}
.globe-item:hover .globe-country { color: var(--navy); }
.globe-lang {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--light-muted);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: 3px 8px; border-radius: 5px;
  flex-shrink: 0;
  transition: all 0.15s;
}
.globe-item:hover .globe-lang {
  background: rgba(0,228,173,0.14);
  color: var(--teal-dim);
  border-color: rgba(0,228,173,0.3);
}

/* Currently active / selected region */
.globe-item.active {
  background: var(--teal-soft);
}
.globe-item.active .globe-country {
  color: var(--navy);
  font-weight: 700;
}
.globe-item.active .globe-flag {
  /* box-shadow: 0 0 0 2px var(--teal); */
}

/* ═══════════════════════════════════════
   GLOBE / REGION DROPDOWN — MOBILE
═══════════════════════════════════════ */
.mobile-globe-wrap {
  position: relative;
  display: flex; align-items: center;
  cursor: pointer;
}
.select-rgn-icon {
    width: 1.5rem;
}
/* Panel drops below the globe icon */
.mobile-globe-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 224px;
  background: #0e2348;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  z-index: 1200;
  pointer-events: none;
}
.mobile-globe-panel.open {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Panel label */
.mobile-globe-label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal);
  padding: 4px 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 6px;
}

/* Panel rows — reuse .globe-item structure but override colours */
.mobile-globe-panel .globe-item { border-radius: 10px; }
.mobile-globe-panel .globe-item:hover { background: rgba(0,228,173,0.1); }
.mobile-globe-panel .globe-country { color: rgba(255,255,255,0.82); }
.mobile-globe-panel .globe-item:hover .globe-country { color: var(--teal); }
.mobile-globe-panel .globe-lang {
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}
.mobile-globe-panel .globe-item:hover .globe-lang {
  background: rgba(0,228,173,0.13);
  color: var(--teal);
  border-color: rgba(0,228,173,0.28);
}

/* ═══════════════════════════════════════
   SELECT REGION — HEADER (MOBILE ONLY)
   Same visual style as the desktop dropdown
   (.mega-dropdown.mega-narrow.region-dropdown),
   just repositioned to anchor under the icon
   and hidden on desktop.
═══════════════════════════════════════ */
.mobile-region-select {
  display: none;
  position: relative;
  align-items: center;
}
.mobile-region-icon {
  width: 26px;
  height: auto;
  opacity: 0.9;
  transition: 0.25s;
  cursor: pointer;
}
.mobile-region-icon:hover { opacity: 1; transform: scale(1.06); }

/* ═══════════════════════════════════════
   REGION SELECTOR SIDEBAR (mobile only)
   Opens the same way as the hamburger panel,
   but white background, active region pinned
   to top with a navy divider, rest in black.
═══════════════════════════════════════ */
.region-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;

  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);

  border-left: 1px solid rgba(12,33,68,0.08);
}

.region-sidebar.open {
  transform: translateX(0);
}

.region-sidebar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px 24px 24px 24px;
  position: relative;
}

.region-sidebar-close {
  position: absolute;
  top: 30px;
  right: 22px;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
  z-index: 5;
}

.region-sidebar-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 44px 16px 4px;
  border-bottom: 1px solid rgba(12,33,68,0.08);
  text-decoration: none;
  transition: background 0.2s ease;
}

.region-item:hover { background: rgba(12,33,68,0.03); }

.region-flag img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.region-name {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
}

/* Active region pinned to the top of the list,
   navy text + navy divider separating it from the rest */
.region-item.active-region {
  order: -1;
  margin-bottom: 4px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy);
}

.region-item.active-region .region-name {
  color: var(--navy);
  font-weight: 800;
}

/* ═══════════════════════════════════════
   MOBILE SIDEBAR BACKDROP (blur behind panel)
═══════════════════════════════════════ */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(9, 20, 41, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-end { display: none; }
  .mobile-region-select {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }
  .hamburger {
    display: block;
    margin-left: 30px !important
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 !important;
  }
  .head-nav:hover {
    background: #ffffff00;
  }
  .nav-logo-img {
    height: 40px;
    width: auto;
  }
  .head-nav {
    padding: 0 20px;
  }
  .mobile-region-icon {
    width: 25px !important;
  }
  .mobile-region-select {
    margin-right: 0px;
  }
  .mobile-close {
    top: 0px;
    position: relative;
  }
}



/* ═══════════════════════════════════════   HERO   ═══════════════════════════════════════ */

  .hero-sec-video {
    position: relative;
    overflow: hidden;
    background: #efefef  !important;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    margin-left: 353px;
  }

  .th-hero {
    border-top: 1px solid #e2e9ec;
    background: linear-gradient( to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.33) 40%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100% );
    position: relative;
    overflow: hidden;
  }

  .th-hero-inner {
    max-width: var(--th-max-w);
    margin: 0 auto;
    border-left: 1px solid #e2e9ec;
    border-right: 0px solid #e2e9ec;
    position: relative;
    z-index: 2;
    height: 100vh;
    align-items: center;
    display: grid;
    border-bottom: 5px solid var(--navy);
  }

  .th-hero-content { max-width: 770px; padding-left: 130px; padding-top: 70px;}

  .th-gdp {
    font-size: 14px;
    margin-bottom: 36px;
    color: #0A244E;
  }

  .th-gdp strong { font-weight: 700; }
  .th-gdp .th-value { color: #0AC89A; font-weight: 400; }

  .th-headline {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #0A244E;
    margin-bottom: 6px;
    font-family: var(--font-serif) !important;
  }

  .th-subtext {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #5b7184;
    margin-bottom: 36px;
  }

  .th-revenue-accent { color: #0AC89A; }

  .th-btn-invite {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff0;
    color: #0A244E;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #0A244E;
    cursor: pointer;
    transition: background 0.15s ease;
  }
  .th-btn-invite svg {
    stroke: currentColor;
    transition: stroke 0.15s ease;
  }
  .th-btn-invite:hover svg {
    stroke: #fff;
  }

  .th-btn-invite:hover { background: #123166; color: #fff;}
  

  .th-btn-invite svg {
    width: 16px;
    height: 16px;
    stroke: #0A244E;
    stroke-width: 2.5;
    fill: none;
  }

  /* ═══════════════ RESPONSIVE ═══════════════ */
  @media (max-width: 1024px) {
    .th-headline { font-size: 38px; }
    .th-subtext { font-size: 17px; }
  }


  @media (max-width: 900px) {.th-headline { font-size: 32px; }

}



  @media (max-width: 600px) {
    .th-logo { font-size: 19px; }
    .th-btn-contact { font-size: 13px; padding: 9px 14px; }
    .th-btn-sign-in { display: none; }
    .th-hero-inner { padding: 130px 16px 55px; height: 70vh; justify-content: center;}
    .th-headline { font-family: Montserrat !important; font-size: 26px; line-height: 1.25; }
    .th-subtext { font-size: 15px; margin-bottom: 28px; color: #333; }
    .th-revenue-accent { color: #000; }
    .th-btn-invite { font-size: 14px; padding: 13px 22px; width: 100%; justify-content: center; }
    .hero-video {   margin-left: 0;  /* opacity: 0.10; */}

.th-hero-content {
  backdrop-filter: blur(20px) saturate(180%);
  background: #ffffff57;
  padding: 20px;
  border-radius: 7px;
  width: 325px;
}
  }

  @media (max-width: 380px) {
    .th-headline { font-size: 22px; }
  }





/* ═══════════════════════════════════════   HERO 2 BLUE   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* Left panel */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px;
  position: relative; z-index: 2;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,228,173,0.12);
  border: 1px solid rgba(0,228,173,0.25);
  padding: 7px 16px; border-radius: 100px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
  width: fit-content;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(44px,3.5vw,76px);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.25s both;
}
.hero-h1 strong {
  font-weight: 700;
  font-style: italic;
  color: var(--teal);
}
.hero-h1 .outline-text {
  -webkit-text-stroke: 1px rgb(255, 255, 255,0.5);
  color: transparent;
}

.hero-desc {
  font-size: 16px; font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 44px;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero-actions {
  display: flex; align-items: center; gap: 14px;
  animation: fadeUp 0.7s ease 0.55s both;
}
.btn-teal-lg {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700;
  color: var(--teal-dim);
  background: #00E4AD00;
  padding: 15px 32px;
  border-radius: 10px;
  transition: all 0.25s;
  border: 1px solid var(--teal-dim);
}
.btn-teal-lg:hover {
  background: #00F5BB;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,228,173,0.4);
  color: var(--navy);
}
.btn-teal-lg svg { transition: transform 0.2s; }
.btn-teal-lg:hover svg { transform: translateX(4px); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 14px 28px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: all 0.25s;
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.hero-trust {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.7s ease 0.7s both;
}
.hero-trust-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.hero-trust-logos {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.trust-logo-item {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.trust-logo-item:hover { color: rgba(255,255,255,0.6); }

/* Right panel */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-image-panel {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,#0e2d5c 0%, #0a1e3d 100%);
  border-radius: 14px;
}
.hero-img-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  padding: 40px 40px 40px 20px;
}
.hero-img-cell {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.7s ease both;
}
.hero-img-cell:nth-child(1) { animation-delay: 0.5s; grid-row: 1/3; background: linear-gradient(145deg, #1a3a6b 0%, #0e2756 60%, rgba(0,228,173,0.08) 100%); }
.hero-img-cell:nth-child(2) { animation-delay: 0.6s; }
.hero-img-cell:nth-child(3) { animation-delay: 0.7s; }

.cell-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.hero-img-cell:hover .cell-bg { transform: scale(1.04); }

.cell-1 {
  /* background: linear-gradient(145deg, #1a3a6b 0%, #0e2756 60%, rgba(0,228,173,0.08) 100%); */
  background: url("images/connected.jpg") center/cover no-repeat;
  opacity: 0.7;
}
.cell-2 {
  /* background: linear-gradient(145deg, #112a52 0%, #162f5c 100%); */
  background: url("images/quality.jpg") center/cover no-repeat;
  opacity: 0.5;
}
.cell-3 {
  /* background: linear-gradient(145deg, #0e2144 0%, #1a3568 100%); */
  background: url("images/data.jpg") center/cover no-repeat;
  opacity: 0.5;
}

/* SVG illustrations inside cells */
.cell-illustration {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.7;
}

.cell-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255);
  letter-spacing: 0.5px;
}

.hero-stat-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  animation: floatBadge 4s ease-in-out infinite;
  top: 10px;
}
.hero-stat-badge:nth-child(5) {
  bottom: 100px; right: 28px;
  animation-delay: 0s;
}
.hero-stat-badge:nth-child(6) {
  top: 110px; right: 180px;
  animation-delay: -2s;
}
@keyframes floatBadge {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
}
.badge-num {
  font-family: var(--font-serif) !important;
  font-size: 28px; font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}
.badge-num span { color: var(--teal); }
.badge-label {
  font-size: 11px; font-weight: 500;
  color: var(--muted); margin-top: 3px;
}

.hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,228,173,0.08);
}
.hc1 { width: 600px; height: 600px; right: -200px; bottom: -200px; }
.hc2 { width: 400px; height: 400px; right: -100px; top: -100px; }
.hc3 { width: 200px; height: 200px; left: 40px; top: 60px; border-color: rgba(255,255,255,0.05); }

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

/* ═══════════════════════════════════════
   MARQUEE TICKER
═══════════════════════════════════════ */
.ticker-bar {
  background: #0C2144;
  overflow: hidden;
  padding: 13px 0;
  backdrop-filter: blur(1px) saturate(180%);
  margin-top: -45px;
  z-index: 199;
  position: relative;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

.ticker-group {
  display: flex; gap: 56px;
  padding-right: 56px; flex-shrink: 0;
}
.ticker-word {
  color: #EAEAEA;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.ticker-word::after {
  content: '✦'; font-size: 7px;
}

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

/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
.section-wrap { padding: 100px 64px; }
.section-wrap-sm { padding: 72px 64px; }
.section-wrap-lg { padding: 120px 64px; }
.inner { max-width: 1240px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-dim);
  margin-bottom: 18px;
}


.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.sec-h2-light {
  font-family: var(--font-serif) !important;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.sec-h2 {
  font-family: var(--font-serif) !important;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.sec-h2 strong { font-weight: 700; }
.sec-h2-light em { font-style: italic; color: #DBDBDB; }
.sec-h2 em { font-style: italic; color: var(--navy-3); }

.sec-body-light {
  font-size: 16px; font-weight: 400;
  color: #8694A6;
  max-width: 540px;
  line-height: 1.8;
}
.sec-body {
  font-size: 16px; font-weight: 400;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
}



/* ═══════════════════════════════════════
   SERVICES — TABBED
═══════════════════════════════════════ */
.services-section {
  background: var(--off-white);
  padding: 100px 50px 100px;
}
.services-header {
  max-width: 95%;
  margin: 0 100px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-tabs {
  max-width: 95%;
  margin: 0 100px;
}
.tab-nav {
  display: flex; gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 40px;
}
.tab-btn {
  font-size: 16px; font-weight: 600;
  padding: 9px 22px;
  border-radius: 8px;
  border: none; background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  gap: 5px;
}
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.tab-btn:not(.active):hover { background: var(--surface); color: var(--navy); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.svc-card {
  background: var(--white);
  border: 1px solid #d9e6f7;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 4px rgba(47, 112, 196, 0.02), 0 12px 24px rgba(82, 148, 232, 0.05), 0 32px 56px rgba(82, 148, 232, 0.05);
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dim));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  display: none;
}
.svc-card:hover {
  box-shadow: 0 2px 4px rgba(47, 112, 196, 0.04), 0 12px 24px rgba(82, 148, 232, 0.1), 0 32px 56px rgba(82, 148, 232, 0.35);
  border-color: #d9e6f7;
  transform: translateY(-6px);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon-wrap {
  width: 52px; height: 52px;
  background: var(--gradient-blue);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}
/* .svc-card:hover .svc-icon-wrap { background: var(--teal); } */
.svc-icon-wrap svg { color: var(--white); transition: color 0.3s; }
/* .svc-card:hover .svc-icon-wrap svg { color: var(--navy); } */
.svc-title {
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.svc-desc { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 16px; font-weight: 700;
  color: var(--teal-dim);
  transition: gap 0.2s;
}
.svc-card:hover .svc-link { gap: 10px; }

/* ═══════════════════════════════════════
   ABOUT — SPLIT
═══════════════════════════════════════ */
.about-section-bg {
  background-image: url('images/quasar-glow.webp') !important;
  background-size: 160% !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
  padding: 40px 64px !important; 
}


.about-section { background: var(--white); padding: 80px 64px; }
.about-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 14px;
}
.mosaic-cell {
  border-radius: 18px; overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}
.mosaic-cell:hover { transform: scale(1.02); box-shadow: 0 0px 20px rgba(0, 228, 173, 0.2); }
.mosaic-cell:first-child {
  grid-row: 1/3;
  border-radius: 20px;

}
.mc-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.mc-bg-1 { background: url("images/pic4.webp") center/cover no-repeat; }
.mc-bg-2 { background: url("images/pic3.webp") center/cover no-repeat; }
.mc-bg-3 { background: url("images/pic2.webp") center/cover no-repeat; }
.mc-label {
  font-size: 12px; font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  background: rgba(255,255,255);
  padding: 6px 12px; border-radius: 6px;
  width: fit-content;
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  z-index: 2;
}
.ab-num {
  font-family: var(--font-serif) !important;
  font-size: 36px; font-weight: 600;
  color: var(--teal);
  letter-spacing: -1px; line-height: 1;
}
.ab-txt { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }

.pillar-list { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.pillar-row-blue {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  border-radius: 12px;
  transition: all 0.2s;
  border: 1px solid rgb(27, 45, 103);
  transition: all 0.2s;
  background: rgba(24, 42, 109, 0.06);
}
.pillar-row-blue:hover {
  transform: translateX(4px);
  border: 1px solid rgb(27, 45, 103);
  /* transition: all 0.2s; */
  background: rgba(24, 42, 109, 0.06);
}
.pillar-icon-blue {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(114, 144, 255, 0.16);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b8fff;
}
.pillar-text-name-blue {
  font-size: 14px; font-weight: 700;
  color: #DBDBDB; 
  margin-bottom: 3px;
}
.pillar-text-desc-blue { font-size: 13px; color: #8694A6; line-height: 1.55; }

.pillar-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  transition: all 0.2s;
}
.pillar-row:hover {
  border-color: rgba(0,228,173,0.3);
  background: rgba(0,228,173,0.04);
  transform: translateX(4px);
}
.pillar-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--teal-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dim);
}
.pillar-text-name {
  font-size: 14px; font-weight: 700;
  color: var(--navy); margin-bottom: 3px;
}
.pillar-text-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════ */


/* ═══════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════ */
.industries-section { background: var(--white); padding: 80px 64px; border-top: 1px solid var(--border-soft); }
.ind-grid {
  max-width: 1240px; 
  margin: 0 auto;
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 0px ; 
  align-items: end;
}
.ind-grid> .box-left {
  /* margin-right: -10px; */
}
.ind-list { display: flex; flex-direction: column; gap: 6px; }
.ind-item {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.ind-item.active,
.ind-item:hover {
  background: var(--off-white);
  border-color: var(--border);
}
.ind-item.active { border-color: rgba(0,228,173,0.3); background: rgba(0,228,173,0.05); }
.ind-item::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 2px; background: var(--teal);
  border-radius: 1px;
  opacity: 0; transition: opacity 0.2s;
}
.ind-item.active::after { opacity: 1; }
.ind-num {
  font-family: var(--font-serif) !important;
  font-size: 13px; font-weight: 600;
  color: var(--light-muted);
  width: 28px; flex-shrink: 0;
}
.ind-item.active .ind-num { color: var(--teal-dim); }
.ind-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--surface);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
}
.ind-item.active .ind-icon,
.ind-item:hover .ind-icon { background: var(--teal-soft); color: var(--teal-dim); }
.ind-text {}
.ind-name {
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 3px;
  letter-spacing: -0.2px;
}
.ind-sub { font-size: 12.5px; color: var(--muted); }

.ind-detail-panel {
  background-image: url('images/software-engineering.webp');
  background-size: 160%;
  background-position: bottom;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  position: sticky; top: 96px;
  min-height: 540px;
  margin-left: 20px;
}
.industry-detail {
  margin-left: -10px;
}
.idp-thumb {
  height: 257px;
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.idp-pattern {
  position: absolute; inset: 0;
  background: transparent;
}
.idp-body { padding: 32px; }
.idp-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,228,173,0.12);
  border: 1px solid rgba(0,228,173,0.2);
  padding: 5px 12px; border-radius: 5px;
  margin-bottom: 14px;
}
.idp-title {
  font-family: var(--font-serif) !important;
  font-size: 26px; font-weight: 600;
  color: var(--white); letter-spacing: -0.5px;
  margin-bottom: 12px; line-height: 1.25;
}
.idp-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.idp-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--teal);
  transition: gap 0.2s;
}
.idp-cta:hover { gap: 12px; }
.cta-container {
  width: 35%;
}




/* ═══════════════════════════════════════
   NEWS ACCORDION SLIDER
═══════════════════════════════════════ */
.news-slider-section {
  background: var(--navy);
  padding: 80px 64px;
  position: relative; overflow: hidden;
}
.news-slider-bg {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  right: -250px; top: -250px;
  pointer-events: none;
}
.news-slider-header {
  max-width: 1240px; margin: 0 auto 48px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.news-slider-header .eyebrow { color: var(--teal); }
.news-slider-header .sec-h2 { color: var(--white); margin-bottom: 0; }
.news-slider-header .sec-h2 strong { color: var(--teal); }
.news-slider-nav {
  display: flex; gap: 10px; align-items: center; flex-shrink: 0;
}
.nsl-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.nsl-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: scale(1.08);
}
.nsl-btn svg { pointer-events: none; }

/* Slider track */
.news-slider-track {
  max-width: 1240px; margin: 0 auto;
  display: flex;
  gap: 12px;
  height: 480px;
  position: relative;
}

/* Each slide */
.nsl-slide {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
  flex: 1;               /* collapsed default */
  min-width: 80px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nsl-slide.active {
  flex: 4.5;             /* expanded */
  box-shadow: 0 8px 48px rgba(0,228,173,0.18), 0 0 0 1.5px rgba(0,228,173,0.3);
  cursor: default;
}

/* Background image */
.nsl-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.nsl-slide:hover .nsl-bg { transform: scale(1.04); }
.nsl-slide.active .nsl-bg { transform: scale(1.02); }

/* Dark gradient overlay */
.nsl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,22,48,0.15) 0%,
    rgba(7,22,48,0.35) 40%,
    rgba(7,22,48,0.88) 100%
  );
  transition: background 0.4s ease;
}
.nsl-slide.active .nsl-overlay {
  background: linear-gradient(
    to bottom,
    rgba(7,22,48,0.08) 0%,
    rgba(7,22,48,0.25) 35%,
    rgba(7,22,48,0.92) 100%
  );
}

/* Tag top-left */
.nsl-tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 5px;
  z-index: 3;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.nsl-tag-news        { background: var(--teal);    color: var(--navy); }
.nsl-tag-events      { background: var(--navy-3);  color: #fff;       border: 1px solid rgba(255,255,255,0.18); }
.nsl-tag-announcements { background: #e03535;      color: #fff; }

/* Collapsed state: only vertical title */
.nsl-collapsed-label {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  display: flex; justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
  z-index: 3;
  pointer-events: none;
}
.nsl-slide.active .nsl-collapsed-label { opacity: 0; pointer-events: none; }
.nsl-collapsed-label span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  max-height: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Expanded content */
.nsl-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 3;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease 0.25s, transform 0.35s ease 0.25s;
  pointer-events: none;
}
.nsl-slide.active .nsl-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nsl-meta {
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.nsl-title {
  font-family: var(--font-sans);
  font-size: clamp(16px,1.5vw,21px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.nsl-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nsl-footer {
  display: flex; justify-content: space-between; align-items: center;
}
.nsl-read-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  background: var(--teal);
  padding: 9px 18px; border-radius: 7px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nsl-read-btn:hover {
  background: #00F5BB;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,228,173,0.4);
}
.nsl-stat {
  font-size: 12px; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 5px;
}
.nsl-stat-val { color: var(--teal); font-weight: 700; }

/* Progress dots */
.news-slider-dots {
  max-width: 1240px; margin: 22px auto 0;
  display: flex; gap: 6px; align-items: center;
}
.nsd-dot {
  height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.2);
  transition: all 0.35s ease;
  cursor: pointer;
  width: 18px;
}
.nsd-dot.active {
  background: var(--teal);
  width: 40px;
}

/* ── Desktop mild adjustment ── */
@media (max-width: 960px) {
  .nsl-title { font-size: 15px; }
  .news-slider-section { padding: 72px 24px; }
  .news-slider-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  #cursor { display: none; }
}

/* ── MOBILE: single-card swipe slider ── */
@media (max-width: 768px) {
  .news-slider-section { padding: 56px 0 48px; }

  /* Header padded separately */
  .news-slider-header {
    padding: 0 20px;
    flex-direction: column; gap: 14px; align-items: flex-start;
    margin-bottom: 28px;
  }
  .news-slider-header .sec-h2 { font-size: 28px; }

  /* Hide desktop accordion track */
  .news-slider-track {
    /* Switch to a horizontal scroll snap container */
    display: flex !important;
    flex-direction: row !important;
    height: auto !important;
    gap: 0 !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 20px;
    /* Extra right padding so last card peeks */
    padding-right: 40px;
    max-width: 100% !important;
    margin-left: 20px;
  }
  .news-slider-track::-webkit-scrollbar { display: none; }

  /* Every slide becomes a full-width snap card */
  .nsl-slide {
    flex: 0 0 calc(100vw - 56px) !important;
    min-width: 0 !important;
    height: 420px !important;
    scroll-snap-align: start;
    border-radius: 18px;
    margin-right: 12px;
    cursor: default;
    box-shadow: 0 6px 28px rgba(0,0,0,0.3) !important;
  }
  .nsl-slide:last-child { margin-right: 0; }

  /* All slides show content on mobile (no collapsed state) */
  .nsl-collapsed-label { display: none !important; }
  .nsl-content {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 22px 20px 24px;
  }
  .nsl-slide.active,
  .nsl-slide {
    /* Reset desktop flex expansion — all equal on mobile */
    box-shadow: 0 6px 28px rgba(0,0,0,0.3) !important;
  }
  .nsl-slide.active {
    border: 1.5px solid rgba(0,228,173,0.35);
  }

  .nsl-title { font-size: 16px; line-height: 1.35; margin-bottom: 8px; }
  .nsl-meta  { font-size: 11px; margin-bottom: 7px; }
  .nsl-excerpt { font-size: 12.5px; -webkit-line-clamp: 3; margin-bottom: 16px; }
  .nsl-read-btn { font-size: 12px; padding: 8px 15px; }
  .nsl-stat { font-size: 11px; }

  /* Dots sit below, centered */
  .news-slider-dots {
    padding: 0 20px;
    margin-top: 18px;
    justify-content: center;
    max-width: 100% !important;
  }

  /* Nav buttons: row below header */
  .news-slider-nav { display: flex; }
  .idp-thumb{height: 150px;}
  .ind-detail-panel{
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 0px;
  }
  .about-mosaic {
    grid-template-rows: 100px 100px;
  }
}



/* ═══════════════════════════════════════
   INSIGHTS
═══════════════════════════════════════ */
.insights-section { background: var(--off-white); padding: 100px 64px; }
.insights-header {
  max-width: 1240px; margin: 0 auto 56px;
  display: flex; justify-content: space-between; align-items: center;
}
.ins-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.ins-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}
.ins-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.ins-thumb {
  height: 240px;
  position: relative; overflow: hidden;
}
.ins-card:nth-child(1) .ins-thumb { height: 240px; }
.it-bg { position: absolute; inset: 0; transition: transform 0.5s ease; }
.ins-card:hover .it-bg { transform: scale(1.05); }
.it-1 { background: url(images/insight-img1.jpg) center/cover no-repeat; }
.it-2 { background: url(images/insight-img2.jpg) center/cover no-repeat; }
.it-3 { background: url(images/insight-img3.png) center/cover no-repeat; }
.it-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border-soft) 1px,transparent 1px),
    linear-gradient(90deg,var(--border-soft) 1px,transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
}
.ins-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy);
  background: var(--teal);
  padding: 5px 11px; border-radius: 5px;
}
.ins-body { padding: 24px; }
.ins-meta { font-size: 12px; color: var(--light-muted); margin-bottom: 10px; }
.ins-title {
  font-family: var(--font-sans);
  font-size: 19px; font-weight: 700;
  color: var(--navy); line-height: 1.4;
  letter-spacing: -0.2px; margin-bottom: 10px;
}
.ins-card:nth-child(1) .ins-title { font-size: 19px; }
.ins-excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; }
.ins-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
  border-top: 1px solid var(--border-soft);
}
.ins-read {
  font-size: 12px; font-weight: 700;
  color: var(--teal-dim);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.ins-card:hover .ins-read { gap: 9px; }
.ins-time { font-size: 12px; color: var(--light-muted); }

/* ═══════════════════════════════════════
   OUR INNOVATION — qKey
═══════════════════════════════════════ */
.innovation-section {
  background: var(--white);
  padding: 80px 64px;
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
  position: relative;
}
.innovation-inner {
  max-width: 90%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center;
}
.innovation-left .eyebrow { margin-bottom: 18px; }
.innovation-left .sec-h2 {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 30px;
}
.innovation-left .sec-h2 strong { color: #000; }
.innovation-desc {
  font-size: 16.5px; line-height: 1.75;
  color: var(--muted);
  max-width: fit-content;
  margin-bottom: 32px;
}
.innovation-tagline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 13.5px; font-weight: 700;
  color: var(--navy);
  background: var(--teal-soft);
  border: 1px solid var(--teal-dim);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 26px;
}
.innovation-tagline svg { stroke: var(--teal-dim); flex-shrink: 0; }
.innovation-features {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 36px;
}
.innovation-feature {
  display: flex; align-items: flex-start; gap: 14px;
}
.innovation-feature-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 11px;
  background: var(--gradient-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.innovation-feature-txt h4 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 3px; letter-spacing: -0.1px;
}
.innovation-feature-txt p {
  font-size: 16px; color: var(--muted); line-height: 1.6;
}
.innovation-cta-row { display: flex; align-items: center; gap: 24px; }
.btn-innovation-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px; font-weight: 700;
  padding: 15px 28px;
  border-radius: 100px;
  transition: all 0.25s;
  box-shadow: var(--shadow-md);
}
.btn-innovation-primary:hover {
  background: var(--teal-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-innovation-primary svg { transition: transform 0.25s; }
.btn-innovation-primary:hover svg { transform: translateX(3px); }
.link-innovation-secondary {
  font-size: 14.5px; font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.link-innovation-secondary:hover { border-color: var(--teal-dim); color: var(--teal-dim); }

.innovation-right { position: relative; }
.innovation-video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-soft);
  background: var(--navy);
  aspect-ratio: 4/2.5;
}
.innovation-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.innovation-glow-1 {
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,228,173,0.3) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.innovation-glow-2 {
  position: absolute;
  bottom: -50px; left: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12,33,68,0.3) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.innovation-badge {
  position: absolute;
  bottom: 26px; left: 26px;
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
}
.innovation-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.innovation-badge span {
  font-size: 12.5px; font-weight: 700; color: var(--navy);
}

@media (max-width: 900px) {
  .innovation-inner { grid-template-columns: 1fr; gap: 30px; max-width: 100%; display: block;}
  .innovation-right { order: -1; }
  .innovation-video-wrap { aspect-ratio: 16/12; max-width: 460px; margin: 0 auto; }
  .innovation-features{ margin-bottom: 0px; margin-top: 40px;}
  .innovation-glow-1, .innovation-glow-2, .innovation-video-wrap {
    display: none;
  }
}

/* ═══════════════════════════════════════
   CAREERS BANNER
═══════════════════════════════════════ */
.careers-section {
   position: relative;
      overflow: hidden;
      min-height: 480px;
      display: flex; align-items: center;
      margin: 0px 64px 0px 64px;
      border-radius: 20px;
}

.us-careers-bg-img {
  position: absolute; inset: 0;
  background-image: url('images/uscareers.webp');
  background-size: cover;
  background-position: center 30%;
  transition: transform 8s ease;
}

/* Full-bleed background image */
.careers-bg-img {
  position: absolute; inset: 0;
  background-image: url('images/careers.webp');
  background-size: cover;
  background-position: center 30%;
  transition: transform 8s ease;
}
.careers-section:hover .careers-bg-img { transform: scale(1.04); }

/* Gradient overlay: dark left, fade right — like Stripe Sessions */
.careers-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(7, 20, 50, 0.96) 0%,
      rgba(7, 20, 50, 0.82) 42%,
      rgba(7, 20, 50, 0.35) 72%,
      rgba(7, 20, 50, 0.08) 100%
    );
}

/* Subtle teal glow at bottom-left */
.careers-glow {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,228,173,0.13) 0%, transparent 70%);
  pointer-events: none;
}

/* Content layer */
.careers-content {
  position: relative; z-index: 2;
  max-width: 90%; margin: 0 auto;
  padding: 80px 0px;
  width: 100%;
}

/* Eyebrow */
.careers-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.careers-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  display: none;
}

/* Title */
.careers-title {
  font-family: var(--font-sans);
  font-size: clamp(38px, 5.5vw, 42px);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 22px;
  max-width: 580px;
}
.careers-title .ct-teal { color: var(--teal); }
.careers-title .ct-dot  { color: var(--teal); font-size: 0.9em; }

/* Description */
.careers-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 470px;
  margin-bottom: 38px;
}

/* CTA row */
.careers-cta-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.btn-careers-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  background: var(--teal);
  padding: 15px 32px; border-radius: 10px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-careers-primary:hover {
  background: #00F5BB;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,228,173,0.4);
}
.btn-careers-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 14px 28px; border-radius: 10px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-careers-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
}

/* Floating stat pills */
.careers-stats {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 48px;
}
.careers-stat-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 18px; border-radius: 50px;
  backdrop-filter: blur(8px);
}
.csp-val {
  font-size: 17px; font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.csp-label {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* Branding badge bottom-right — like "stripe sessions" */
.careers-badge {
  position: absolute; bottom: 32px; right: 48px; z-index: 3;
  display: flex; align-items: center; gap: 8px;
}
.careers-badge-logo {
  font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.3px;
}
.careers-badge-logo span { color: var(--teal); }
.careers-badge-sub {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 960px) {
  .careers-content { padding: 0px; }
  .careers-title { font-size: clamp(32px,6vw,52px); letter-spacing: -1.5px; }
  .careers-badge { right: 24px; bottom: 20px; }
}
@media (max-width: 640px) {
  .careers-section { min-height: 400px !important; margin-bottom: 0 !important; margin: 0px 20px 60px 20px !important; padding: 50px 20px 50px 20px !important; border-radius: 20px !important;}
  .careers-content { padding: 0px; }
  .careers-overlay {
    background: linear-gradient(to bottom,
      rgba(7,20,50,0.90) 0%,
      rgba(7,20,50,0.80) 60%,
      rgba(7,20,50,0.60) 100%
    );
  }
  .careers-title { font-size: 36px; letter-spacing: -1px; max-width: 100%; }
  .careers-desc { font-size: 15px; max-width: 100%; }
  .careers-stats { gap: 8px; }
  .careers-badge { display: none; }
}

.perk-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 36px;
}
.perk-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.2s;
}
.perk-card:hover {
  border-color: rgba(0,228,173,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.perk-icon { color: var(--teal-dim); margin-bottom: 12px; }
.perk-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.perk-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }

.jobs-board {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 78vh;
}
.jobs-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; align-items: center;
}
.jobs-title { font-size: 19px; font-weight: 700; color: var(--navy); }
.jobs-count {
  font-size: 12px; font-weight: 700;
  color: var(--teal-dim);
  background: var(--teal-soft);
  border: 1px solid rgba(0,228,173,0.2);
  padding: 4px 10px; border-radius: 20px;
}
.job-row {
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.2s; cursor: pointer;
}
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: var(--off-white); }
.job-row:hover .jr-title { color: var(--teal-dim); }
.jr-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; transition: color 0.2s; }
.jr-meta { font-size: 12px; color: var(--muted); }
.jr-badge {
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  white-space: nowrap;
  transition: all 0.2s;
}
.job-row:hover .jr-badge { border-color: var(--teal); color: var(--teal-dim); }
.jobs-footer {
  padding: 16px 28px;
  background: var(--off-white);
  border-top: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 8px;
  margin-top: 40px;
}
.jf-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: blink 2s infinite; }
.jf-text { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════
   CONTACT / CTA
═══════════════════════════════════════ */
.cta-section {
  background: #fff;
  padding: 100px 64px;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,100,60,0.12) 0%, transparent 60%);
}
.cta-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.cta-h2 {
  font-family: var(--font-serif) !important;
  font-size: clamp(36px,4.5vw,42px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -2px; line-height: 1.1;
  margin-bottom: 16px;
}
.cta-h2 strong { font-weight: 700; }
.cta-sub { font-size: 17px; color: rgba(12,33,68,0.7); line-height: 1.7; max-width: fit-content; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: end; }
.btn-navy-lg {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 15px 32px; border-radius: 10px;
  transition: all 0.25s;
}
.btn-navy-lg:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12,33,68,0.3);
}
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: var(--navy);
  padding: 14px 28px; border-radius: 10px;
  border: 2px solid rgba(12,33,68,0.25);
  transition: all 0.25s;
}
.btn-outline-navy:hover { border-color: var(--navy); background: rgba(12,33,68,0.06); }

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.form-title {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.3px;
  margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-sans); font-size: 14px;
  color: var(--navy);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 12px 16px;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--light-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(12, 33, 68, 0.12);
}
.form-textarea { resize: vertical; min-height: 90px; }
.btn-form-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; font-weight: 700;
  color: var(--white); background: var(--navy);
  padding: 15px; border-radius: 10px;
  border: none; cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
}
.btn-form-submit:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12, 33, 68, 0.12); }



/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.visible { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }
.rv-d5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════
   "SEE ALL" LINK BUTTON
═══════════════════════════════════════ */
.link-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.link-btn:hover { color: var(--teal-dim); gap: 10px; }
.link-btn-white {
  color: var(--white);
  border-color: var(--teal);
}
.link-btn-white:hover { color: var(--teal); border-color: var(--teal); }



/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px 100px; }
  .section-wrap,.section-wrap-sm,.section-wrap-lg,
  .services-section,.about-section,.cases-section,
  .industries-section,.insights-section,.careers-section,
  .cta-section,.innovation-section,.insights-section,
  .stats-row { padding: 70px 24px !important; grid-template-columns: 1fr 1fr; }
  .stat-col { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .about-grid,.cases-grid,.ind-grid,.careers-grid,.cta-grid,.footer-top { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .ins-grid { grid-template-columns: 1fr; }
  .services-header,.cases-header,.insights-header { flex-direction: column; gap: 16px; align-items: flex-start; margin: 0 auto; max-width: 100%; }
  .services-tabs { margin: 0 auto; max-width: 100%; margin-top: 30px;}
  .form-row { grid-template-columns: 1fr; }
  .footer-top { display: block; }
  .tab-nav {display: grid; width: 100%;}
  .about-badge {display: none;}
  .jobs-board { height: 68vh; }
  .footer-mob-hide {display: none;}
  .footer-desc {max-width: 355px;}
  .stat-lbl {white-space: wrap;}
  .stat-col {padding: 48px 15px;}
  .cta-grid {gap: 30px;}
  .cta-container{width: fit-content;}
  .cta-actions {display: flex; justify-content: start;}
  .about-grid, .ind-grid {gap: 30px;}
}

/* Modal card */
.cap-modal {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 1100px; width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow:
    0 0 0 1px rgba(0,228,173,0.18), 0 32px 80px rgba(7, 32, 59, 0.1), 0 0 60px rgba(10, 200, 154, 0);
  scrollbar-width: thin;
  scrollbar-color: var(--navy) var(--off-white);
}
.cap-overlay.open .cap-modal {
  transform: translateY(0) scale(1);
}

/* Modal header image */
.cap-modal-hero {
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
}
.cap-modal-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
  transition: transform 0.6s ease;
}
.cap-modal:hover .cap-modal-hero-img { transform: scale(1.03); }
.cap-modal-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,32,59,0.1) 0%, rgba(7,32,59,0.65) 100%);
}
.cap-modal-hero-content {
  position: absolute; bottom: 24px; left: 32px; right: 32px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.cap-modal-tag {
  font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy);
  background: var(--teal);
  padding: 5px 13px; border-radius: 6px;
}
.cap-modal-icon-hero {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  backdrop-filter: blur(8px);
}

/* Modal body */
.cap-modal-body { padding: 36px 36px 40px; }
.cap-modal-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cap-modal-desc {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; margin-bottom: 30px;
  max-width: fit-content;
}

/* Image gallery inside popup */
.cap-modal-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}
.cap-gallery-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 150px;
  position: relative;
  background: var(--surface);
}
.cap-gallery-img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.85;
}
.cap-gallery-img:hover .cap-gallery-img-bg { transform: scale(1.05); }
.cap-gallery-label {
  position: absolute; bottom: 10px; left: 12px;
  font-size: 11px; font-weight: 700;
  color: #fff; letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Feature pills */
.cap-modal-features {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 30px;
}
.cap-feature-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600;
  color: var(--navy);
  background: var(--teal-soft);
  border: 1px solid rgba(0,228,173,0.22);
  padding: 7px 14px; border-radius: 100px;
}
.cap-feature-pill::before {
  content: ''; width: 5px; height: 5px;
  background: var(--teal); border-radius: 50%; flex-shrink: 0;
}

/* CTA row */
.cap-modal-cta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

/* Close button */
.cap-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  z-index: 5;
  font-size: 16px; line-height: 1;
}
.cap-close:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.1);
}

/* Scrollbar inside modal */
.cap-modal::-webkit-scrollbar { width: 4px; }
.cap-modal::-webkit-scrollbar-track { background: var(--off-white); }
.cap-modal::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

@media (max-width: 640px) {
  .cap-modal-gallery { grid-template-columns: 1fr; }
  .cap-modal-body { padding: 24px 20px 28px; }
  .cap-modal-hero { height: 160px; }
}


/* ═══════════════════════════════════════
   FROM SECONDARY — UNIQUE CLASSES
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   TESTIMONIAL BAND
═══════════════════════════════════════ */

.testimonial-section {
  background: var(--white);
  padding: 80px 64px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.testimonial-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; align-items: center;
}

.testimonial-left .sec-h2 { margin-bottom: 10px; }
.tq-mark {
  font-family: var(--font-serif) !important;
  font-size: 120px; line-height: 0.7;
  color: var(--teal);
  opacity: 0.25;
  margin-bottom: -20px;
  font-style: italic;
}

.tq-text {
  font-family: var(--font-serif) !important;
  font-size: 22px; font-style: italic; font-weight: 300;
  color: var(--navy);
  line-height: 1.6; letter-spacing: -0.3px;
  margin-bottom: 28px;
}

.tq-author {
  display: flex; align-items: center; gap: 14px;
}

.tq-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-soft2), var(--surface));
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
}

.tq-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.tq-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

.tq-dots {
  display: flex; gap: 6px; margin-top: 24px;
}

.tq-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: var(--border); transition: all 0.3s; cursor: pointer;
}

.tq-dot.active { width: 20px; background: var(--teal); }


/* ═══════════════════════════════════════
   CAREERS
═══════════════════════════════════════ */

.laq-section {
  background: var(--white);
  padding: 30px 64px;
  position: relative;
  overflow: hidden;
}

.laq-section::before {
  content: '';
  position: absolute;
  top: -220px; right: -280px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(0,228,173,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.laq-header {
  max-width: 95%;
  margin: 50px 85px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.laq-header-left { flex: 1; }


.laq-mosaic {
  max-width: 90%;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 12px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.laq-mc { position: relative; overflow: hidden; background: var(--surface); }
.laq-mc:nth-child(1) { grid-row: 1 / 3; }

.laq-mc:nth-child(1) { border-radius: 0 0 0 30px;}
.laq-mc:nth-child(3) { border-radius: 0 30px 0 0;}

.laq-mc:nth-child(4) { grid-column: 2 / 4; border-radius: 0 0 30px 0;}


.laq-mc-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

.laq-mc:hover .laq-mc-bg { transform: scale(1.05); }


.laq-mc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(12,33,68,0.72) 0%,
    rgba(12,33,68,0.12) 55%,
    transparent 100%);
}

.laq-mc-label {
  position: absolute; bottom: 16px; left: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700;
  color: #fff; letter-spacing: 0.3px;
  background: rgba(12,33,68,0.45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 5px 12px; border-radius: 6px;
}

.laq-mc-label::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%; flex-shrink: 0;
}

.laq-p1 { background-image: url('./images/office-space.webp'); }
.laq-p2 { background-image: url('./images/collab.webp'); }

.laq-p3 { background-image: url('./images/team.webp'); }
.laq-p4 { background-image: url('./images/innovation.webp'); }

.laq-p5 { background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=600&auto=format&fit=crop&q=80'); }


.laq-cards-header {
  max-width: 90%; margin: 0 auto 28px;
  display: flex; align-items: center; gap: 14px;
}

.laq-cards-header-line {
  flex: 1; height: 1px; background: var(--border-soft);
}

.laq-cards-eyebrow {
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-dim);
  white-space: nowrap;
}

.laq-grid {
  max-width: 90%;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.laq-card {
  background: var(--white);
  border: 1px solid #d9e6f7;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
  box-shadow: 0 2px 4px rgba(47, 112, 196, 0.02), 0 12px 24px rgba(82, 148, 232, 0.05), 0 32px 56px rgba(82, 148, 232, 0.05);
}

/* .laq-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dim));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
} */

.laq-card:hover {
  /* transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent; */
  box-shadow: 0 2px 4px rgba(47, 112, 196, 0.04), 0 12px 24px rgba(82, 148, 232, 0.1), 0 32px 56px rgba(82, 148, 232, 0.35);
  border-color: #d9e6f7;
  transform: translateY(-6px);
}

.laq-card:hover::before { transform: scaleX(1); }


.laq-icon {
  width: 52px; height: 52px;
  background: linear-gradient(155deg, #3381FF, #002C72);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  transition: all 0.3s;
}

/* .laq-card:hover .laq-icon { background: var(--teal); color: var(--navy); } */


.laq-card-title {
  font-size: 17px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.laq-card-desc {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}

.laq-gallery {
  background: var(--navy);
  padding: 100px 64px;
  position: relative; overflow: hidden;
}

.laq-gallery::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  right: -250px; top: -250px;
  pointer-events: none;
}

.laq-gallery-inner {
  max-width: 1240px; margin: 0 auto;
}

.laq-gallery-hdr {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 24px;
}

.laq-gallery-hdr .sec-h2 { color: var(--white); margin-bottom: 0; }
.laq-gallery-hdr .sec-h2 strong { color: var(--teal); }

.laq-gallery-nav { display: flex; gap: 10px; flex-shrink: 0; }


.laq-track {
  display: flex;
  gap: 12px;
  height: 380px;
}

.laq-slide {
  position: relative;
  border-radius: 20px; overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
  flex: 1; min-width: 72px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.laq-slide.active {
  flex: 4.5;
  box-shadow: 0 8px 48px rgba(0,228,173,0.18), 0 0 0 1.5px rgba(0,228,173,0.3);
  cursor: default;
}

.laq-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}

.laq-slide:hover .laq-slide-bg { transform: scale(1.04); }
.laq-slide.active .laq-slide-bg { transform: scale(1.02); }

.laq-slide-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(7,22,48,0.15) 0%, rgba(7,22,48,0.35) 40%, rgba(7,22,48,0.88) 100%);
  transition: background 0.4s;
}

.laq-slide.active .laq-slide-ov {
  background: linear-gradient(to bottom,
    rgba(7,22,48,0.08) 0%, rgba(7,22,48,0.25) 35%, rgba(7,22,48,0.92) 100%);
}

.laq-tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 5px; z-index: 3;
  white-space: nowrap;
  background: var(--teal); color: var(--navy);
}

.laq-collapsed {
  position: absolute; bottom: 28px; left: 0; right: 0;
  display: flex; justify-content: center;
  opacity: 1; z-index: 3; pointer-events: none;
  transition: opacity 0.3s ease 0.1s;
}

.laq-slide.active .laq-collapsed { opacity: 0; }
.laq-collapsed span {
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.7); white-space: nowrap;
  max-height: 200px; overflow: hidden; text-overflow: ellipsis;
}

.laq-slide-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px; z-index: 3;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.35s ease 0.25s, transform 0.35s ease 0.25s;
  pointer-events: none;
}

.laq-slide.active .laq-slide-content {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}

.laq-slide-meta {
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,0.5); margin-bottom: 10px;
}

.laq-slide-title {
  font-family: var(--font-sans);
  font-size: clamp(16px,1.5vw,20px);
  font-weight: 700; color: #fff;
  line-height: 1.35; letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.laq-slide-desc {
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.laq-dots {
  max-width: 1240px; margin: 22px auto 0;
  display: flex; gap: 6px; align-items: center;
}

.laq-dot {
  height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.2); width: 18px;
  transition: all 0.35s; cursor: pointer;
}

.laq-dot.active { background: var(--teal); width: 40px; }


.laq-gb1 { background-image: url('https://images.unsplash.com/photo-1541746972996-4e0b0f43e02a?w=700&auto=format&fit=crop&q=80'); }
.laq-gb2 { background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=700&auto=format&fit=crop&q=80'); }

.laq-gb3 { background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=700&auto=format&fit=crop&q=80'); }
.laq-gb4 { background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=700&auto=format&fit=crop&q=80'); }

.laq-gb5 { background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=700&auto=format&fit=crop&q=80'); }


@media (max-width: 960px) {
  .laq-section,
  .laq-gallery,
  .laq-grid { grid-template-columns: repeat(2,1fr); }
  .laq-stats { grid-template-columns: repeat(2,1fr); }
  .laq-stat:nth-child(2) { border-right: none; }
  .laq-stat:nth-child(1),
  .laq-stat:nth-child(2) { border-bottom: 1px solid var(--border-soft); }
  .laq-gallery-hdr { flex-direction: column; align-items: flex-start; }
  .laq-track { height: 300px; gap: 8px; }
  .laq-slide { min-width: 50px; }
  .laq-header { flex-direction: column; align-items: flex-start; margin: 50px 0px; }
  .laq-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 180px 160px; max-width: 100%;}
  .laq-cards-header {max-width: 100%;}
  .laq-mc:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .laq-mc:nth-child(4) { grid-column: 1 / 3; }
}

@media (max-width: 640px) {
  .laq-grid { grid-template-columns: 1fr; max-width: 100%; }
  .laq-stats { grid-template-columns: 1fr 1fr; }
  .laq-track { height: 260px; }
  .laq-slide-content { padding: 20px; }
  .laq-slide-desc { -webkit-line-clamp: 2; }
  .laq-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
  .laq-mc:nth-child(1),
  .laq-mc:nth-child(4) { grid-column: auto; grid-row: auto; }
   .laq-mc:nth-child(1) {  }
   .laq-section {padding: 10px 64px;}
   .laq-mc {
    border-radius: 20px !important;
   }
}

.careers-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
}

@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-end { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px 100px; }
  .section-wrap,.section-wrap-sm,.section-wrap-lg,
  .services-section,.about-section,.cases-section,
  .industries-section,.insights-section,.careers-section,
  .cta-section,.testimonial-section,.insights-section,.laq-section,
  footer { padding-left: 24px; padding-right: 24px; }
  .stats-row { padding: 0 24px; grid-template-columns: 1fr 1fr; }
  .stat-col { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .about-grid,.cases-grid,.ind-grid,.careers-grid,.cta-grid,.testimonial-inner,.footer-top { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .ins-grid { grid-template-columns: 1fr; }
  .services-header,.cases-header,.insights-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { display: block; }
  .tab-nav {display: grid; width: 100%;}
  .about-badge {display: none;}
  .jobs-board { height: 68vh; }
  .footer-mob-hide {display: none;}
  .footer-desc {max-width: 355px;}
  .nav-links,
  .nav-end {
    display: none;
  }
  .stat-lbl {white-space: wrap;}
  .stat-col {padding: 48px 15px;}
  .laq-mc {
    border-radius: 20px !important;
  }
}

/* ═══════════════════════════════════════
   GLOBE / REGION DROPDOWN — DESKTOP
═══════════════════════════════════════ */

.job-post-card {
  display: grid;
  justify-content: space-around;
  height: auto;
}

.job-post-card svg{
  width: 0.8em;
  height: min-content;
}

.svc-card-career{
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* ══════════════════════════════════════
     CAREERS HERO + BREADCRUMB
══════════════════════════════════════ */

.careers-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.267);
    z-index: 1;
}

.careers-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-3);
  z-index: 2;
  /* margin-top: 84px; */
}

/* .careers-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/bg-video.mp4');
  background-size: cover;
  background-position: center right;
  z-index: 0;
  opacity: 0.85;
} */

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      
    object-position: left center;
    z-index: 0;
    opacity: 0.85;
}

.industrial-bg{
  position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      
    object-position: bottom;
    z-index: 0;
    opacity: 0.85;
}

.careers-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4, 9, 26, 0.82) 0%,
    rgba(4, 9, 26, 0.55) 50%,
    rgba(4, 9, 26, 0.10) 100%
  );
  z-index: 1;
}

.careers-hero-glow {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0,228,173,0.13) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.careers-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 95%;
  margin: 0 auto;
  width: 100%;
  padding: 120px 100px 50px;
}

.careers-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.careers-breadcrumb a,
.careers-breadcrumb span {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-sans);
}

.careers-breadcrumb a:hover { color: var(--teal); }


.careers-breadcrumb .bc-sep {
  color: rgba(255,255,255,0.22);
  font-size: 11px;
  line-height: 1;
  /* chevron › */
  display: flex;
  align-items: center;
}

.careers-breadcrumb .bc-sep svg {
  width: 12px; height: 12px;
  stroke: rgba(255,255,255,0.22);
  stroke-width: 2.5;
  fill: none;
}

.careers-breadcrumb .bc-current {
  color: var(--teal);
  font-weight: 600;
}

.careers-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,228,173,0.10);
  border: 1px solid rgba(0,228,173,0.28);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.careers-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: bc-pulse 2s ease-in-out infinite;
}

.careers-hero-title {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.10;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  max-width: 700px;
}

.careers-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--teal) 0%, #60efca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.careers-hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
  max-width: 800px;
  margin-bottom: 40px;
  font-family: var(--font-sans);
}

.careers-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.careers-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  letter-spacing: 0.1px;
  transition: all 0.22s;
  text-decoration: none;
}

.careers-btn-primary:hover {
  background: var(--teal-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,228,173,0.30);
}

.careers-btn-primary svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s;
}

.careers-btn-primary:hover svg { transform: translateX(3px); }


.careers-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: all 0.22s;
  text-decoration: none;
}

.careers-btn-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  .careers-hero-inner { padding: 100px 25px 20px; }
  .careers-stat-num { font-size: 22px; }
  .careers-hero { min-height: 45vh; }
}

@media (max-width: 480px) {
  .careers-hero-cta { flex-direction: column; align-items: flex-start; }
  .careers-btn-primary, .careers-btn-ghost { width: 100%; justify-content: center; }
}

.svc-desc-career {
  display: flex;
  gap: 5px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.svc-desc-career>svg {
  position: relative;
  top: 2px;
  width: 1.5em;
}

.svc-link-career {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dim);
  transition: gap 0.2s;
  margin-top: 10px;
}

.globe-flag-career {
  font-size: 19px; 
  line-height: 1;
  width: 26px; 
  flex-shrink: 0; 
  text-align: center;
  position: relative;
  top: 2px;
  left: 2px;
}

.location-career svg {
  gap: 10px;
}

.location-career svg {
  width: 1.3em !important;
  height: 1em;
  top: 5px;
  position: relative;
  right: 0px;
}

/* ═══════════════════════════════════════
   MERGED FROM India_style.css
   (unique classes/rules not already present in style.css)
═══════════════════════════════════════ */

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dim));
  z-index: 9998;
  width: 0%;
  transition: width 0.1s;
}

/* ── ACTIVE NAV LINK STATE ── */
.active-menu-link {
  font-weight: 600;
  border-bottom: 2px solid #fff;
  border-radius: 0;
}
nav.scrolled .active-menu-link { border-color: var(--teal); color: var(--navy) !important; }

/* ── ANIMATION (used by careers-hero-eyebrow::before but previously undefined) ── */
@keyframes bc-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,228,173,0.4)} 50%{box-shadow:0 0 0 6px rgba(0,228,173,0)} }

/* ══════════════════════════════════════
   INDIA HERO
══════════════════════════════════════ */
.india-hero {
  position: relative;
  min-height: 50vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: #04091a;
}

.india-hero-bg {
  position: absolute; inset: 0;
  /* background-image: url('./images/experienced.jpg'); */
  background-size: cover;
  background-position: center right;
  opacity: 0.38;
  z-index: 0;
  transition: transform 10s ease;
}
.india-hero:hover .india-hero-bg { transform: scale(1.04); }

/* Left-to-right gradient — keeps left dark for text, lets image show right */
.india-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4, 9, 26, 0.95) 0%,
    rgba(4, 9, 26, 0.72) 48%,
    rgba(4, 9, 26, 0.15) 100%
  );
  z-index: 1;
}

/* Ambient teal glow bottom-left */
.india-hero-glow {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,228,173,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Map/circle decoration top-right */
.india-hero-ring {
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(0,228,173,0.08);
  z-index: 1;
  pointer-events: none;
}
.india-hero-ring::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(0,228,173,0.06);
}

.india-hero-inner {
  position: relative; z-index: 2;
  max-width: 95%; margin: 0 auto; width: 100%;
  padding: 120px 100px 50px;
}

/* Breadcrumb */
.india-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.india-breadcrumb a,
.india-breadcrumb span {
  font-size: 12.5px; font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.india-breadcrumb a:hover { color: var(--teal); }
.india-breadcrumb .bc-sep { color: rgba(255,255,255,0.2); font-size: 11px; }
.india-breadcrumb .bc-current { color: var(--teal); font-weight: 600; }

/* Eyebrow pill */
.india-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,228,173,0.10);
  border: 1px solid rgba(0,228,173,0.28);
  color: var(--teal);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.india-hero-eyebrow .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  animation: bc-pulse 2s ease-in-out infinite;
}

/* Flag inline */
.india-hero-eyebrow .flag-in { font-size: 15px; line-height: 1; }

.india-hero-title {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  max-width: 760px;
}
.india-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--teal) 0%, #60efca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.india-hero-sub {
  font-size: 16px; font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 850px;
  margin-bottom: 44px;
}

.india-hero-cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-india-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--navy);
  font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 8px;
  transition: all 0.22s;
}
.btn-india-primary:hover {
  background: var(--teal-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,228,173,0.35);
}
.btn-india-primary svg { width:14px; height:14px; stroke:currentColor; stroke-width:2.5; fill:none; }
.btn-india-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 600;
  padding: 13px 24px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.22s;
}
.btn-india-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff; background: rgba(255,255,255,0.06);
}

/* Office stat pills row */
.india-hero-stats {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.india-stat-pill {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 12px 20px; border-radius: 12px;
  transition: border-color 0.2s;
}
.india-stat-pill:hover { border-color: rgba(0,228,173,0.3); }
.isp-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(0,228,173,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.isp-icon svg { width:16px; height:16px; stroke:currentColor; stroke-width:2; fill:none; }
.isp-val { font-size: 18px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 2px; }
.isp-label { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════
   WHAT WE DO — INDIA
══════════════════════════════════════ */
.india-services-section {
  background: var(--off-white);
  padding: 96px 80px;
}
.india-services-header {
  max-width: 1240px; margin: 0 auto 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.india-svc-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Service card — matches existing .svc-card exactly */
.india-svc-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.india-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dim));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.india-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,228,173,0.2);
}
.india-svc-card:hover::before { opacity: 1; transform: scaleX(1); }

.india-svc-icon {
  width: 44px; height: 44px;
  background: var(--teal-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dim);
  margin-bottom: 18px;
  transition: all 0.3s;
}
.india-svc-card:hover .india-svc-icon {
  background: var(--teal);
  color: var(--navy);
}
.india-svc-icon svg { width:20px; height:20px; stroke:currentColor; stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round; }

.india-svc-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--teal-dim);
  margin-bottom: 8px;
  opacity: 0.8;
}
.india-svc-title {
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.india-svc-desc {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.7; margin-bottom: 20px;
}
.india-svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--teal-dim);
  transition: gap 0.2s;
}
.india-svc-card:hover .india-svc-link { gap: 10px; }

/* ══════════════════════════════════════
   NEWS SLIDER — INDIA REGION
   (reuses all existing .nsl-* styles from style.css)
══════════════════════════════════════ */
/* India-specific header override */
.india-news-section {
  background: var(--navy);
  padding: 96px 64px;
  position: relative; overflow: hidden;
}
.india-news-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,228,173,0.05);
  pointer-events: none;
}
.india-news-bg-ring-1 { width: 700px; height: 700px; top:-300px; right:-200px; }
.india-news-bg-ring-2 { width: 400px; height: 400px; bottom:-150px; left:-100px; }

.india-news-header {
  max-width: 95%;
  margin: 0 85px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.india-news-slider-nav {
  display: flex; gap: 10px; align-items: center;
}
.india-nsl-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #00e4ad;
  background: #ffffff00;
  color: #00e4ad;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(10,10,46,0.06), 0 2px 8px rgba(10,10,46,0.05);
  transition: background-color .2s ease, border-color .2s ease, transform .15s ease, color .2s ease;
}
.india-nsl-btn:hover { background: #00E4AD30;  border-color: #00E4AD;  color: #fff; }
.india-nsl-btn svg { width:16px; height:16px; stroke:currentColor; stroke-width:2.5; fill:none; stroke-linecap:round; stroke-linejoin:round; pointer-events:none; }

/* Slider track — inherits .nsl-slide from style.css */
.india-nsl-track {
  max-width: 90%; margin: 0 auto;
  display: flex; gap: 12px;
  height: 480px; position: relative;
}
.india-nsl-track .nsl-slide { flex: 1; min-width: 80px; }
.india-nsl-track .nsl-slide.active { flex: 4.5; }

/* Dots */
.india-nsl-dots {
  max-width: 90%;
  margin: 30px auto 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Mobile override for India slider */
@media (max-width: 768px) {
  .india-news-section { padding: 56px 0 70px; }
  .india-news-header { padding: 0 20px; flex-direction: column; gap: 14px; align-items: flex-start; margin-bottom: 28px; }
  .india-nsl-track {
    height: auto !important; gap: 0 !important;
    overflow-x: scroll; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 0 20px; padding-right: 40px; max-width: 100% !important;
    margin-left: 20px;
  }
  .india-nsl-track::-webkit-scrollbar { display: none; }
  .india-nsl-track .nsl-slide {
    flex: 0 0 calc(100vw - 56px) !important; min-width: 0 !important;
    height: 420px !important; scroll-snap-align: start;
    border-radius: 18px; margin-right: 12px;
  }
  .india-nsl-track .nsl-slide:last-child { margin-right: 0; }
  .india-nsl-track .nsl-collapsed-label { display: none !important; }
  .india-nsl-track .nsl-content { opacity: 1 !important; transform: none !important; pointer-events: auto !important; padding: 22px 20px 24px; }
  .india-nsl-dots { padding: 0 20px; margin-top: 18px; justify-content: center; max-width: 100% !important; }
}

/* Standard/Large Laptops (1024px to 1366px) */
@media screen and (max-width: 1366px) {
  .offerings{
    position: fixed;
    top: 50px; /* exactly nav height */
    left: 50px !important; right: 0;
    background: var(--white);
    border-top: 2px solid var(--navy);
    border-radius: 10px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 16px 48px rgba(12,33,68,0.10), 0 4px 12px rgba(12,33,68,0.06);
    padding: 36px 30px 40px;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
    z-index: 890;
    pointer-events: none;
    width: 700px;}
}

/* ══════════════════════════════════════
   SKILLS SECTION — inherits innovation-section from style.css
   Just needs section wrapper
══════════════════════════════════════ */
.india-skills-section { background: var(--white); }

/* ══════════════════════════════════════
   OFFICE LOCATIONS STRIP
══════════════════════════════════════ */
.india-offices {
  background: var(--navy);
  padding: 56px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.india-offices-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 64px; align-items: center;
}
.india-offices-left .sec-h2-light { font-size: clamp(24px,3vw,36px); margin-bottom: 10px; }
.india-offices-left p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.india-offices-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.india-office-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 22px 20px;
  transition: all 0.2s;
}
.india-office-card:hover {
  background: rgba(0,228,173,0.07);
  border-color: rgba(0,228,173,0.2);
  transform: translateY(-2px);
}
.ioc-flag { font-size: 24px; margin-bottom: 12px; }
.ioc-city { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ioc-state { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.ioc-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,228,173,0.1);
  border: 1px solid rgba(0,228,173,0.2);
  padding: 4px 10px; border-radius: 20px;
}
.ioc-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); animation: blink 2s infinite; }

/* ══════════════════════════════════════
   INDIA RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .india-hero-inner { padding: 100px 25px 20px; }
  .india-services-section { padding: 72px 32px; }
  .india-svc-grid { grid-template-columns: 1fr 1fr; }
  .india-offices { padding: 56px 32px; }
  .india-offices-inner { grid-template-columns: 1fr; gap: 32px; }
  .india-offices-grid { grid-template-columns: 1fr 1fr; }
  .india-services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .india-news-header { flex-direction: column; gap: 16px; align-items: flex-start; margin: 0px 0px 20px 0px;}
  .intro-image-wrap {display: none;}
}
@media (max-width: 768px) {
  .india-hero-stats { flex-direction: column; gap: 10px; }
  .india-stat-pill { flex: 1; }
  .india-services-section { padding: 56px 20px; }
  .india-svc-grid { grid-template-columns: 1fr; }
  .india-offices { padding: 48px 20px; }
  .india-offices-grid { grid-template-columns: 1fr; }
  #cursor { display: none; }
  .india-hero {min-height: 45vh;}
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer-link-mbl {display: flex; width: 60%;} 
footer {
  background: var(--navy);
  padding: 80px 100px 40px;
}
.link-2, .footer-mob-hide, .link-3 {width: 33%;}
.footer-inner { max-width: 94%; margin: 0 auto; }
.footer-top {
  display: flex; 
  gap: 60px; margin-bottom: 64px;
}
.footer-brand {width: 36%;}

.footer-brand .logo-hex-footer {
  width: 38px; 
  height: 38px;
  background: var(--teal);
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  position: relative;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 14px;
}
.footer-logo-text {
  font-size: 18px; font-weight: 800;
  color: var(--white); letter-spacing: -0.4px;
}
.footer-logo-text sup {
  font-size: 9px; font-weight: 700;
  color: var(--teal); vertical-align: super;
}
.footer-desc {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 355px; margin: 16px 0 24px;
  font-family: var(--font-sans);
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
}
.footer-col-head {
  font-size: 14px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255);
  margin-bottom: 20px;
  font-family: var(--font-serif);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  font-family: var(--font-sans);
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; white-space: nowrap !important; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal); }
/* FOOTER */
.mobile-nav-footer {
  margin-top: 20px;
}
.mobile-top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-logo-img {
    height: 50px; 
    width: auto;
    display: block;
  }

.mobile-flag-top {
  width: 40px;
  height: auto;
  opacity: 0.85;
  transition: 0.25s;
}

.mobile-flag-top:hover {
  transform: scale(1.1);
  opacity: 1;
}

.mobile-nav-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* CTA centered */
.mobile-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Flag below */
.mobile-flag {
  width: 28px;
  height: auto;
  opacity: 0.85;
}

.mobile-flag:hover {
  transform: scale(1.1);
  opacity: 1;
}
/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  footer { 
    /* padding-left: 24px;  */
    /* padding-right: 24px; */
    padding: 50px 20px 20px 20px !important;
    margin: 0px;
    border-radius: 0px;
  }
  .footer-top {
    margin-bottom: 35px;
  }
  .about-grid,.cases-grid,.ind-grid,.careers-grid,.cta-grid,.footer-top { grid-template-columns: 1fr; }
  .footer-top { display: block; }
  .tab-nav {display: grid; width: 100%;}
  .footer-mob-hide {display: none;}
  .footer-desc {max-width: 355px;}
}
@media (max-width: 640px) {
  .footer-link-mbl {display: flex; justify-content: space-between; width: 100%;}
  .footer-brand {width: 100%;}
  .link-2{width: 60%;}
  .link-3{width: 40%;}
}
