:root {
  --navy-950: #071629;
  --navy-900: #0a1d34;
  --navy-800: #0e2b4c;
  --navy-700: #123b68;
  --orange-500: #f6a31a;
  --orange-600: #e0860f;
  --teal-500: #2fc5b4;
  --ink: #152033;
  --muted: #627084;
  --line: rgba(12, 36, 64, 0.12);
  --surface: #ffffff;
  --soft: #f4f7fb;
  --shadow: 0 24px 60px rgba(5, 18, 36, 0.16);
  --heading: "Montserrat", "Inter", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.content-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1160px, calc(100% - 32px));
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 0;
  border: 0;
  border-radius: 8px;
  background: rgba(7, 22, 41, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 48px rgba(7, 22, 41, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(285px, 29vw, 275px);
  height: 68px;
  padding: 0;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.28));
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .brand {
  filter: drop-shadow(0 8px 18px rgba(7, 22, 41, 0.12));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-header.is-scrolled .primary-nav {
  color: var(--navy-900);
}

.primary-nav a {
  position: relative;
  padding: 8px 8px;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  content: "";
  transition: width 180ms ease;
}

.primary-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--orange-500);
  color: var(--navy-950);
  box-shadow: 0 10px 28px rgba(246, 163, 26, 0.32);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 6px;
  background: rgba(246, 163, 26, 0.16);
  cursor: pointer;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 180ms ease;
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--navy-900);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.section-muted {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef4fb 100%);
}

.hero {
  min-height: 100vh;
  padding: 148px 0 72px;
  isolation: isolate;
}

.hero::before,
.hero::after,
.values-section::before {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  content: "";
  filter: blur(24px);
  opacity: 0.55;
  pointer-events: none;
}

.hero::before {
  top: 14%;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(246, 163, 26, 0.18);
}

.hero::after {
  bottom: 7%;
  left: -90px;
  width: 240px;
  height: 240px;
  background: rgba(47, 197, 180, 0.14);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 22, 41, 0.98) 0%, rgba(7, 22, 41, 0.88) 48%, rgba(7, 22, 41, 0.55) 100%),
    radial-gradient(circle at 70% 30%, rgba(246, 163, 26, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(115deg, rgba(7, 22, 41, 0.98) 0%, rgba(7, 22, 41, 0.9) 45%, rgba(7, 22, 41, 0.62) 100%),
    radial-gradient(circle at 78% 28%, rgba(246, 163, 26, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px;
  content: "";
}

.hero-slide {
  position: absolute;
  inset: -5%;
  z-index: 1;
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.08);
  opacity: 0;
  transform: scale(1.04);
  animation: heroSlideshow 25s infinite;
}

.slide-one {
  background-image: url("assets/Slideshow-Img-1.jpg"), url("assets/Slideshow-Img-2.jpg");
}

.slide-two {
  background-image: url("assets/Slideshow-Img-2.jpg");
  animation-delay: 5s;
}

.slide-three {
  background-image: url("assets/Slideshow-Img-3.jpg");
  animation-delay: 10s;
}

.slide-four {
  background-image: url("assets/Slideshow-Img-4.jpg");
  animation-delay: 15s;
}

.slide-five {
  background-image: url("assets/Slideshow-Img-5.jpg");
  animation-delay: 20s;
}

.hero-grid {
  display: grid;
  min-height: calc(100vh - 220px);
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 4vw, 4.9rem);
}

h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.section-dark h2,
.section-dark h1 {
  color: #fff;
}

h3 {
  color: var(--navy-900);
  font-size: 1.15rem;
}

.section-dark h3 {
  color: #fff;
}

.hero-lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--orange-500);
  font-family: var(--heading);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 800;
}

.hero-slogan::before {
  display: inline-block;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--teal-500));
  content: "";
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange-500);
  color: var(--navy-950);
  box-shadow: 0 16px 34px rgba(246, 163, 26, 0.28);
}

.btn-primary:hover {
  background: #ffb235;
}

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

.hero-panel {
  display: grid;
  gap: 14px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 130px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.stat-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange-500);
  content: "";
}

