/* ============================================================
   QUALIVARA CONSULTING PVT. LTD.
   Main Stylesheet — styles.css
   Version: 1.0  |  Brand: Option C Editorial Wordmark
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --navy:     #0B1F3A;
  --navy-mid: #132A4E;
  --teal:     #00897B;
  --teal-lt:  #00BFA5;
  --gold:     #C9A84C;
  --gold-lt:  #E8C96A;
  --cream:    #F7F5F0;
  --white:    #FFFFFF;
  --slate:    #4A5568;
  --slate-lt: #718096;
  --border:   rgba(11, 31, 58, 0.10);
  --ff-h:     'Playfair Display', Georgia, serif;
  --ff-b:     'DM Sans', sans-serif;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --r:        4px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-b);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(28px) }  to { opacity: 1; transform: none } }
@keyframes fadeLeft  { from { opacity: 0; transform: translateX(-32px) } to { opacity: 1; transform: none } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(32px) }  to { opacity: 1; transform: none } }
@keyframes scaleIn   { from { opacity: 0; transform: scale(0.94) }       to { opacity: 1; transform: none } }
@keyframes pulse     { 0%,100% { box-shadow: 0 0 0 0 rgba(0,191,165,.5) } 50% { box-shadow: 0 0 0 6px rgba(0,191,165,0) } }
@keyframes ticker    { from { transform: translateX(0) }  to { transform: translateX(-50%) } }
@keyframes marquee-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.anim-up    { animation: fadeUp    0.7s var(--ease) both; }
.anim-left  { animation: fadeLeft  0.7s var(--ease) both; }
.anim-right { animation: fadeRight 0.7s var(--ease) both; }
.anim-scale { animation: scaleIn   0.7s var(--ease) both; }
.d0 { animation-delay: 0s }    .d1 { animation-delay: .08s }
.d2 { animation-delay: .16s }  .d3 { animation-delay: .24s }
.d4 { animation-delay: .32s }  .d5 { animation-delay: .40s }
.d6 { animation-delay: .48s }

/* ── NAVBAR ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(11,31,58,.06);
}
.nav-logo { display: flex; align-items: center; line-height: 1; }
.nav-logo svg { display: block; }
.nav-logo .wm-full  { display: block; }
.nav-logo .wm-short { display: none; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--slate);
  position: relative; padding-bottom: 2px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--teal);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 9px 22px; border-radius: var(--r);
  font-size: 13px !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--teal) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-mob {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-mob span { width: 24px; height: 1.5px; background: var(--navy); }

.nav-drawer {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 32px 5%; flex-direction: column; gap: 20px;
  border-top: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 18px; font-weight: 500; color: var(--navy);
  padding: 10px 0; border-bottom: 1px solid var(--border);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--navy);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-panel {
  position: absolute; right: -5%; top: 0; bottom: 0; width: 44%;
  background: var(--teal); opacity: .07;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-arc {
  position: absolute; right: 8%; bottom: -100px;
  width: 500px; height: 500px;
  border: 1.5px solid rgba(201,168,76,.18); border-radius: 50%; pointer-events: none;
}
.hero-arc::before {
  content: ''; position: absolute; inset: 48px;
  border: 1.5px solid rgba(201,168,76,.10); border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 5%; max-width: 1280px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-top: 100px; margin: 0 auto;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,137,123,.15);
  border: 1px solid rgba(0,191,165,.25);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-lt); animation: pulse 2s infinite;
}
.hero-pill span {
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-lt);
}

.hero-h1 {
  font-family: var(--ff-h);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700; line-height: 1.08;
  color: var(--white); letter-spacing: -1px; margin-bottom: 24px;
}
.hero-h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.72;
  color: rgba(255,255,255,.65); max-width: 480px; margin-bottom: 42px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--teal); color: var(--white);
  padding: 14px 30px; border-radius: var(--r);
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-primary:hover {
  background: var(--teal-lt); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,137,123,.35);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.80);
  padding: 14px 30px; border-radius: var(--r);
  font-size: 14px; font-weight: 400;
  transition: border-color .25s, color .25s, background .25s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.55); color: var(--white);
  background: rgba(255,255,255,.06);
}

.hero-stats {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; backdrop-filter: blur(8px);
  padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.hero-stat-num {
  font-family: var(--ff-h); font-size: 44px; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.50); line-height: 1.4; }
.hero-stat-divider { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; }

.hero-countries { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }
.hero-countries-label {
  font-size: 10.5px; font-weight: 500; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(255,255,255,.30); margin-bottom: 12px;
}
.hero-country-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-country-tag {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  padding: 5px 11px; border-radius: 100px; font-size: 12px; color: rgba(255,255,255,.65);
}
.cdot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-lt); }

/* ── TICKER ───────────────────────────────────────────────── */
.ticker {
  background: var(--navy); padding: 13px 0;
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ticker-track { display: inline-flex; animation: ticker 32s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 12.5px; font-weight: 400; letter-spacing: .8px;
  color: rgba(255,255,255,.45); padding: 0 32px;
}
.ticker-item b { color: var(--gold); font-weight: 400; }

/* ── SECTION UTILITY ──────────────────────────────────────── */
.section { padding: 96px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal); }
.eyebrow-lt { color: var(--teal-lt) !important; }
.eyebrow-lt::before { background: var(--teal-lt) !important; }

