 
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

 
:root {
  /* Palette */
  --clr-brand:       #1A2E4A;   /* deep navy */
  --clr-brand-mid:   #2A4A72;   /* medium navy */
  --clr-accent:      #C8973A;   /* warm gold */
  --clr-accent-lt:   #E8B96A;   /* light gold */
  --clr-white:       #FFFFFF;
  --clr-off-white:   #F7F8FC;
  --clr-bg:          #F4F6FA;
  --clr-surface:     #FFFFFF;
  --clr-border:      #E2E8F0;
  --clr-text-dark:   #0F1C2E;
  --clr-text-body:   #3A4A5C;
  --clr-text-muted:  #7A8A9C;
  --clr-overlay:     rgba(26,46,74,0.07);

  /* Brand navy/lime — used by the header, topbar, footer, buttons */
  --sv-navy:      #161B2B;
  --sv-navy-2:    #1f222b;
  --sv-lime:      #D7E600;
  --sv-lime-dark: #B9C700;

   --font-body:       'Inter', system-ui, sans-serif;
  --font-ui:         'DM Sans', system-ui, sans-serif;

  /* Type scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  3.75rem;
  --fs-5xl:  5rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(15,28,46,.06), 0 1px 2px rgba(15,28,46,.04);
  --sh-md:  0 4px 16px rgba(15,28,46,.08), 0 1px 4px rgba(15,28,46,.05);
  --sh-lg:  0 12px 40px rgba(15,28,46,.10), 0 2px 8px rgba(15,28,46,.06);
  --sh-xl:  0 24px 64px rgba(15,28,46,.14), 0 4px 16px rgba(15,28,46,.08);
  --sh-glow: 0 0 32px rgba(200,151,58,.25);

  /* Glass */
  --glass-bg:     rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.55);
  --glass-blur:   blur(18px) saturate(1.6);

  /* Transitions */
  --tr-fast:   150ms cubic-bezier(0.4,0,0.2,1);
  --tr-base:   250ms cubic-bezier(0.4,0,0.2,1);
  --tr-slow:   450ms cubic-bezier(0.4,0,0.2,1);
  --tr-spring: 400ms cubic-bezier(0.34,1.56,0.64,1);

  /* Layout */
  --max-w: 1280px;
  --max-w-text: 720px;
  --header-h: 80px;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--clr-text-body);
  background: var(--clr-off-white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* ── Section Wrapper ─────────────────────────────────────── */
.section {
  padding: var(--sp-24) 0;
}
.section--lg { padding: var(--sp-32) 0; }
.section--sm { padding: var(--sp-16) 0; }

/* ── Section Label (eyebrow) ─────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: var(--r-full);
}

/* ── Headings ────────────────────────────────────────────── */
.section-title {
font-family: var(--font-display);
    font-size: 55px;
    font-weight: 500;
    color: var(--clr-text-dark);
    line-height: 1.18;
    letter-spacing: 5px;
}
.section-title span { color: var(--clr-accent); }

.section-subtitle {
  font-size: var(--fs-md);
  margin:auto;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-top: var(--sp-4);
  line-height: 1.65;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: var(--sp-4) auto 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--sp-3) var(--sp-6);
  border-radius: 10px;
  transition: all var(--tr-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--tr-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.12); }

.btn--primary {
  background: var(--clr-brand);
  color: var(--clr-white);
  box-shadow: 0 4px 14px rgba(26,46,74,.28);
}
.btn--primary:hover {
  background: var(--clr-brand-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26,46,74,.32);
}

.btn--gold {
background: #CDEE01;
    color: #000000;
    box-shadow: 0 4px 14px rgba(200, 151, 58, .35);
}
.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-glow);
}

.btn--outline {
  background: transparent;
  color: var(--clr-brand);
  border: 1.5px solid var(--clr-brand);
}
.btn--outline:hover {
  background: var(--clr-brand);
  color: var(--clr-white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--clr-white);
}

.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--fs-base); }

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--tr-base);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ── Badge / Tag ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge--navy { background: rgba(26,46,74,0.09); color: var(--clr-brand); }
.badge--gold { background: rgba(200,151,58,0.12); color: #A07420; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-accent-lt) 100%);
  border-radius: var(--r-full);
  margin: var(--sp-6) auto;
}
.divider--left { margin: var(--sp-6) 0; }