.stat-card strong {
  display: block;
  color: var(--orange-500);
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange-500);
  content: "";
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 17px);
  }
}

@keyframes heroSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.04) translateX(0);
  }
  4% {
    opacity: 1;
  }
  16% {
    opacity: 1;
  }
  20% {
    opacity: 0;
    transform: scale(1.12) translateX(-1.4%);
  }
  100% {
    opacity: 0;
    transform: scale(1.12) translateX(-1.4%);
  }
}

section:not(.hero) {
  padding: clamp(76px, 9vw, 126px) 0;
}

section[id] {
  scroll-margin-top: 112px;
}

.split-grid,
.values-grid,
.leadership-grid,
.contact-grid,
.trust-grid {
  display: grid;
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.image-stack {
  position: relative;
  min-height: min(74vw, 630px);
}

.stack-front {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: min(78%, 520px);
  height: min(68vw, 600px);
  border: 10px solid #061426;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stack-back {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 74%;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 163, 26, 0.64), rgba(10, 29, 52, 0.2)),
    url("assets/About.jpg") center/cover;
  box-shadow: var(--shadow);
  filter: saturate(0.8) contrast(1.04);
}

.section-copy p:not(.eyebrow),
.leader-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-copy p:not(.eyebrow),
.section-dark .contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-strip span,
.pill-cloud span,
.principle-grid span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(18, 59, 104, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0 15px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.expertise-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 262px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 22, 41, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(246, 163, 26, 0.58);
  box-shadow: 0 26px 60px rgba(7, 22, 41, 0.12);
  transform: translateY(-6px);
}

.service-card svg,
.panel-title svg {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.mission-vision {
  background:
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.92) 100%),
    linear-gradient(135deg, rgba(47, 197, 180, 0.08), rgba(246, 163, 26, 0.08));
}

.mv-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mv-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 22, 41, 0.08);
}

.mv-panel.wide {
  display: block;
  grid-column: auto;
}

.mv-panel img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.mv-panel.wide img {
  height: 180px;
  min-height: 0;
}

.mv-panel div {
  padding: 24px;
}

.mv-panel h2 {
  font-size: clamp(1.22rem, 1.65vw, 1.65rem);
}

.mv-panel p:not(.eyebrow) {
  color: var(--muted);
}

.values-section {
  isolation: isolate;
}

.values-section::before {
  right: 10%;
  bottom: -90px;
  width: 270px;
  height: 270px;
  background: rgba(246, 163, 26, 0.15);
}

.values-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(7, 22, 41, 0.98), rgba(7, 22, 41, 0.84)),
    url("assets/CoreValue.jpg") center/cover;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-item {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: 52px 1fr;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.value-item span {
  color: var(--orange-500);
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 800;
}

.value-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.trust-section {
  background: #fff;
}

.trust-grid {
  align-items: stretch;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cert-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 48px rgba(7, 22, 41, 0.08);
}

.cert-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 14% 12%, rgba(246, 163, 26, 0.24), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(47, 197, 180, 0.18), transparent 26%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: #fff;
  isolation: isolate;
}

.cert-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.22));
}

.cert-hero {
  display: grid;
  align-items: center;
  gap: 18px;
  grid-template-columns: 78px 1fr;
  margin-bottom: 24px;
}

.cert-seal {
  position: relative;
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18), inset 0 0 0 8px rgba(246, 163, 26, 0.12);
}

.cert-seal::before {
  position: absolute;
  inset: -7px;
  border: 1px dashed rgba(246, 163, 26, 0.6);
  border-radius: 50%;
  content: "";
}