.sh2 {
  font-family: var(--ff-h);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 600; line-height: 1.15;
  color: var(--navy); letter-spacing: -.5px; margin-bottom: 14px;
}
.sh2-lt  { color: var(--white) !important; }
.ssub    { font-size: 15.5px; font-weight: 300; line-height: 1.72; color: var(--slate); max-width: 540px; }
.ssub-lt { color: rgba(255,255,255,.55) !important; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img {
  border-radius: 10px; overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(140deg, var(--navy) 0%, #0f2d52 50%, #163e6e 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-inner  { text-align: center; padding: 40px; }
.about-img-icon   { font-size: 60px; margin-bottom: 14px; display: block; }
.about-img-heading {
  font-family: var(--ff-h); font-size: 22px; font-weight: 500;
  color: var(--white); line-height: 1.35; margin-bottom: 8px;
}
.about-img-sub {
  font-size: 12px; color: rgba(255,255,255,.45);
  letter-spacing: 1.8px; text-transform: uppercase;
}
.about-float {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--teal); border-radius: 10px; padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(0,137,123,.28);
}
.about-float-num   { font-family: var(--ff-h); font-size: 34px; font-weight: 700; color: var(--white); line-height: 1; }
.about-float-label { font-size: 12px; color: rgba(255,255,255,.70); margin-top: 4px; line-height: 1.35; }
.about-float2 {
  position: absolute; top: -24px; left: -24px;
  background: var(--gold); border-radius: 10px; padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.about-float2-num   { font-family: var(--ff-h); font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1; }
.about-float2-label { font-size: 11px; color: rgba(11,31,58,.65); margin-top: 3px; line-height: 1.3; }

.about-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-pillar {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: 8px; padding: 18px 20px;
  border-left: 3px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.about-pillar:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.p-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(0,137,123,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.p-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.p-text p  { font-size: 13px; color: var(--slate); line-height: 1.55; }

.vm-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.vm-card { background: var(--navy); border-radius: 10px; padding: 28px 26px; }
.vm-card-label {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal-lt); margin-bottom: 10px;
}
.vm-card-text          { font-size: 14px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,.72); }
.vm-card-text strong   { color: var(--gold); font-weight: 500; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services { background: var(--white); }
.svc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 40px; }
.svc-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.svc-card {
  background: var(--cream); border-radius: 10px; padding: 34px 30px;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s;
  cursor: default;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(11,31,58,.10); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-card.feat { background: var(--navy); border-color: transparent; }
.svc-card.feat::before { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.svc-card.feat .svc-name  { color: var(--white); }
.svc-card.feat .svc-desc  { color: rgba(255,255,255,.58); }
.svc-card.feat .svc-icon  { background: rgba(255,255,255,.10); }
.svc-card.feat .bul       { color: rgba(255,255,255,.48); }
.svc-card.feat .bul::before { color: var(--gold-lt); }
.svc-card.feat .svc-n     { color: rgba(255,255,255,.04); }

.svc-n    {
  font-family: var(--ff-h); font-size: 52px; font-weight: 700;
  color: rgba(11,31,58,.06); line-height: 1;
  position: absolute; top: 18px; right: 22px;
}
.svc-icon {
  width: 50px; height: 50px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 23px; margin-bottom: 20px;
}
.svc-name {
  font-family: var(--ff-h); font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3;
}
.svc-desc  { font-size: 13.5px; line-height: 1.65; color: var(--slate); margin-bottom: 20px; }
.buls      { display: flex; flex-direction: column; gap: 7px; }
.bul       { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--slate-lt); line-height: 1.4; }
.bul::before { content: '—'; color: var(--teal); flex-shrink: 0; font-size: 11px; margin-top: 1px; }
.svc-more  { display: flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 12px; font-weight: 600; color: var(--teal); cursor: pointer; transition: gap .2s; }
.svc-card.feat .svc-more { color: var(--gold-lt); }
.svc-more:hover { gap: 10px; }

/* ── PROCESS STRIP ────────────────────────────────────────── */
.process { background: var(--navy); padding: 72px 5%; }
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 52px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1.5px; background: rgba(255,255,255,.10); z-index: 0;
}
.pstep { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.pstep-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--ff-h); font-size: 20px; font-weight: 700; color: var(--gold);
  transition: background .3s, border-color .3s;
}
.pstep:hover .pstep-num { background: rgba(0,137,123,.25); border-color: var(--teal-lt); }
.pstep-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.pstep-desc  { font-size: 12px; color: rgba(255,255,255,.40); line-height: 1.55; }

/* ── INDUSTRIES ───────────────────────────────────────────── */
.industries { background: var(--cream); }
.ind-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 40px; }
.ind-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card {
  background: var(--white); border-radius: 10px; padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.ind-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(11,31,58,.09); border-color: rgba(0,137,123,.25); }
.ind-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.ind-name { font-family: var(--ff-h); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.ind-desc { font-size: 13px; color: var(--slate); line-height: 1.62; margin-bottom: 16px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ind-tag  { font-size: 11px; padding: 3px 9px; background: rgba(0,137,123,.08); border: 1px solid rgba(0,137,123,.18); border-radius: 100px; color: var(--teal); }

/* ── PROJECTS ─────────────────────────────────────────────── */
.projects    { background: var(--white); }
.proj-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 40px; }
.kpi-bar     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(11,31,58,.08); border-radius: 10px; overflow: hidden; margin-bottom: 44px; }
.kpi         { background: var(--cream); padding: 28px 24px; text-align: center; }
.kpi-num     { font-family: var(--ff-h); font-size: 36px; font-weight: 700; color: var(--teal); margin-bottom: 6px; line-height: 1; }
.kpi-label   { font-size: 12.5px; color: var(--slate); line-height: 1.35; }

.proj-table  { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.proj-head   {
  display: grid; grid-template-columns: 44px 1.8fr 1.8fr 2fr 1.2fr 1fr;
  gap: 14px; padding: 13px 22px; background: var(--navy);
  font-size: 10.5px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,.40);
}
.proj-row {
  display: grid; grid-template-columns: 44px 1.8fr 1.8fr 2fr 1.2fr 1fr;
  gap: 14px; padding: 16px 22px; align-items: center;
  border-bottom: 1px solid var(--border); transition: background .2s;
}
.proj-row:last-child { border-bottom: none; }
.proj-row:hover { background: rgba(0,137,123,.04); }
.pn       { font-size: 12px; font-weight: 600; color: var(--slate-lt); font-family: var(--ff-h); }
.pclient  { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.pclient small { display: block; font-size: 10.5px; color: var(--slate-lt); font-weight: 400; }
.pmfr     { font-size: 13px; color: var(--slate); }
.pscope   { font-size: 11.5px; color: var(--slate-lt); line-height: 1.45; }
.psize    { font-size: 13px; font-weight: 700; color: var(--teal); font-family: var(--ff-h); }
.pcountry { display: inline-flex; align-items: center; gap: 5px; background: var(--cream); padding: 4px 10px; border-radius: 100px; font-size: 11.5px; color: var(--slate); }

/* ── WHY US ───────────────────────────────────────────────── */
.why       { background: var(--cream); }
.why-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.why-items { display: flex; flex-direction: column; }
.why-item  {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .25s;
}
.why-item:hover { padding-left: 8px; }
.why-item:first-child { padding-top: 0; }
.wnum { font-family: var(--ff-h); font-size: 13px; font-weight: 700; color: var(--teal); flex-shrink: 0; padding-top: 2px; min-width: 28px; }
.wtext h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.wtext p  { font-size: 13.5px; color: var(--slate); line-height: 1.62; }

.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wcard {
  background: var(--white); border-radius: 10px; padding: 26px 22px;
  border: 1px solid var(--border); text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.wcard:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.07); }
.wcard.dark  { background: var(--navy); grid-column: 1 / -1; }
.wcard-icon  { font-size: 32px; margin-bottom: 12px; }
.wcard-label { font-size: 12.5px; color: var(--slate); margin-bottom: 6px; }
.wcard.dark .wcard-label { color: rgba(255,255,255,.50); }
.wcard-val   { font-family: var(--ff-h); font-size: 30px; font-weight: 700; color: var(--teal); }
.wcard.dark .wcard-val { color: var(--gold); }

/* ── CLIENT TRUST CAROUSEL ────────────────────────────────── */
.trust       { background: #060F1C; padding: 80px 5%; overflow: hidden; }
.trust-inner { max-width: 1280px; margin: 0 auto; }

.trust-header    { text-align: center; margin-bottom: 56px; }
.trust-header h3 { font-family: var(--ff-h); font-size: clamp(22px, 3vw, 34px); font-weight: 600; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.trust-header p  { font-size: 15px; color: rgba(255,255,255,.42); line-height: 1.70; max-width: 580px; margin: 0 auto; }

.trust-rule       { display: flex; align-items: center; gap: 20px; margin-bottom: 44px; }
.trust-rule-line  { flex: 1; height: 1px; background: rgba(255,255,255,.07); }
.trust-rule-label { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.22); white-space: nowrap; }

.marquee-outer {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.ccard {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 5px; padding: 20px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; min-width: 190px;
  cursor: default;
  transition: background .3s, border-color .3s, transform .3s;
  position: relative; overflow: hidden;
}
.ccard::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.ccard:hover { background: rgba(255,255,255,.055); border-color: rgba(0,191,165,.20); transform: translateY(-3px); }
.ccard:hover::after { transform: scaleX(1); }

.ccard-badge {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-h); font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 4px; flex-shrink: 0;
}
.ccard-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.2; }
.ccard-type { font-size: 10.5px; font-weight: 400; color: rgba(255,255,255,.30); letter-spacing: .8px; text-transform: uppercase; margin-top: 1px; }
.ccard-cap  {
  display: inline-block; margin-top: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: .5px;
  color: var(--teal-lt); background: rgba(0,191,165,.10);
  border: 1px solid rgba(0,191,165,.18);
  border-radius: 100px; padding: 2px 8px;
}

.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.05); border-radius: 10px; overflow: hidden; margin-top: 52px; }
.tstat       { background: #060F1C; padding: 26px 20px; text-align: center; }
.tstat-num   { font-family: var(--ff-h); font-size: 28px; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 5px; }
.tstat-label { font-size: 11.5px; color: rgba(255,255,255,.30); line-height: 1.4; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(130deg, var(--teal) 0%, #006B5E 100%);
  padding: 80px 5%; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px; border: 2px solid rgba(255,255,255,.07); border-radius: 50%;
}
.cta-band::after {
  content: ''; position: absolute; right: 0; top: -30px;
  width: 220px; height: 220px; border: 2px solid rgba(255,255,255,.04); border-radius: 50%;
}
.cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1;
}
.cta-text h2 { font-family: var(--ff-h); font-size: clamp(24px, 3vw, 38px); font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.cta-text p  { font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.6; }
.cta-btns    { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.btn-white   { background: var(--white); color: var(--teal); padding: 14px 30px; border-radius: var(--r); font-size: 14px; font-weight: 600; transition: transform .2s, box-shadow .2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-ghost   { border: 1.5px solid rgba(255,255,255,.35); color: var(--white); padding: 14px 30px; border-radius: var(--r); font-size: 14px; transition: border-color .2s, background .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,.70); background: rgba(255,255,255,.08); }

/* ── CAREERS ──────────────────────────────────────────────── */
.careers       { background: var(--cream); }
.careers-grid  { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.careers-info  { position: sticky; top: 100px; }
.cv-list       { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.cv-item       { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--slate); }
.cv-item::before {
  content: '✓'; width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(0,137,123,.10); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--teal); font-weight: 700;
}
.culture-card  { background: var(--navy); border-radius: 10px; padding: 28px; margin-top: 28px; }
.culture-title { font-family: var(--ff-h); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.culture-body  { font-size: 13px; color: rgba(255,255,255,.50); line-height: 1.65; }
.culture-body strong { color: var(--gold-lt); font-weight: 500; }

.job-cards { display: flex; flex-direction: column; gap: 14px; }
.jcard {
  background: var(--white); border-radius: 10px; padding: 26px 28px;
  border: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
  transition: box-shadow .3s, border-color .3s;
}
.jcard:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); border-color: rgba(0,137,123,.30); }
.jtitle  { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.jmeta   { display: flex; gap: 8px; flex-wrap: wrap; }
.jtag    { font-size: 11.5px; padding: 3px 10px; border-radius: 100px; background: var(--cream); color: var(--slate); }
.jtag.hl { background: rgba(0,137,123,.10); color: var(--teal); }
.jdesc   { font-size: 12.5px; color: var(--slate-lt); line-height: 1.5; margin-top: 10px; }
.japply  { flex-shrink: 0; background: var(--navy); color: var(--white); padding: 10px 20px; border-radius: var(--r); font-size: 13px; font-weight: 500; white-space: nowrap; transition: background .2s; }
.japply:hover { background: var(--teal); }
.jcard.dashed { border: 1.5px dashed rgba(0,137,123,.25); background: rgba(0,137,123,.02); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact      { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; margin-top: 52px; }
.cinfo        { display: flex; flex-direction: column; gap: 28px; }
.citem        { display: flex; gap: 16px; align-items: flex-start; }
.cicon        {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.cilabel      { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-lt); margin-bottom: 4px; font-weight: 500; }
.cival        { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.55; }
.cival a      { color: rgba(255,255,255,.72); transition: color .2s; }
.cival a:hover { color: var(--teal-lt); }

.cmap         { margin-top: 28px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 24px; display: flex; align-items: center; gap: 16px; }
.cmap-icon    { font-size: 32px; }
.cmap-text    { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.55; }
.cmap-text strong { display: block; font-size: 14px; color: rgba(255,255,255,.70); font-weight: 500; margin-bottom: 4px; }

.cform        { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 38px; }
.cform-title  { font-family: var(--ff-h); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.cform-sub    { font-size: 13px; color: rgba(255,255,255,.40); margin-bottom: 28px; }
.frow         { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg           { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.flabel       { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,.45); }
.finput, .fselect, .ftextarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r); padding: 12px 15px;
  font-size: 13.5px; font-family: var(--ff-b); color: var(--white);
  transition: border-color .25s, background .25s; outline: none; width: 100%;
}
.finput::placeholder, .ftextarea::placeholder { color: rgba(255,255,255,.22); }
.finput:focus, .fselect:focus, .ftextarea:focus { border-color: var(--teal); background: rgba(0,137,123,.08); }
.fselect      { appearance: none; cursor: pointer; }
.fselect option { background: var(--navy); }
.ftextarea    { min-height: 106px; resize: vertical; }
.fsubmit {
  width: 100%; padding: 14px; background: var(--teal); border: none;
  border-radius: var(--r); font-size: 14px; font-weight: 600;
  font-family: var(--ff-b); color: var(--white); cursor: pointer;
  transition: background .25s, transform .2s; letter-spacing: .3px;
}
.fsubmit:hover { background: var(--teal-lt); transform: translateY(-1px); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer       { background: #060F1C; padding: 60px 5% 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.ftop         { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.fbrand-logo  { display: flex; align-items: center; margin-bottom: 16px; }
.fbrand-logo svg { display: block; }
.ftagline     { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.65; max-width: 275px; margin-bottom: 22px; }
.fsocial      { display: flex; gap: 8px; }
.fsoc         {
  width: 34px; height: 34px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background .2s;
}
.fsoc:hover  { background: rgba(0,137,123,.25); }
.fcol-title  { font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
.flinks      { display: flex; flex-direction: column; gap: 11px; }
.flink       { font-size: 13px; color: rgba(255,255,255,.48); transition: color .2s; line-height: 1.45; }
.flink:hover { color: var(--teal-lt); }
.fbot        { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.fcopy       { font-size: 12px; color: rgba(255,255,255,.22); }
.flegal      { display: flex; gap: 22px; }
.flegal a    { font-size: 12px; color: rgba(255,255,255,.22); transition: color .2s; }
.flegal a:hover { color: rgba(255,255,255,.50); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .why-grid,
  .careers-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .trust-stats  { grid-template-columns: 1fr 1fr; }
  .svc-grid     { grid-template-columns: 1fr 1fr; }
  .ind-grid     { grid-template-columns: 1fr 1fr; }
  .ftop         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .kpi-bar      { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .cta-inner    { flex-direction: column; text-align: center; }
  .about-float  { right: 0; }
  .about-float2 { left: 0; }
  .careers-info { position: static; }
  .why-cards    { display: none; }
}

@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-mob      { display: flex; }
  .nav-logo .wm-full  { display: none; }
  .nav-logo .wm-short { display: block; }
  .section      { padding: 68px 5%; }
  .svc-grid, .ind-grid { grid-template-columns: 1fr; }
  .svc-header, .ind-header, .proj-header { flex-direction: column; align-items: flex-start; }
  .proj-table   { overflow-x: auto; }
  .proj-head, .proj-row { grid-template-columns: 36px 1.5fr 1.5fr 1fr; font-size: 12px; }
  .proj-head :nth-child(4), .proj-row .pscope { display: none; }
  .ftop         { grid-template-columns: 1fr; }
  .frow         { grid-template-columns: 1fr; }
  .vm-row       { grid-template-columns: 1fr; }
}