/* ── Glass Card ──────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}

/* ── Standard Card ───────────────────────────────────────── */
.card {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--clr-border);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

/* ── ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all var(--tr-base);
}

/* Transparent state (over hero) */
.site-header--transparent {
  background: transparent;
}
/* Scrolled state */
.site-header--scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--sh-md);
  height: 68px;
}

/* Solid state (inner pages without hero) */
.site-header--solid {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--sh-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 33px!important;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--clr-brand); }
.logo-text .tagline { font-family: var(--font-ui); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-accent); }

/* Site-header transparent version — white text */
.site-header--transparent .logo-text .brand { color: var(--clr-white); }
.site-header--transparent .logo-text .tagline { color: rgba(255,255,255,0.7); }
.site-header--transparent .nav-link { color: rgba(255,255,255,0.9); }
.site-header--transparent .nav-link:hover { color: var(--clr-accent-lt); }
.site-header--transparent .btn--login { border-color: rgba(255,255,255,0.5); color: var(--clr-white); }
.site-header--transparent .btn--login:hover { background: rgba(255,255,255,0.15); }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: var(--sp-1); }

.nav-link {
    font-family: var(--font-ui);
    font-size: 19px;
    font-weight: 400;
    color: var(--clr-text-dark);
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--r-sm);
    position: relative;
    transition: color var(--tr-fast), background var(--tr-fast);
    white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: var(--sp-3); right: var(--sp-3);
  height: 2px;
   border-radius: var(--r-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr-base);
}
.nav-link:hover { color: var(--clr-brand); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: #e8b96a; font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  min-width: 160px;
  padding: var(--sp-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-base), transform var(--tr-base);
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  color: var(--clr-text-body);
  border-radius: var(--r-sm);
  transition: background var(--tr-fast), color var(--tr-fast);
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--clr-bg); color: var(--clr-brand); }

/* Chevron icon */
.nav-chevron {
  width: 14px; height: 14px;
  margin-left: 2px;
  transition: transform var(--tr-base);
  vertical-align: middle;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.btn--login {
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 7px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--clr-brand);
  color: var(--clr-brand);
  background: transparent;
  transition: all var(--tr-base);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn--login:hover {
  background: var(--clr-brand);
  color: var(--clr-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: background var(--tr-fast);
}
.hamburger:hover { background: var(--clr-bg); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--clr-brand);
  border-radius: var(--r-full);
  transition: all var(--tr-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(15,28,46,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-base);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }

.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--clr-white);
  box-shadow: var(--sh-xl);
  transform: translateX(100%);
  transition: transform var(--tr-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6);
  border-bottom: 1px solid var(--clr-border);
}
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--clr-bg);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.mobile-nav-links { padding: var(--sp-4); flex: 1;    margin-top: 50px; }
.mobile-nav-links a {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--clr-text-dark);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--tr-fast), color var(--tr-fast);
}
.mobile-nav-links a:hover { background: var(--clr-bg); color: var(--clr-brand); }
.mobile-nav-links a:last-child { border-bottom: none; }

.mobile-nav-sub {
  padding-left: var(--sp-4);
}
.mobile-nav-sub a {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
}

.mobile-nav-footer {
  padding: var(--sp-6);
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ── ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-brand);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 65% 50%, rgba(200,151,58,0.12) 0%, transparent 70%),
    linear-gradient(135deg, rgba(26,46,74,0.96) 0%, rgba(15,28,46,0.88) 100%);
}

/* Geometric decoration */
.hero-geo {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-geo--ring {
  width: 480px; height: 480px;
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: 50%;
  top: 50%; right: -80px;
  transform: translateY(-50%);
  animation: spin-slow 40s linear infinite;
}
.hero-geo--ring2 {
  width: 320px; height: 320px;
  border: 1px solid rgba(200,151,58,0.12);
  border-radius: 50%;
  top: 50%; right: 80px;
  transform: translateY(-50%);
  animation: spin-slow 30s linear infinite reverse;
}
.hero-geo--dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  opacity: 0.6;
}
.hero-geo--dot:nth-child(3) { top: 28%; right: 22%; animation: float1 6s ease-in-out infinite; }
.hero-geo--dot:nth-child(4) { top: 62%; right: 38%; animation: float2 8s ease-in-out infinite; }

