/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── VARIABLES ────────────────────────────────────── */
:root {
  --navy:       #0f3460;
  --blue:       #1a6fc4;
  --blue-light: #e8f1fb;
  --orange:     #f97316;
  --orange-lt:  #fff7ed;
  --green:      #16a34a;
  --green-lt:   #f0fdf4;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --border:     #e2e8f0;
  --text:       #1e293b;
  --muted:      #64748b;
  --nav-h:      76px;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(15,52,96,.08);
  --shadow-md:  0 8px 40px rgba(15,52,96,.12);
}

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.75; }

/* ── UTILITIES ────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,.3);
}
.btn-primary:hover { background: #ea6c0e; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(249,115,22,.4); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.btn-white:hover { background: var(--orange); color: #fff; }

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* when GSAP is running, disable CSS transitions so GSAP owns the animation */
.gsap-active .reveal { transition: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── NAVIGATION ───────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  transition: color .3s;
}
.nav-logo-main span { color: var(--orange); }
.nav-logo-sub {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .3s;
}
nav.scrolled .nav-logo-main { color: var(--navy); }
nav.scrolled .nav-logo-sub  { color: var(--muted); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .84rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { color: var(--orange); }
.nav-cta-btn {
  padding: 9px 20px;
  background: var(--orange);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: .82rem !important;
  transition: background .25s, transform .2s !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: #ea6c0e !important; transform: translateY(-1px) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, background .3s;
}
nav.scrolled .nav-burger span { background: var(--navy); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: 10px 0;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .m-cta {
  margin-top: 20px;
  font-size: 1rem !important;
  padding: 14px 36px;
  background: var(--orange);
  color: #fff !important;
  border-radius: 6px;
}

/* ── HERO ─────────────────────────────────────────── */
.hero > .container {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(22px, 4vw, 72px);
  padding-right: clamp(22px, 4vw, 72px);
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,52,96,.88) 0%, rgba(15,52,96,.65) 55%, rgba(249,115,22,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-eyebrow span {
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 500;
}
.hero-badge svg { color: var(--orange); flex-shrink: 0; }

/* ── STATS BAR ────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}
.stat-item {
  background: var(--navy);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ── SECTION SHARED ───────────────────────────────── */
section { padding: clamp(72px, 10vw, 110px) 0; }

/* ── SERVICES PREVIEW ─────────────────────────────── */
.services-section { background: var(--off-white); }
.section-header { margin-bottom: 56px; }
.section-header p { font-size: 1rem; max-width: 560px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 24px; }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue);
}
.service-card-body h3 { margin-bottom: 8px; color: var(--navy); font-size: 1.05rem; }
.service-card-body p { font-size: .88rem; }
.service-card-body .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 14px;
  transition: gap .2s;
}
.service-card-body .learn-more:hover { gap: 10px; }
.services-footer { text-align: center; margin-top: 48px; }