.cert-seal svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cert-hero h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.cert-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cert-badge {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cert-badge::after {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.cert-badge:hover {
  border-color: rgba(246, 163, 26, 0.5);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.cert-badge span,
.cert-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cert-badge strong {
  display: block;
  margin: 8px 0 2px;
  color: var(--orange-500);
  font-family: var(--heading);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1;
}

.cert-wide {
  grid-column: span 3;
  min-height: 88px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-title svg {
  margin: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(246, 163, 26, 0.16);
  color: var(--orange-600);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.client-block {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 197, 180, 0.18), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(246, 163, 26, 0.2), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 28px 70px rgba(7, 22, 41, 0.22);
  color: #fff;
}

.client-block::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85));
  pointer-events: none;
}

.client-intro,
.client-columns {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.client-intro {
  display: grid;
  align-items: end;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
}

.client-block h2 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
}

.client-proof {
  display: grid;
  gap: 10px;
}

.client-proof span {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.client-proof strong {
  color: var(--orange-500);
  font-family: var(--heading);
  font-size: 1.28rem;
}

.client-columns {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.client-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.client-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-500), var(--teal-500));
  content: "";
}

.client-card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(18, 59, 104, 0.1);
  border-radius: 50%;
  content: "";
}

.client-card:hover {
  border-color: rgba(246, 163, 26, 0.5);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  transform: translateY(-7px);
}

.client-card-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.client-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(246, 163, 26, 0.14);
}

.client-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--orange-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.client-card h3 {
  color: var(--navy-950);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.client-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.client-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(18, 59, 104, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.client-columns p {
  margin-bottom: 0;
  color: var(--muted);
}

.partner-section {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-top: 34px;
  margin-left: calc(50% - 50vw);
  padding: clamp(52px, 7vw, 86px) 0;
  border-top: 1px solid rgba(18, 59, 104, 0.1);
  border-bottom: 1px solid rgba(18, 59, 104, 0.1);
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 197, 180, 0.12), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(246, 163, 26, 0.14), transparent 26%),
    linear-gradient(180deg, #fff, #f5f8fc);
}

.partner-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.partner-heading {
  display: grid;
  align-items: end;
  gap: 24px;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  margin-bottom: 32px;
}

.partner-heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.partner-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.partner-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-logo {
  position: relative;
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(18, 59, 104, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(7, 22, 41, 0.07);
  text-align: center;
  flex-direction: column;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-logo::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--teal-500));
  content: "";
}

.partner-logo:hover {
  border-color: rgba(246, 163, 26, 0.44);
  box-shadow: 0 24px 54px rgba(7, 22, 41, 0.12);
  transform: translateY(-4px);
}

.partner-logo span {
  color: var(--navy-900);
  font-family: var(--heading);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.05;
}

.partner-logo small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dell span,
.cisco span,
.vmware span,
.lenovo span {
  color: #1274bb;
}

.hpe span,
.nvidia span,
.honeywell span {
  color: #188a54;
}

.microsoft span,
.fortinet span,
.hikvision span {
  color: #db7b00;
}

.redhat span,
.paloalto span,
.sophos span,
.commvault span {
  color: #b2262b;
}

.plus {
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.plus span,
.plus small {
  color: #fff;
}

.timeline {
  position: relative;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 78px 8px 26px;
  scroll-padding-inline: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange-500) rgba(18, 59, 104, 0.12);
  scrollbar-width: thin;
}

.timeline::-webkit-scrollbar {
  height: 9px;
}

.timeline::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(18, 59, 104, 0.1);
}

.timeline::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--teal-500));
}

.timeline::before {
  position: absolute;
  top: 38px;
  right: 8px;
  left: 8px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--teal-500), var(--navy-700), var(--orange-500));
  box-shadow: 0 0 0 8px rgba(246, 163, 26, 0.08), 0 14px 34px rgba(7, 22, 41, 0.12);
  content: "";
}

.timeline-item {
  position: relative;
  display: block;
  flex: 0 0 clamp(290px, 31vw, 370px);
  min-height: 0;
  scroll-snap-align: start;
}

.timeline-item::before {
  position: absolute;
  top: -52px;
  left: 50%;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 8px rgba(246, 163, 26, 0.14), 0 12px 24px rgba(7, 22, 41, 0.18);
  content: "";
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.timeline-item::after {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--orange-500), rgba(47, 197, 180, 0.2));
  content: "";
  transform: translateX(-50%);
}

.timeline-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(18, 59, 104, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(7, 22, 41, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.timeline-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-500), var(--teal-500));
  content: "";
}

.timeline-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(18, 59, 104, 0.09);
  border-radius: 50%;
  content: "";
}