@keyframes spin-slow { to { transform: translateY(-50%) rotate(360deg); } }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--sp-16)) var(--sp-6) var(--sp-20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero-left { max-width: 600px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
  margin-bottom: var(--sp-6);
}
.hero-eyebrow span {
  display: block;
  width: 28px; height: 1px;
  background: var(--clr-accent-lt);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, var(--fs-5xl));
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.hero-title .accent-word {
  color: var(--clr-accent-lt);
  display: block;
}
.hero-title .outline-word {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
  color: transparent;
}

.hero-desc {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: var(--sp-10);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
  margin-top: var(--sp-16);
  display: flex;
  gap: var(--sp-10);
  padding-top: var(--sp-10);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}
.hero-stat-num sup { font-size: 0.5em; vertical-align: super; color: var(--clr-accent-lt); }
.hero-stat-label {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero right panel */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 380px;
  max-width: 100%;
}

.hero-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: 0 32px 64px rgba(15,28,46,0.4);
}

.hero-card-title {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
  margin-bottom: var(--sp-6);
}

.hero-card-services {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--clr-white);
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: background var(--tr-base);
  text-decoration: none;
}
.hero-service-item:hover { background: rgba(255,255,255,0.16); }

.hero-service-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(200,151,58,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-service-icon svg { width: 18px; height: 18px; color: var(--clr-accent-lt); }

/* Floating badge on hero */
.hero-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--sh-glow);
  font-family: var(--font-ui);
  text-align: center;
}
.hero-badge-float .num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.hero-badge-float .lbl { font-size: var(--fs-xs); font-weight: 600; opacity: 0.85; letter-spacing: 0.08em; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.4);
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }

/* ── ============================================================
   WELCOME / INTRO SECTION
   ============================================================ */
.welcome-section {
  padding: var(--sp-24) 0;
  background: var(--clr-white);
}

.welcome-grid {
   grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

/* ── TRUSTED ABOUT SECTION ───────────────────────────────────── */
.trusted-section {
  padding: var(--sp-24) 0;
  background: var(--clr-white);
}

.trusted-grid {
  display: grid;
grid-template-columns: minmax(301px, 1.15fr) minmax(277px, 1.85fr);
  gap: var(--sp-20);
  align-items: center;
}

.trusted-media {
  position: relative;
}

.trusted-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
}

.trusted-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--clr-bg);
  min-height: 200px;
}

.trusted-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.trusted-highlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #d3ff1c;
  border-radius: var(--r-xl);
  color: #111317;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 28px 40px rgba(18, 28, 38, 0.18);
  z-index: 2;
}

.trusted-highlight span {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.trusted-highlight strong {
  font-size: 2rem;
  line-height: 1;
}

.trusted-content {
  max-width: 560px;
}

.trusted-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  line-height: 1.02;
  margin: var(--sp-4) 0 var(--sp-8);
}

.trusted-title span {
  color: var(--clr-accent);
}

.trusted-cards {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.trusted-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-xl);
   border: 1px solid rgba(255, 231, 96, 0.22);
  align-items: start;
}

.trusted-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #FFEBDE;
  color: #111317;
}

.trusted-card-icon svg {
  width: 24px;
  height: 24px;
}

.trusted-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  color: var(--clr-text-dark);
}

.trusted-card p {
  margin: 0;
  color: var(--clr-text-body);
  line-height: 1.7;
  font-size: var(--fs-sm);
}

@media (max-width: 900px) {
  .trusted-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 650px) {
  .trusted-image-grid {
    grid-template-columns: 1fr;
  }

  .trusted-image,
  .trusted-highlight {
    min-height: 180px;
  }
}

.welcome-left {}

.welcome-tag {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(200,151,58,0.1);
  color: #8A6518;
  border-radius: var(--r-full);
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.welcome-title em { font-style: italic; color: var(--clr-accent); }

.welcome-body {
  font-size: var(--fs-base);
  color: var(--clr-text-body);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}
.welcome-body strong { color: var(--clr-brand); font-weight: 600; }

.welcome-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.highlight-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(200,151,58,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight-icon svg { width: 12px; height: 12px; color: var(--clr-accent); }
.highlight-text { font-size: var(--fs-sm); color: var(--clr-text-body); line-height: 1.5; }
.highlight-text strong { color: var(--clr-text-dark); display: block; font-size: var(--fs-base); margin-bottom: 2px; }

/* Welcome right — image mosaic */
.welcome-right { position: relative; }

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: var(--sp-3);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.mosaic-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--clr-bg);
  overflow: hidden;
}
.mosaic-img--tall { aspect-ratio: 2/4; grid-row: span 2; }
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder art for mosaic images */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-bg) 0%, #DDE3EC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--sp-4);
}