/* ── ABOUT / WHY US ───────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(249,115,22,.35);
}
.about-img-badge strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.about-content { }
.about-content h2 { margin-bottom: 18px; }
.about-content > p { margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 18px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.feature-icon.orange { background: var(--orange-lt); color: var(--orange); }
.feature-icon.green  { background: var(--green-lt);  color: var(--green);  }
.feature-text h4 { font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.feature-text p  { font-size: .85rem; }

/* ── SECTORS ──────────────────────────────────────── */
.sectors-section { background: var(--off-white); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sector-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
}
.sector-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sector-card:hover img { transform: scale(1.06); }
.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,52,96,.88) 0%, rgba(15,52,96,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.sector-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.sector-overlay h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.sector-overlay p  { color: rgba(255,255,255,.7); font-size: .84rem; line-height: 1.5; }

/* ── CTA BANNER ───────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a6fc4 100%);
  padding: 80px 0;
}
.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: #07213d;
  padding: 72px 0 0;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo-main { font-size: 1.5rem; }
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  margin: 16px 0 24px;
  line-height: 1.7;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--orange); color: #fff; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.footer-contact-item a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--orange); }

/* ── PAGE HERO (inner pages) ──────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 64px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a6fc4 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(249,115,22,.08);
}
.page-hero-content { position: relative; z-index: 1; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.page-breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.page-breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; }

/* ── SERVICES PAGE ────────────────────────────────── */
.services-full { background: var(--white); }
.services-list { display: flex; flex-direction: column; gap: 80px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.service-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-row:hover .service-row-img img { transform: scale(1.04); }
.service-row-body .section-tag { margin-bottom: 10px; }
.service-row-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.service-row-body p  { margin-bottom: 20px; }
.service-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted);
}
.service-bullet svg { color: var(--green); flex-shrink: 0; }
.service-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── CONTACT PAGE ─────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .25s, box-shadow .25s;
}
.contact-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-card-icon.orange { background: var(--orange-lt); color: var(--orange); }
.contact-card-text .label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-card-text .value { font-weight: 600; color: var(--navy); font-size: .95rem; }
.contact-card-text a { color: var(--navy); transition: color .2s; }
.contact-card-text a:hover { color: var(--orange); }
.contact-form-wrap {
  background: var(--off-white);
  border-radius: 14px;
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { font-size: .9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,.12);
}
.form-group textarea { min-height: 100px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 14px; font-size: .9rem; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ── ABOUT PAGE ───────────────────────────────────── */
.about-hero::after {
  background: linear-gradient(135deg, rgba(15,52,96,.95) 0%, rgba(26,111,196,.75) 100%);
}

/* Story section */
.about-story-section { background: var(--white); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-img {
  position: relative;
}
.about-story-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.about-story-content h2 { margin-bottom: 18px; }
.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.story-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.story-highlight svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* Mission / Vision / Values */
.mvv-section { background: var(--off-white); }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mvv-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease;
}
.mvv-card:nth-child(1) { border-top-color: var(--blue); }
.mvv-card:nth-child(2) { border-top-color: var(--orange); }
.mvv-card:nth-child(3) { border-top-color: var(--green); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.mvv-icon.blue   { background: var(--blue-light); color: var(--blue);   }
.mvv-icon.orange { background: var(--orange-lt);  color: var(--orange); }
.mvv-icon.green  { background: var(--green-lt);   color: var(--green);  }
.mvv-card h3 { margin-bottom: 14px; font-size: 1.15rem; }
.mvv-card p  { font-size: .9rem; line-height: 1.78; }

/* Why choose us */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-item {
  padding: 28px 26px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.why-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.why-icon.orange { background: var(--orange-lt); color: var(--orange); }
.why-icon.green  { background: var(--green-lt);  color: var(--green);  }
.why-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-item p { font-size: .875rem; }

/* Process steps */
.process-section { background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 39px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--orange), var(--green), var(--navy));
  z-index: 0;
  opacity: .25;
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 28px;
  box-shadow: 0 4px 16px rgba(15,52,96,.1);
}
.process-step h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* Sectors on about page */
.about-sectors-section { background: var(--white); }
.about-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-sector-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.about-sector-img { height: 210px; overflow: hidden; }
.about-sector-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.about-sector-card:hover .about-sector-img img { transform: scale(1.06); }
.about-sector-body { padding: 28px; }
.about-sector-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.about-sector-icon.blue   { background: var(--blue-light); color: var(--blue);   }
.about-sector-icon.orange { background: var(--orange-lt);  color: var(--orange); }
.about-sector-icon.green  { background: var(--green-lt);   color: var(--green);  }
.about-sector-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.about-sector-body p  { font-size: .875rem; margin-bottom: 18px; }
.sector-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sector-list li {
  font-size: .82rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.sector-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* Location + map */
.location-banner {
  background: var(--off-white);
  padding: clamp(72px, 10vw, 110px) 0;
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.location-text .section-tag { margin-bottom: 14px; }
.location-text h2 { margin-bottom: 18px; }
.location-text > p { margin-bottom: 32px; }
.location-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}
.location-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
}
.location-detail svg { color: var(--orange); flex-shrink: 0; }
.location-map {
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}
.location-map iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media(max-width:1024px){
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 560px; }
  .about-img-badge { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 36px; }
  .service-row.reverse { direction: ltr; }
  /* about page */
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-story-img { max-width: 560px; }
  .mvv-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-steps::before { display: none; }
  .about-sectors-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .location-map { height: 300px; }
}
@media(max-width:768px){
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .about-img-badge { bottom: -10px; right: 10px; }
  /* about page */
  .mvv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .about-sectors-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px){
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; gap: 14px; }
  .mvv-card { padding: 28px 22px; }
}