.timeline-item:hover::before {
  background: var(--teal-500);
  box-shadow: 0 0 0 10px rgba(47, 197, 180, 0.16), 0 18px 34px rgba(7, 22, 41, 0.2);
  transform: translateX(-50%) scale(1.08);
}

.timeline-card:hover {
  border-color: rgba(246, 163, 26, 0.5);
  background: #fff;
  box-shadow: 0 30px 78px rgba(7, 22, 41, 0.16);
  transform: translateY(-8px);
}

.timeline-year {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(246, 163, 26, 0.14);
  color: var(--orange-600);
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.timeline-card h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.timeline-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.leadership-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 197, 180, 0.1), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(246, 163, 26, 0.12), transparent 25%),
    #fff;
}

.leader-photo {
  position: relative;
  align-self: stretch;
}

.leader-photo::before {
  position: absolute;
  inset: 24px -18px -20px 28px;
  z-index: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange-500), var(--teal-500));
  content: "";
}

.leader-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 660px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.leader-copy blockquote {
  position: relative;
  margin: 28px 0;
  padding: 24px 24px 24px 28px;
  border-left: 4px solid var(--orange-500);
  border-radius: 0 8px 8px 0;
  background: #f7f9fc;
  color: var(--navy-800);
  font-family: var(--heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
}

.leader-copy .role {
  margin-top: 6px;
  color: var(--orange-600);
  font-weight: 800;
}

.principle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-section {
  isolation: isolate;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 22, 41, 0.98), rgba(7, 22, 41, 0.82)),
    radial-gradient(circle at 78% 22%, rgba(246, 163, 26, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px;
  content: "";
}

.contact-card {
  padding: clamp(24px, 4vw, 36px);
  color: var(--ink);
}

.contact-card img {
  width: min(270px, 100%);
  margin-bottom: 24px;
}

.contact-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card li {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-card strong {
  color: var(--navy-900);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card span {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  background: #040e1a;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer .content-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 140ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    animation: none;
  }

  .slide-one {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 108px);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--navy-900);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 12px 6px;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero-grid,
  .split-grid,
  .values-grid,
  .leadership-grid,
  .contact-grid,
  .trust-grid,
  .client-intro,
  .partner-heading,
  .mv-panel.wide {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-card {
    min-height: 150px;
  }

  .expertise-grid,
  .client-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-panel.wide img {
    height: 245px;
    min-height: 0;
  }

  .leader-photo img {
    min-height: 540px;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cert-wide {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .content-shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 76px;
    padding: 10px 10px 10px 0;
  }

  .brand {
    width: min(78vw, 310px);
    height: 58px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 72px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel,
  .expertise-grid,
  .client-columns,
  .check-list {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-stack {
    min-height: 500px;
  }

  .stack-front {
    width: 82%;
    height: 470px;
    border-width: 7px;
  }

  .stack-back {
    width: 58%;
    height: 360px;
  }

  .mv-panel div,
  .service-card,
  .value-item,
  .cert-panel,
  .client-block,
  .client-card,
  .contact-card {
    padding: 22px;
  }

  .client-card {
    min-height: 0;
  }

  .client-proof span {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .leader-photo::before {
    inset: 18px -8px -12px 18px;
  }

  .leader-photo img {
    min-height: 460px;
  }

  .timeline {
    padding-top: 8px;
  }

  .timeline {
    padding: 70px 2px 22px;
  }

  .timeline-item {
    flex-basis: min(82vw, 330px);
  }

  .timeline-card {
    min-height: 250px;
    padding: 22px;
  }

  .cert-hero,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-seal {
    width: 68px;
    height: 68px;
  }

  .cert-wide {
    grid-column: span 1;
  }

  .partner-section {
    padding: 46px 0;
  }

  .partner-inner {
    width: min(100% - 28px, 1160px);
  }

  .partner-logo {
    min-height: 104px;
    padding: 15px;
  }

  .site-footer .content-shell {
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .image-stack {
    min-height: 420px;
  }

  .stack-front {
    height: 400px;
  }

  .stack-back {
    height: 310px;
  }

  .value-item {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }
}