.welcome-since {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--clr-brand);
  color: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--sh-xl);
  z-index: 2;
}
.welcome-since .since-label {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-1);
}
.welcome-since .since-year {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1;
  color: var(--clr-accent-lt);
}

/* ── ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6,9,12,0.62), rgba(6,9,12,0.62)), url("images/hhh.jpg") center/cover no-repeat;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.45));
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-1);
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: transform var(--tr-base);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { transform: translateY(-2px); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--sp-3);
  border-radius: 999px;
  background: rgba(18,24,30,0.88);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.stat-icon i,
.stat-icon svg {
  color: #B8FF31;
  font-size: 26px;
}
.stat-number .stat-plus {
  font-size: 0.6em;
  color: var(--clr-accent-lt);
  vertical-align: super;
}
.stat-unit {
  font-size: 0.5em;
  font-family: var(--font-ui);
  font-weight: 600;
  vertical-align: baseline;
  color: var(--clr-accent-lt);
  margin-left: 2px;
}

.stat-label {
  font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(255 255 255);
}

/* ── ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: var(--sp-20) 0;
  background: radial-gradient(circle at top, rgba(183,255,37,0.12), transparent 28%), #11141a;
  color: #F5F8FA;
}

.services-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.services-header .eyebrow {
  color: #B8FF31;
  letter-spacing: 0.24em;
}

.services-header .section-title {
  color: #FFFFFF;
}

.services-header .section-title span {
  color: #B8FF31;
}

.services-header .section-subtitle {
  color: rgba(245,248,250,0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: var(--sp-4);
  max-width: 920px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-3);
  min-height: 200px;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E4FF39 0%, #C7F721 100%);
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 280ms ease;
  z-index: 0;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #B8FF31 0%, rgba(183,255,37,0.35) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr-base);
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(0,0,0,0.28);
  border-color: transparent;
}
.service-card:hover::before { transform: scale(1); }
.service-card:hover::after { transform: scaleX(1); }
.service-card > * {
  position: relative;
  z-index: 2;
}

.service-icon-wrap {
  width: 54px; height: 54px;
  border-radius: var(--r-xl);
  background: rgba(15,18,32,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr-base), transform var(--tr-spring);
}
.service-card:hover .service-icon-wrap {
  background: rgba(15,18,32,0.18);
  transform: scale(1.03) rotate(-3deg);
}
.service-icon-wrap svg,
.service-icon-wrap .fa {
  font-size: 24px;
  color: #B8FF31;
  transition: color var(--tr-base);
}
.service-card:hover .service-icon-wrap svg,
.service-card:hover .service-icon-wrap .fa {
  color: #111317;
}
.fa-paint-brush:before {
  content: "\f1fc";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}
.service-card:hover .service-card-title { color: #111317; }

.services-header .section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
}

.services-header .eyebrow {
  color: #B8FF31;
}

/* ── ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  padding: var(--sp-24) 0;
  background: var(--clr-white);
}
.process-header { text-align: center; margin-bottom: var(--sp-16); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  position: relative;
}

/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-accent-lt) 100%);
  z-index: 0;
  opacity: 0.4;
}

.process-step {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  position: relative;
  z-index: 1;
}

.process-num-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--clr-off-white);
  border: 2px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-6);
  transition: all var(--tr-base);
  position: relative;
}
.process-step:hover .process-num-wrap {
  background: var(--clr-brand);
  border-color: var(--clr-brand);
  transform: scale(1.08);
}
.process-step:hover .process-num { color: var(--clr-white); }

.process-num {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-brand);
  transition: color var(--tr-base);
}

.process-title {
  font-family: var(--font-ui);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: var(--sp-2);
}
.process-desc { font-size: var(--fs-sm); color: var(--clr-text-muted); line-height: 1.6; }

/* ── ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  padding: var(--sp-24) 0;
  background: var(--clr-off-white);
}
.team-header { text-align: center; margin-bottom: var(--sp-16); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.team-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: all var(--tr-base);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--clr-bg) 0%, #DDE3EC 100%);
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,74,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--tr-base);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--sp-4);
}
.team-card:hover .team-photo-overlay { opacity: 1; }

.team-social { display: flex; gap: var(--sp-2); }
.team-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-white);
  transition: background var(--tr-fast);
}
.team-social a:hover { background: var(--clr-accent); border-color: var(--clr-accent); }
.team-social svg { width: 14px; height: 14px; }

.team-info { padding: var(--sp-5) var(--sp-4); }
.team-name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: var(--sp-1);
  display: block;
  text-decoration: none;
  transition: color var(--tr-fast);
}
.team-name:hover { color: var(--clr-brand); }
.team-role {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

/* ── ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--sp-24) 0;
  background: var(--clr-white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-20);
  align-items: start;
}
.faq-left { position: sticky; top: calc(var(--header-h) + var(--sp-8)); }

.faq-panel-section {
  padding: var(--sp-24) 0;
  background: #0c1117;
  color: var(--clr-white);
}
.faq-panel-section .faq-left { position: static; }
.faq-panel-section .faq-image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--sh-lg);
  min-height: 520px;
}
.faq-panel-section .faq-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.faq-panel-section .faq-right {
  display: grid;
  gap: var(--sp-6);
}
.faq-panel-section .faq-right-copy {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.faq-panel-section .eyebrow { color: #d9ff00; letter-spacing: 0.2em; font-size: 0.85rem; text-transform: uppercase; margin-bottom: var(--sp-4); display: inline-block; }
.faq-panel-section .faq-left-title { color: var(--clr-white); font-size: clamp(2.5rem, 4vw, 5rem); line-height: 0.95; letter-spacing: -0.04em; margin-bottom: var(--sp-6); max-width: 520px; }
.faq-panel-section .faq-left-desc { color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: var(--sp-10); font-size: 1rem; line-height: 1.8; }
.faq-panel-section .btn--gold { background: #d9ff00; color: #0c1117; padding: 1rem 2rem; border-radius: 12px; font-weight: 700; }
.faq-panel-section .accordion-item { border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03);margin-bottom: 15px;; }
.faq-panel-section .accordion-trigger { background: rgba(255,255,255,0.05); color: var(--clr-white); }
.faq-panel-section .accordion-trigger:hover { background: rgba(255, 255, 255, 0.08); }
.faq-panel-section .accordion-item.open .accordion-trigger { color: #0c1117; background: #d9ff00; }
.faq-panel-section .accordion-icon { border-color: rgba(255,255,255,0.22); }
.faq-panel-section .accordion-item.open .accordion-icon { background: #000; border-color: var(--clr-white); }
.faq-panel-section .accordion-icon svg { color: #d9ff00; }
.faq-panel-section .accordion-body { font-size: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;}
.faq-panel-section .accordion-body.open { display: block; padding: 15px; }
.faq-panel-section .accordion-icon svg { transition: color var(--tr-fast); }

.contact-prompt-section {
  padding: var(--sp-24) 0;
  background: #ffffff;
}
.contact-prompt-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-16);
  align-items: center;
}
.contact-prompt-left {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.contact-prompt-icon {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #d9ff00;
  color: #0c1117;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}
.contact-prompt-icon i {
  font-size: 2rem;
}
.contact-prompt-title {
  font-family: var(--font-display);
    font-size: 35px;
    line-height: 2;
    letter-spacing: -0.03em;
    margin-top: 20px;
    color: #0c1117;
    margin: 0;
    text-transform: uppercase;
}
.contact-prompt-action {
  margin-top: var(--sp-6);
}
.contact-prompt-image {
  position: relative;
}
.contact-prompt-image::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 10%;
  width: 8px;
  height: 80%;
  background: #d9ff00;
  border-radius: 999px;
}
.contact-prompt-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}
@media (max-width: 900px) {
  .contact-prompt-grid {
    grid-template-columns: 1fr;
  }
  .contact-prompt-left {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-prompt-image::before {
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
  }
}


.accordion-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.accordion-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--tr-base);
}
.accordion-item.open { box-shadow: var(--sh-md); }

.accordion-trigger {
   width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 15px;
  background: var(--clr-white);
  cursor: pointer;
  text-align: left;
  border: none;
  font-family: var(--font-ui);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-text-dark);
  transition: color var(--tr-fast), background var(--tr-fast);
}
.accordion-trigger:hover { color: #fff; background: var(--clr-bg); }
.accordion-item.open .accordion-trigger { color: var(--clr-brand); background: var(--clr-bg); }

.accordion-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--tr-base);
}
.accordion-item.open .accordion-icon {
  background: var(--clr-brand);
  border-color: var(--clr-brand);
  transform: rotate(45deg);
}
.accordion-icon svg { width: 12px; height: 12px; color: var(--clr-text-muted); transition: color var(--tr-fast); }
.accordion-item.open .accordion-icon svg { color: var(--clr-white); }

.accordion-body {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
  background: var(--clr-bg);
  font-size: var(--fs-sm);
  color: var(--clr-text-body);
  line-height: 1.7;
}
.accordion-body.open { display: block; padding:15px;}
.accordion-body code {
  font-size: 0.8em;
  background: rgba(26,46,74,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  font-family: monospace;
}

/* ── ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--sp-24) 0;
  background: #F7F8FB;
  color: var(--clr-text-dark);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.testimonials-header .eyebrow {
  color: var(--clr-accent);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: var(--sp-4);
}
.testimonials-header .section-title {
  color: var(--clr-text-dark);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
  max-width: 860px;
  margin: 0 auto;
}
.testimonials-header .section-title span {
  color: var(--clr-brand);
}

.testimonials-track-wrap {
  overflow: hidden;
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 var(--sp-4);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: var(--sp-8);
}
.testimonials-track:active { cursor: grabbing; }

.testimonial-card {
  position: relative;
  min-height: 360px;
  background: var(--clr-white);
  border-radius: var(--r-2xl);
  padding: calc(var(--sp-8) + 0.5rem);
  border: 1px solid rgba(15,28,46,0.08);
  box-shadow: 0 22px 50px rgba(15,28,46,0.08);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card:hover {
  box-shadow: 0 30px 70px rgba(15,28,46,0.12);
  transform: translateY(-6px);
}

.testimonial-body {
  font-size: 1rem;
  color: var(--clr-text-body);
  line-height: 2;
  max-width: 19.5rem;
  margin: 0 0 var(--sp-8);
}

.testimonial-meta {
  margin-top: auto;
}
.testimonial-meta strong {
  display: block;
  color: var(--clr-brand);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
  max-width: 18rem;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  position: absolute;
  right: var(--sp-6);
  top: var(--sp-6);
  font-size: 2.2rem;
  color: var(--clr-accent);
  line-height: 1;
}

.testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-10);
}
.testimonial-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,28,46,0.12);
  background: rgba(15,28,46,0.08);
  transition: transform var(--tr-base), background var(--tr-base), border-color var(--tr-base);
}
.testimonial-dot.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  transform: scale(1.1);
}

@media (max-width: 1100px) {
  .testimonials-track {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 900px) {
  .testimonials-track {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .testimonial-body {
    max-width: 100%;
  }
  .testimonial-meta strong {
    max-width: 100%;
  }
}

.testimonials-btn svg { width: 18px; height: 18px; color: var(--clr-text-dark); transition: color var(--tr-fast); }
.testimonials-btn:hover svg { color: var(--clr-white); }

/* ── ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding: var(--sp-24) 0;
  background: var(--clr-white);
}

.cta-inner {
  background: linear-gradient(135deg, var(--clr-brand) 0%, var(--clr-brand-mid) 60%, #1E3A5C 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-16) var(--sp-12);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-10);
  align-items: center;
}
.cta-inner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(200,151,58,0.12);
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -100px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-text { position: relative; z-index: 1; }
.cta-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
  margin-bottom: var(--sp-3);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}
.cta-subtitle {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.7);
  max-width: 480px;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
 
/* ── ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-16);
  min-height: 350px;
  background: linear-gradient(180deg, rgba(26,46,74,0.92) 0%, rgba(26,46,74,0.82) 100%), url("images/abouth.jpg") center/cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200,151,58,0.16), transparent 32%), radial-gradient(circle at left center, rgba(255,255,255,0.08), transparent 28%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 12%; bottom: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--sp-4);
}
.page-hero-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.page-hero-eyebrow a { color: rgba(255,255,255,0.75); transition: color var(--tr-fast); }
.page-hero-eyebrow a:hover { color: var(--clr-white); }
.page-hero-eyebrow span { color: rgba(255,255,255,0.55); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
  max-width: 760px;
}

.page-hero-desc {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  line-height: 1.75;
}

/* ── ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Scroll padding for anchor nav */
[id] { scroll-margin-top: calc(var(--header-h) + var(--sp-4)); }

/* Animate on scroll */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* Clients/Logos strip */
.clients-section {
  padding: var(--sp-12) 0;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.clients-label {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  text-align: center;
  margin-bottom: var(--sp-8);
}
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  flex-wrap: wrap;
}
.client-logo {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-text-muted);
  opacity: 0.5;
  transition: opacity var(--tr-base), color var(--tr-base);
}
.client-logo:hover { opacity: 1; color: var(--clr-brand); }

/* Form styles */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: var(--sp-2);
}
.form-control {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--clr-text-dark);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  outline: none;
}
.form-control::placeholder { color: var(--clr-text-muted); }
.form-control:focus {
  border-color: var(--clr-brand);
  box-shadow: 0 0 0 3px rgba(26,46,74,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 500;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-brand);
  color: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--tr-base), transform var(--tr-base), background var(--tr-fast);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--clr-accent); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; }
.sd-related-card{
  padding: 15px;
}
    .sd-nav-head { background: linear-gradient(135deg, var(--clr-brand), var(--clr-brand-mid)); color: var(--clr-white); font-family: var(--font-ui); font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 10px 16px!important;
    text-align: center;
    border-bottom: 1px solid var(--clr-border);}

    .sd-related-card{
      padding: 15px!important;
    }
:root{
  --nv:#161B2B; --nv2:#1E2540; --nv3:#14171f;
  --lime:#D7E600; --lime-d:#B9C700;
  --orange:#F55D01;
  --ink:#1B2340;
}
    /* Transparent shine effect */
.hp-btn-gold::before{
    content: "";
    position: absolute;
    top: -60px;
    left: -120px;
    width: 60px;
    height: 220px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.55) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(35deg);
    transition: left .7s ease;
    pointer-events: none;
    z-index: 2;
}

.hp-btn-gold:hover::before{
    left: 150%;
}

/* Optional: small lift effect */
.hp-btn-gold:hover{
    transform: translateY(-2px);
}.hp-btn-gold{
  display: inline-block;
    position: relative;
    overflow: hidden;
    background: var(--lime);
    color: var(--nv);
    font-size: 18px!important;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-family: 'Roboto Slab', sans-serif;
   padding: .5rem 2rem !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    margin-top: .5rem;
    transition: all .3s ease;
    z-index: 1;
}

/* Keep same background on hover */
.hp-btn-gold:hover{
    background: var(--lime);
    color: var(--nv);
}

/* Transparent shine effect */
.hp-btn-gold::before{
    content: "";
    position: absolute;
    top: -60px;
    left: -120px;
    width: 60px;
    height: 220px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.55) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(35deg);
    transition: left .7s ease;
    pointer-events: none;
    z-index: 2;
}

.hp-btn-gold:hover::before{
    left: 150%;
}

/* Optional: small lift effect */
.hp-btn-gold:hover{
    transform: translateY(-2px);
}

/* ============================================================
   SITE FOOTER — canonical, shared across every page
   ============================================================ */
.site-footer {
  background: #0F1424;
  padding: 4rem 0 0;
  color: #9aa0b4;
}
.site-footer .container { max-width: var(--max-w, 1280px); margin: 0 auto; padding: 0 var(--sp-6); }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
  padding-bottom: var(--sp-16);
}
.footer-brand .footer-logo { display: inline-block; }
.footer-brand .footer-logo-text { font-weight: 800; font-size: 1.6rem; letter-spacing: 2px; color: var(--sv-lime); }
 
.footer-col-title { color: #fff; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links--split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.footer-links a { color: #9aa0b4; font-size: 0.875rem; transition: color .2s; }
.footer-links a:hover { color: var(--sv-lime); }
.footer-contact-item { margin-bottom: var(--sp-4); font-size: 0.875rem; line-height: 1.6; }
.footer-contact-label { color: #fff; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: var(--sp-2); }
.footer-contact-item a { color: #9aa0b4; }
.footer-contact-item a:hover { color: var(--sv-lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-6) 0;
  text-align: center;
}
.footer-copy { font-size: 0.8rem; color: #7d839a; margin: 0; }

/* ============================================================
   TOPBAR — canonical, shared across every page
   ============================================================ */
.sv-topbar{ background:#fff; border-bottom:1px solid #eee; font-size:.85rem; color:#4a5568; position:fixed; top:0; left:0; right:0; z-index:1001; height:40px; transition:transform .35s ease; }
.sv-topbar.sv-topbar--hidden{ transform:translateY(-100%); }
.sv-topbar-inner{ height:40px; max-width:var(--max-w,1280px); margin:0 auto; padding:.55rem 1.5rem; display:flex; align-items:center; justify-content:space-between; }
.sv-topbar-left{ display:flex; align-items:center; gap:1.75rem; }
.sv-topbar-item{ display:flex; align-items:center; gap:.5rem; }
.sv-topbar-item svg{ width:15px; height:15px; color:var(--sv-lime-dark); }
.sv-topbar-item a{ color:inherit; text-decoration:none; }
.sv-topbar-social{ display:flex; gap:.9rem; }
.sv-topbar-social a{ color:#1e2540; display:flex; }
.sv-topbar-social svg{ width:15px; height:15px; }

/* Push header below the fixed topbar, and apply the navy/lime brand
   to the header once scrolled (site-header--solid) */
.site-header{ position:fixed !important; top:40px; left:0; right:0; z-index:1000; }
.site-header.site-header--pinned{ top:0 !important; }
.site-header.site-header--solid{ background:var(--sv-navy) !important; border-bottom:none; }
.site-header .nav-link{ color:#e6e8f0; }
.site-header .nav-link:hover, .site-header .nav-link.active{ color:var(--sv-lime) !important; }
.site-header .nav-dropdown{ background:var(--sv-navy-2); }
.site-header .nav-dropdown a{ color:#e6e8f0; }
.site-header .nav-dropdown a:hover{ color:var(--sv-lime); }
.site-header .btn--login{ background:var(--sv-lime) !important; color:#161B2B !important; border:none !important; font-weight:700; border-radius:6px; }
.site-header .hamburger span{ background:#e6e8f0; }
.header-search{ background:none; border:none; color:#e6e8f0; display:flex; align-items:center; justify-content:center; cursor:pointer; padding:0 .3rem; }
.header-search svg{ width:18px; height:18px; }
.header-search:hover{ color:var(--sv-lime); }
body{ padding-top:76px; }

@media(max-width:768px){
  .sv-topbar-left{ gap:1rem; }
  .sv-topbar-item span, .sv-topbar-item a{ font-size:.78rem; }
}
@media(max-width:576px){
  .sv-topbar-left .sv-topbar-item:nth-child(2){ display:none; }
}

/* ==========================================
   SOCIAL MEDIA ICONS
   ========================================== */

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 38px !important;
  height: 38px !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  border-radius: 50% !important;

  background: rgba(255, 255, 255, 0.06) !important;

  border: 2px solid transparent !important;

  transition: none !important;

  transform: none !important;
}

/* Facebook */
.footer-social a:nth-child(1) {
  color: #1877f2 !important;
}

/* Instagram */
.footer-social a:nth-child(2) {
  color: #e4405f !important;
}

/* LinkedIn */
.footer-social a:nth-child(3) {
  color: #0a66c2 !important;
}

.footer-social a svg {
  width: 16px !important;
  height: 16px !important;
  display: block;
}

/* Disable hover changes */
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.06) !important;

  border-color: transparent !important;

  color: inherit !important;

  transform: none !important;

  box-shadow: none !important;
}

/* Keep each brand color even on hover */
.footer-social a:nth-child(1):hover {
  color: #1877f2 !important;
}

.footer-social a:nth-child(2):hover {
  color: #e4405f !important;
}

.footer-social a:nth-child(3):hover {
  color: #0a66c2 !important;
}.footer-social a {
  background: rgba(255,255,255,0.06);
  color: var(--sv-lime);
}.footer-social a:hover {
  background: var(--sv-lime);
  color: var(--sv-navy);
}