:root {
  --navy: #0B1F4B;
  --navy-mid: #142866;
  --navy-deep: #060F26;
  --red: #C0272D;
  --red-dark: #961F24;
  --red-glow: rgba(192,39,45,0.18);
  --gold: #C5973A;
  --gold-lt: #E0B050;
  --gold-glow: rgba(197,151,58,0.15);
  --white: #FFFFFF;
  --off: #F5F7FB;
  --off2: #EBEEf6;
  --text: #0B1F4B;
  --mid: #4A5C80;
  --light: #8494B5;
  --border: #DDE3F0;
  --sans: 'Outfit', sans-serif;

}
:root {
  --navy:#0b1f4b; --navy-mid:#122560; --navy-dark:#071229;
  --crimson:#c0272d; --gold:#c5973a; --gold-lt:#d4a84a;
  --off-white:#f4f1ec; --warm-grey:#e6e1d8;
  --text:#2e2e2e; --muted:#6b6b6b;
 
}

/* ── GLOBAL FONT RULES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


/* Everything else uses Outfit */
h1, h2, h3, h4, h5, h6, span, body, p, ul, ol, li, a, button, input, select, textarea, label,
table, td, th, caption, blockquote, figcaption, nav, header, footer,
section, article, aside, div, form {
  font-family: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; font-size: 15px; line-height: 1.7em!important;}
body { color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none!important;}
footer ol, ul{margin: 0 0 1.5em 0em!important;}
p{
  font-size: 15px; line-height: 1.7em!important;
}
/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,39,45,0.35); }
  50%      { box-shadow: 0 0 0 10px rgba(192,39,45,0); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up   { opacity: 0; animation: fadeInUp   0.65s ease forwards; }
.anim-fade-left { opacity: 0; animation: fadeInLeft  0.65s ease forwards; }
.anim-fade-right{ opacity: 0; animation: fadeInRight 0.65s ease forwards; }
.anim-scale-in  { opacity: 0; animation: scaleIn    0.55s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.45s; }
.delay-5 { animation-delay: 0.6s; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy-deep);
  padding: 7px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.tb-left { display: flex; gap: 18px; flex-wrap: wrap; }
.tb-left a, .tb-right a {
  color: #7A96BC; font-size: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s; font-weight: 400;
}
.tb-left a:hover, .tb-right a:hover { color: var(--gold); }
.tb-aml {
  background: var(--gold); color: var(--navy-deep) !important;
  font-weight: 700; padding: 4px 12px; border-radius: 20px;
  font-size: 11.5px; letter-spacing: 0.04em;
}
.tb-aml:hover { background: var(--gold-lt) !important; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(11,31,75,0.07);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex; align-items: center; justify-content: space-between;
  height: 90px; gap: 16px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 80px; width: auto; display: block; }

/* ── DROPDOWN NAV ── */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
  list-style: none; margin: 0!important; padding: 0;
}
.nav-item { position: relative; list-style: none; }
.nav-item > a {
  font-size: 15px; font-weight: 500; color:#0b1f4b;
  padding: 7px 11px; border-radius: 6px; white-space: nowrap;
  transition: background .15s, color .15s;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-item > a:hover, .nav-item:hover > a { background: var(--off); color: var(--navy); }

.nav-arrow {
  font-size: 9px; transition: transform .2s;
  display: inline-block; opacity: 0.6;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(11,31,75,0.14);
  padding: 8px;
  min-width: 100%;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 600;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 9px;
  padding: 5px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--mid);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--off); color: var(--navy); }
.dropdown a .dd-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--off2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.dropdown-group { padding: 4px 0; }
.dropdown-label {
  font-size: 9.5px; font-weight: 700; color: var(--light);
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px 3px;
}
.dropdown hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta {
  background: var(--red); color: #fff !important;
  padding: 9px 15px; border-radius: 7px;
  font-weight: 600; font-size: 13px;
  transition: background .2s; white-space: nowrap;
  cursor: pointer; border: none;
}
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  font-size: 11px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 999;
  flex-direction: column;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 5px 16px;
  font-size: 13px;
  color: #4a5c80;
  text-decoration: none;
  border-bottom: 0.5px solid rgb(236 241 254);
  background: transparent;
  transition: background 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
 background: var(--off);
    color: var(--navy);
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-aml {
  background: var(--navy); color: #fff !important;
  padding: 9px 15px; border-radius: 7px;
  font-weight: 600; font-size: 12.5px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: background .2s; white-space: nowrap;
}
.nav-aml:hover { background: var(--navy-mid) !important; }
.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.ham span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all .3s;
}
.mob-nav {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: #fff; overflow-y: auto; z-index: 499;
  padding: 16px 6% 100px; border-top: 1px solid var(--border);
}
.mob-nav.open { display: block; }
.mob-nav-section { border-bottom: 1px solid var(--border); }
.mob-nav-toggle {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; font-size: 15px; font-weight: 500; color: #0b1f4b;
  cursor: pointer;
}
.mob-nav-toggle.hl { color: #0b1f4b; font-weight: 500; background-color:#fff!important;}
.mob-nav-toggle .arr { font-size: 10px; transition: transform .25s; }
.mob-nav-toggle.expanded .arr { transform: rotate(180deg); }
.mob-sub {
  display: none; padding: 4px 0 12px 16px;
}
.mob-sub.open { display: block; }
.mob-sub a {
  display: block; padding: 8px 0;
  font-size: 14px; color: var(--mid); border: none;
}
.mob-nav a.plain {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 500; color: #0b1f4b;
  border-bottom: 1px solid var(--border);
}
.mob-nav-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.mob-nav-cta a, .mob-nav-cta button {
  display: block; text-align: center; padding: 13px;
  border-radius: 8px; font-weight: 700; font-size: 14px;
  width: 100%; border: none; cursor: pointer;
}
/*.nav-dropdown { position: relative; }

.nav-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-chevron {
  font-size: 12px;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
  border: 0.5px solid rgba(255,255,255,0.2);
}

.nav-dropdown.open .nav-dropdown-menu { display: flex; }

.nav-dropdown-menu a {
  padding: 9px 14px 9px 28px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  transition: background 0.15s;
}

.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.15); }
*/

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--navy-deep);
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* ── SPLIT HERO ── */
.split-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* LEFT — Dubai */
.sh-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 56px 80px 6%;
  background: var(--navy-deep);
  overflow: hidden;
  z-index: 1;
}
.sh-left-bg {
  position: absolute; inset: 0; z-index: 0;
}
.sh-left-bg img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22;
  object-position: center 40%;
}
.sh-left-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(6,15,38,0.97) 0%, rgba(11,31,75,0.82) 60%, rgba(11,31,75,0.55) 100%);
}
.sh-left-accent {
  position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
  z-index: 2;
}
.sh-left-content {
  position: relative; z-index: 3;
}

/* RIGHT — UK */
.sh-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 6% 80px 56px;
  background: #f0f4ff;
  overflow: hidden;
  z-index: 1;
}
.sh-right-bg {
  position: absolute; inset: 0; z-index: 0;
}
.sh-right-bg img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.12;
  object-position: center 30%;
}
.sh-right-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(225deg, rgba(240,244,255,0.96) 0%, rgba(220,228,255,0.90) 100%);
}
.sh-right-accent {
  position: absolute; top: 0; right: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--red) 40%, var(--red) 60%, transparent 100%);
  z-index: 2;
}
.sh-right-content {
  position: relative; z-index: 3;
  padding-left: 15px;
}

/* BRIDGE CENTRE */
.sh-bridge {
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
}
.sh-bridge-pill {
  background: #fff;
  border-radius: 60px;
  padding: 10px 12px;
  box-shadow: 0 8px 40px rgba(11,31,75,0.22), 0 0 0 1px rgba(11,31,75,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: all;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.sh-bridge-logo {
  height: 38px;
  width: auto;
  display: block;
}
.sh-bridge-text {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.sh-bridge-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #C5973A 50%, rgba(255,255,255,0) 100%);
}
.sh-bridge-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: all;
  animation: fadeInUp 0.7s 0.55s ease both;
}
.sh-bridge-divider span {
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(197,151,58,0.4);
}
.sh-bridge-line-bottom {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(255,255,255,0) 100%);
}

/* SIDE LABELS */
.sh-side-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 30px;
  animation: fadeInUp 0.5s ease both;
}
.sh-side-tag.uae {
  background: rgba(197,151,58,0.12);
  border: 1px solid rgba(197,151,58,0.3);
  color: var(--gold);
}
.sh-side-tag.uk {
  background: rgba(192,39,45,0.08);
  border: 1px solid rgba(192,39,45,0.2);
  color: var(--red);
}
.sh-flag {
  width: 18px; height: 12px;
  border-radius: 2px;
  overflow: hidden;
  display: inline-block;
  flex-shrink: 0;
}

.sh-h1 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.sh-left .sh-h1 { color: #fff; }
.sh-right .sh-h1 { color: var(--navy); }
.sh-h1 .gold { color: var(--gold); }
.sh-h1 .red  { color: var(--red); }

.sh-desc {
  font-size: 14.5px;
  line-height: 1.78;
  margin-bottom: 26px;
  font-weight: 300;
  max-width: 380px;
  animation: fadeInUp 0.6s 0.18s ease both;
}
.sh-left .sh-desc { color: #7A96BC; }
.sh-right .sh-desc { color: var(--mid); }

/* Service chips */
.sh-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s 0.24s ease both;
}
.sh-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  transition: transform 0.18s;
}
.sh-chip:hover { transform: translateY(-2px); }
.sh-left .sh-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #C8D8F0;
}
.sh-left .sh-chip:hover {
  background: rgba(197,151,58,0.1);
  border-color: rgba(197,151,58,0.3);
  color: var(--gold-lt);
}
.sh-right .sh-chip {
  background: rgba(11,31,75,0.06);
  border: 1px solid rgba(11,31,75,0.1);
  color: var(--navy);
}
.sh-right .sh-chip:hover {
  background: rgba(192,39,45,0.07);
  border-color: rgba(192,39,45,0.2);
  color: var(--red);
}
.sh-chip-icon { font-size: 13px; }

/* Stats row */
.sh-stats {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.sh-stat {
  padding-right: 20px;
  margin-right: 20px;
}
.sh-stat:not(:last-child) {
  border-right: 1px solid;
}
.sh-left .sh-stat:not(:last-child) { border-color: rgba(255,255,255,0.1); }
.sh-right .sh-stat:not(:last-child) { border-color: rgba(11,31,75,0.12); }
.sh-stat-num {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.sh-left .sh-stat-num { color: #fff; }
.sh-right .sh-stat-num { color: var(--navy); }
.sh-stat-num span { color: var(--gold); }
.sh-right .sh-stat-num span { color: var(--red); }
.sh-stat-lbl {
  font-size: 10px;
  font-weight: 500;
  margin-top: 3px;
}
.sh-left .sh-stat-lbl { color: #5C7AA3; }
.sh-right .sh-stat-lbl { color: var(--light); }

/* CTA buttons */
.sh-cta {
  animation: fadeInUp 0.6s 0.36s ease both;
}
.sh-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c5973a;
    color: #060f26;
    padding: 9px 15px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
}
.sh-btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); color: #060f26;!important}

.sh-btn-red:hover {background: #961f24;transform: translateY(-2px);color: #fff!important;}
.sh-btn-red {
 display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c0272d;
    color: #fff!important;
    padding: 9px 15px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.sh-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--navy);
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(11,31,75,0.2);
  transition: border-color .2s, color .2s;
  text-decoration: none;
  margin-left: 10px;
}
.sh-btn-outline-dark:hover { border-color: var(--red); color: var(--red); }

/* Trust strip under right panel */
.sh-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  animation: fadeInUp 0.6s 0.44s ease both;
}
.sh-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
}
.sh-left .sh-trust-item { color: #5C7AA3; }
.sh-right .sh-trust-item { color: var(--mid); }
.sh-trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sh-left .sh-trust-dot { background: var(--gold); }
.sh-right .sh-trust-dot { background: var(--red); }

/* Decorative map pin */
.sh-geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 22px;
  animation: fadeInUp 0.5s 0.05s ease both;
}
.sh-left .sh-geo-badge {
  background: rgba(197,151,58,0.1);
  border: 1px solid rgba(197,151,58,0.25);
  color: var(--gold-lt);
}
.sh-right .sh-geo-badge {
  background: rgba(192,39,45,0.07);
  border: 1px solid rgba(192,39,45,0.18);
  color: var(--red);
}

/* Client count floating badge */
.sh-client-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(11,31,75,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: fadeInUp 0.6s 0.6s ease both;
}
.sh-client-badge .cb-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.sh-client-badge .cb-num span { color: var(--gold); }
.sh-client-badge .cb-lbl {
  font-size: 10px;
  color: var(--mid);
  font-weight: 500;
  line-height: 1.4;
}
.sh-client-badge .cb-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), #1F2D6E);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .split-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .sh-left, .sh-right {
    padding: 40px 5% 40px;
  }
  .sh-bridge {
    position: relative;
    left: auto; top: auto;
    transform: none;
    padding: 20px 0;
    background: var(--navy);
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .sh-bridge-line, .sh-bridge-line-bottom { display: none; }
  .sh-client-badge { right: 5%; bottom: 20px; }
  .sh-h1 { font-size: clamp(26px, 7vw, 38px); }
}
@media (max-width: 600px) {
  .sh-bridge { flex-wrap: wrap; }
  .sh-client-badge { position: static; margin-top: 20px; }
}
/* Full-bleed banner image like InZone reference */
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.42;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(6,15,38,0.97) 0%,
    rgba(11,31,75,0.88) 50%,
    rgba(11,31,75,0.30) 100%
  );
}
.hero-line {
  position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  z-index: 2;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1280px; margin: 0 auto;
  padding: 110px 5% 90px;
  width: 100%;
  padding-left: 0%;
}
.hero-left { display: flex; flex-direction: column; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(197,151,58,0.1);
  border: 1px solid rgba(197,151,58,0.28);
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 24px;
  width: fit-content;
  animation: fadeInUp 0.5s ease forwards;
}
.hero-badge svg { width: 20px; height: 13px; }
.hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800; color: #fff;
  line-height: 1.06; margin-bottom: 20px;
  letter-spacing: -0.01em;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .red { color: #E8393F; }
.hero-sub {
  font-size: 15.5px; color: #7A96BC;
  line-height: 1.8; margin-bottom: 34px; max-width: 540px;
  font-weight: 300;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-stats {
  display: flex; gap: 0; margin-bottom: 34px; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.25s ease both;
}
.hero-stat {
  padding: 0 24px 0 0; margin-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat .hs-num {
  font-size: 26px; font-weight: 800;
  color: #fff; line-height: 1;
}
.hero-stat .hs-num span { color: var(--gold); }
.hero-stat .hs-lbl {
  font-size: 11px; color: #5C7AA3; font-weight: 500; margin-top: 2px;
}
.hero-setup-types {
  display: flex; gap: 16px; margin-bottom: 36px; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.setup-chip {
  display: flex; flex-direction: column;
  padding: 12px 18px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s;
}
.setup-chip:hover { border-color: rgba(197,151,58,0.4); background: rgba(197,151,58,0.06); }
.setup-chip strong { font-size: 13px; font-weight: 600; color: #fff; }
.setup-chip span { font-size: 11px; color: #5C7AA3; margin-top: 2px; }
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.35s ease both;
}
.btn-primary {
  background: var(--red); color: #fff!important;
  padding: 13px 26px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px);color: #fff!important; }
.btn-outline {
  background: transparent; color: #fff;
  padding: 13px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  display: inline-block; border: 1px solid rgba(255,255,255,0.2);
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-sm {
  background: var(--gold); color: var(--navy-deep);
  padding: 13px 22px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s;
}
.btn-gold-sm:hover { background: var(--gold-lt); }
.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.45s ease both;
}
.trust-chip {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: #5C7AA3; font-weight: 400;
}
.trust-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
/* Review badges row */
.hero-reviews {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px;
  animation: fadeInUp 0.6s 0.5s ease both;
}
.review-badge {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 9px 14px; border-radius: 10px;
  backdrop-filter: blur(8px);
}
.review-badge .rb-icon { font-size: 18px; }
.review-badge .rb-text strong { display: block; font-size: 13px; font-weight: 600; color: #fff; }
.review-badge .rb-text span { font-size: 11px; color: #5C7AA3; }
.review-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }

/* ── CONSULTATION MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,15,38,0.82);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 20px;
  padding: 40px 36px;
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: scaleIn 0.3s ease;
  box-shadow: 0 32px 100px rgba(0,0,0,0.35);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--off2); border: none; cursor: pointer;
  font-size: 18px; color: var(--mid);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--red); color: #fff; }
.modal-box h3 {
  font-size: 24px; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.modal-box .modal-sub { font-size: 13px; color: var(--mid); margin-bottom: 24px; }
.mrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mfg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.mfg label {
  font-size: 10.5px; font-weight: 700; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.mfg input, .mfg select, .mfg textarea {
  padding: 10px 13px; border: 1.5px solid var(--border);
  border-radius: 7px; font-size: 14px;
  color: var(--text); background: #fff; outline: none; width: 100%;
  transition: border-color .2s;
}
.mfg input:focus, .mfg select:focus, .mfg textarea:focus { border-color: var(--red); }
.mfg textarea { resize: vertical; min-height: 90px; }
.msub {
  width: 100%; background: var(--red); color: #fff;
  padding: 14px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; transition: background .2s, transform .15s;
}
.msub:hover { background: var(--red-dark); transform: translateY(-1px); }
.modal-privacy { text-align: center; font-size: 11px; color: var(--light); margin-top: 10px; line-height: 1.5; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: #fff;
  padding: 0 5%; overflow: hidden;
}
.trust-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.ts-item {
  display: flex; align-items: center; gap: 9px;
  padding: 18px 24px 18px 0; margin-right: 24px;
  font-size: 12.5px; color: #12265f; font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.07); white-space: nowrap;
}
.ts-item:last-child { border-right: none; }
.ts-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(192,39,45,0.18); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}

/* ── SECTION BASE ── */
.section { padding: 60px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.stag {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.stag-gold { color: var(--gold); }
.sh {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800; color: #0b1f4b;
  line-height: 1.14; margin-bottom: 12px; letter-spacing: -0.01em;
}
.sh em { color: var(--red); font-style: normal; }
.rule { width: 44px; height: 3px; background: var(--red); border-radius: 2px; margin: 14px 0 20px; }
.lead { font-size: 15px; color: var(--mid); line-height: 1.8; max-width: 560px; margin-bottom: 44px; font-weight: 300; }
.centered { text-align: center; }
.centered .lead { margin-left: auto; margin-right: auto; }
.centered .rule { margin-left: auto; margin-right: auto; }
.bg-off { background: var(--off); }
.bg-navy { background: var(--navy); }

/* ── SERVICES CARDS ── */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.svc-card {
  background: #fff; border-radius: 18px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,31,75,0.07);
  transition: transform .25s, box-shadow .25s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(11,31,75,0.14); }
.svc-img { position: relative; height: 220px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card:hover .svc-img img { transform: scale(1.04); }
.svc-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 5px;
}
.badge-red { background: var(--red); color: #fff; }
.badge-navy { background: var(--navy); color: #fff; }
.svc-body { padding: 24px; }
.svc-body h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-body p { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
.svc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  font-size: 10.5px; font-weight: 600; padding: 3px 9px; border-radius: 4px;
  background: var(--off2); color: var(--mid); letter-spacing: 0.05em;
}
.tag-r { background: rgba(192,39,45,0.08); color: var(--red); }
.tag-n { background: rgba(11,31,75,0.08); color: var(--navy); }
.svc-link {
  font-size: 13.5px; font-weight: 600; color: var(--red);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.svc-link:hover { gap: 9px; }
.aml-portal-bar {
  background: rgba(197,151,58,0.07);
  border: 1px solid rgba(197,151,58,0.22);
  border-radius: 8px; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 14px;
}
.aml-portal-bar p { font-size: 12.5px; color: var(--gold); font-weight: 500; }
.aml-portal-bar a {
  background: var(--gold); color: var(--navy-deep);
  font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 6px; white-space: nowrap;
}

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.process-step {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px 22px;
  box-shadow: 0 3px 16px rgba(11,31,75,0.05);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%);
  font-size: 18px; color: var(--border);
  z-index: 1;
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,31,75,0.1); }
.ps-num {
  font-size: 48px; font-weight: 800;
  color: #9da4b6; line-height: 1; margin-bottom: 8px;
}
.ps-icon { font-size: 28px; margin-bottom: 12px; }
.process-step h4 { font-size: 14.5px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--mid); line-height: 1.65; font-weight: 300; }

/* ── AML SECTION ── */
.aml-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.aml-left .stag { color: var(--gold); }
.aml-left .sh { color: #fff; }
.aml-left .sh em { color: var(--gold); }
.aml-left .rule { background: var(--gold); }
.aml-left .lead { color: #6880A8; margin-bottom: 22px; font-weight: 300; }
.aml-list {
  list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px;
}
.aml-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #8AABCC; line-height: 1.65; font-weight: 300;
}
.ck {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(197,151,58,0.14); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 1px;
}
.aml-portal-cta {
  background: rgba(197,151,58,0.09); border: 1px solid rgba(197,151,58,0.28);
  border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px;
}
.aml-portal-cta p { font-size: 13.5px; color: var(--gold); font-weight: 500; }
.aml-portal-cta a {
  background: var(--gold); color: var(--navy-deep);
  font-size: 13px; font-weight: 700; padding: 10px 18px; border-radius: 6px;
  white-space: nowrap; transition: background .2s;
}
.aml-portal-cta a:hover { background: var(--gold-lt); }
.aml-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.aml-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 20px 18px; transition: border-color .2s;
}
.aml-card:hover { border-color: rgba(197,151,58,0.3); }
.aml-card .ai { font-size: 22px; margin-bottom: 9px;color:#fff; }
.aml-card h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.aml-card p { font-size: 12px; color: #4A6488; line-height: 1.55; font-weight: 300; }
.aml-img-wrap {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45); position: relative;
}
.aml-img-wrap img { width: 100%; height: 480px; object-fit: cover; opacity: 0.72; }
.aml-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  background: linear-gradient(transparent, rgba(6,15,38,0.92)); padding-top: 40px;
}
.aml-mini {
  background: rgba(11,31,75,0.88); border: 1px solid rgba(197,151,58,0.18);
  border-radius: 10px; padding: 13px 14px; backdrop-filter: blur(8px);
}
.aml-mini .ai { font-size: 18px; margin-bottom: 5px; }
.aml-mini h5 { font-size: 11.5px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.aml-mini p { font-size: 11px; color: #4A6488; font-weight: 300; }

/* ── WHY DUBAI ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 80px rgba(11,31,75,0.18);
}
.why-img-wrap img { width: 100%; height: 460px; object-fit: cover; }
.why-badge {
  position: absolute; bottom: 22px; left: 22px;
  background: #fff; border-radius: 14px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.16);
  animation: floatY 3s ease-in-out infinite;
}
.why-badge .big { font-size: 34px; font-weight: 800; color: var(--red); line-height: 1; }
.why-badge .sml { font-size: 12px; color: var(--mid); font-weight: 500; line-height: 1.4; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.wp { display: flex; align-items: flex-start; gap: 14px; }
.wp-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--off2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.wp h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.wp p { font-size: 13.5px; color: var(--mid); line-height: 1.65; font-weight: 300; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff; border-radius: 18px; border: 1px solid var(--border);
  overflow: hidden; box-shadow: 0 4px 20px rgba(11,31,75,0.06);
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(11,31,75,0.12); }
.team-img { height: 300px; overflow: hidden; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-dept {
  position: absolute; top: 12px; left: 12px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 5px; background: var(--navy); color: #fff;
}
.team-body { padding: 18px 18px 20px; }
.team-body h4 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.team-body .role { font-size: 12px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.team-body p { font-size: 13px; color: var(--mid); line-height: 1.55; margin-bottom: 12px; font-weight: 300; }
.team-links { display: flex; gap: 8px; }
.team-links a {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--off2); color: var(--mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: background .2s, color .2s;
}
.team-links a:hover { background: var(--navy); color: #fff; }

/* Team mobile slider */
.team-slider-wrap { position: relative; }
.team-slider-nav {
  display: none; justify-content: center; gap: 8px; margin-top: 20px;
}
.team-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background .2s, width .2s; padding: 0;
}
.team-dot.active { background: var(--red); width: 22px; border-radius: 4px; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff; border-radius: 16px; border: 1px solid var(--border);
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(11,31,75,0.06);
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.testi-card:hover { box-shadow: 0 12px 40px rgba(11,31,75,0.1); transform: translateY(-3px); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote {
  font-size: 14px; color: var(--mid); line-height: 1.75;
  margin-bottom: 20px; flex: 1; font-style: italic; font-weight: 300;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testi-name { font-size: 13.5px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 11.5px; color: var(--light); margin-top: 1px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff; border-radius: 16px; border: 1px solid var(--border);
  overflow: hidden; box-shadow: 0 3px 16px rgba(11,31,75,0.06);
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 48px rgba(11,31,75,0.12); }
.blog-img { height: 190px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 20px 20px 22px; }
.blog-cat {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px;
}
.blog-body h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 7px; line-height: 1.45; }
.blog-body p { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 12px; font-weight: 300; }
.blog-meta { font-size: 11.5px; color: var(--light); }

/* ── FAQ ── */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.faq-img { border-radius: 16px; overflow: hidden; }
.faq-img img { width: 100%; height: 380px; object-fit: cover; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 15px; font-size: 14.5px; font-weight: 600;
  color: var(--text); text-align: left; cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-arr {
  width: 24px; height: 24px; border-radius: 50%; background: var(--off2); color: var(--mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: background .2s, transform .3s;
}
.faq-item.open .faq-arr { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: 13.5px; color: var(--mid); line-height: 1.75; padding-bottom: 16px; display: none; font-weight: 300;    padding-left: 15px; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .sh { font-size: clamp(26px, 3vw, 38px); }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ci { display: flex; align-items: flex-start; gap: 13px; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.ci-text span { font-size: 10px; font-weight: 700; color: var(--light); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 2px; }
.ci-text a, .ci-text .v { font-size: 14px; font-weight: 500; color: var(--text); }
.ci-text a:hover { color: var(--red); }
.contact-img-wrap { border-radius: 14px; overflow: hidden; margin-top: 20px; }
.contact-img-wrap img { width: 100%; height: 200px; object-fit: cover; }
.cform {
  background: #fff; border-radius: 18px; padding: 34px 30px;
  border: 1px solid var(--border); box-shadow: 0 8px 50px rgba(11,31,75,0.1);
}
.cform h3 { font-size: 23px; font-weight: 700; color: var(--text); margin-bottom: 22px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label { font-size: 10.5px; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; }
.fg input, .fg select, .fg textarea {
  padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 7px;
  font-size: 14px; color: var(--text); background: #fff;
  outline: none; width: 100%; transition: border-color .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--red); }
.fg textarea { resize: vertical; min-height: 90px; }
.fsub {
  width: 100%; background: var(--red); color: #fff;
  padding: 13px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; transition: background .2s;
}
.fsub:hover { background: var(--red-dark); }

/* ── WHY CHOOSE ELEVATE ── */
.wce-section {
  padding: 60px 5%;
  background: linear-gradient(160deg, #f0f4fb 0%, #e8eef8 40%, #f5f7fb 100%);
  position: relative;
  overflow: hidden;
}
.wce-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,39,45,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.wce-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,31,75,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.wce-inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.wce-header {
  text-align: center; margin-bottom: 56px;
}
.wce-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(11,31,75,0.06);
  border: 1px solid rgba(11,31,75,0.12);
  color: var(--navy); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 20px;
}
.wce-tag svg { width: 13px; height: 13px; fill: var(--red); }
.wce-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; color: var(--navy);
  line-height: 1.15; margin-bottom: 18px;
}
.wce-title .highlight { color: var(--red); }
.wce-desc {
  font-size: 15.5px; color: var(--mid);
  line-height: 1.8; max-width: 900px;
  margin: 0 auto; font-weight: 300;
}
.wce-desc strong { color: var(--navy); font-weight: 700; }
.wce-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.wce-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(221,227,240,0.8);
  border-radius: 16px;
  padding: 28px 26px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(11,31,75,0.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.wce-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11,31,75,0.12);
  border-color: rgba(192,39,45,0.2);
}
.wce-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #dce8f8 0%, #c8d8f0 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(11,31,75,0.1);
}
.wce-card-body h4 {
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px; line-height: 1.3;
}
.wce-card-body p {
  font-size: 13.5px; color: var(--mid);
  line-height: 1.7; font-weight: 300;
}
.wce-card-body p strong { color: var(--navy); font-weight: 600; }

@media (max-width: 700px) {
  .wce-grid { grid-template-columns: 1fr; gap: 18px; }
  .wce-card { padding: 22px 18px; }
  .wce-icon { width: 44px; height: 44px; font-size: 18px; }
}

/* ── STATS ── */
.stats-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5px 3%;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-block { text-align: center; padding: 24px 16px; }
.stat-block .num { font-size: 46px; font-weight: 800; color: #fff; line-height: 1; }
.stat-block .num span { color: var(--gold); }
.stat-block .lbl { font-size: 12px; color: #5A72A0; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; font-weight: 500; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, #060F26 0%, #6B1215 50%, #C0272D 100%); padding: 56px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-strip h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: #fff; margin-bottom: 10px; position: relative; }
.cta-strip p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 28px; position: relative; font-weight: 300; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }
.btn-white { background: #fff; color: #c0272d; padding: 13px 24px; border-radius: 8px; font-size: 13.5px; font-weight: 700; transition: background .2s; border: none; cursor: pointer; }

.btn-white:hover { background: #f0f0f0;color:#c0272d!important; }
.btn-gold-cta { background: var(--gold); color: var(--navy-deep); padding: 13px 22px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: background .2s; }
.btn-gold-cta:hover { background: var(--gold-lt); }
.btn-clear { background: rgba(255,255,255,0.14); color: #fff; padding: 13px 22px; border-radius: 8px; font-size: 14px; font-weight: 700; border: 1px solid rgba(255,255,255,0.2); transition: background .2s; }
.btn-clear:hover { background: rgba(255,255,255,0.24);color: #fff!important; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); padding: 60px 5% 0; color: #fff; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fl-name { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: 0.06em; line-height: 1; }
.fl-name em { color: var(--red); font-style: normal; }
.fl-sub { font-size: 9.5px; color: #3D5278; letter-spacing: 0.2em; text-transform: uppercase; margin: 4px 0 14px; }
.footer-logo p { font-size: 13px; color: #fff; line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.social { display: flex; gap: 8px; }
.social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); color: #fff!important;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: background .2s, color .2s;
}
.social a:hover { background: var(--navy-mid); color: #fff; }
.mob-social { display: flex; gap: 10px; margin-top: 20px;}

  .mob-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgb(237 234 234);
    color: #060f26 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .2s, color .2s;
}
.fc h4 { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fc ul li a { font-size: 13px; color: #fff!important; transition: color .2s; font-weight: 300; }
.fc ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; flex-wrap: wrap; gap: 10px;
}
.footer-bottom span { font-size: 12px; color: #2A3D60; }
.footer-aml { font-size: 14px; color: var(--gold); font-weight: 600; transition: color .2s; }
.footer-aml:hover { color: var(--gold-lt); }

/* ── FLOATING BUTTONS ── */
.float-bar {
  position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, var(--navy-deep) 0%, #0d2255 50%, var(--navy-deep) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 2%;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
}
.float-bar-left {
  display: flex; align-items: center; gap: 12px;
}
.float-advisor-avatars { display: flex; }
.float-advisor-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #fff; font-weight: 600;
  margin-left: -8px;
}
.float-advisor-avatars span:first-child { margin-left: 0; }
.float-online-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  display: inline-block; margin-right: 5px;
  animation: pulse 2s infinite;
}
.float-bar-left .fb-label strong { font-size: 13px; font-weight: 600; color: #fff; display: block; }
.float-bar-left .fb-label span { font-size: 11px; color: #5A80AA; }
.float-bar-btns { display: flex; gap: 8px; }
.float-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform .15s, filter .15s;
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.fb-call { background: rgba(255,255,255,0.12); color: #fff!important; border: 1px solid rgba(255,255,255,0.15); }
.fb-wa { background: #25D366; color: #fff; }
.fb-wa:hover{color: #fff!important;}
.fb-quote { background: #c0272d; color: #fff!important; }

/* Side floating buttons (desktop) */
.sf-btn {
  writing-mode: vertical-rl; text-orientation: mixed;
  padding: 16px 10px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: padding .2s;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.sf-btn:first-child { border-radius: 10px 0 0 0; }
.sf-btn:last-child { border-radius: 0 0 0 10px; }
.sf-btn:hover { padding-right: 16px; }
.sf-call { background: var(--navy); color: #fff; }
.sf-wa { background: #25D366; color: #fff; }
.sf-quote { background: var(--red); color: #fff; }

/* ── SCROLL-IN ANIMATION CLASSES ── */
.scroll-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-left.visible { opacity: 1; transform: translateX(0); }
.scroll-reveal-right {
  opacity: 0; transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── PARTNERS SECTION ── */
.partners-section {
  padding: 60px 5%;
  background: linear-gradient(135deg, #f0f4fb 0%, #e8eef8 100%);
  position: relative;
  overflow: hidden;
}
.partners-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,39,45,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.partners-inner { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; }
.partners-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(192,39,45,0.08);
  border: 1px solid rgba(192,39,45,0.18);
  color: var(--red); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 18px;
}
.partners-section h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800; color: var(--navy);
  margin-bottom: 12px; line-height: 1.15;
}
.partners-section h2 .accent { color: var(--red); }
.partners-section .partners-lead {
  font-size: 15px; color: var(--mid); line-height: 1.75;
  max-width: 560px; margin: 0 auto 48px; font-weight: 300;
}
.partners-row-top {
  display: flex; justify-content: center; align-items: center;
  gap: 20px; flex-wrap: wrap; margin-bottom: 20px;
}
.partner-logo-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: center;
  min-width: 160px; height: 72px;
  box-shadow: 0 2px 12px rgba(11,31,75,0.06);
  transition: box-shadow .2s, transform .2s;
}
.partner-logo-box:hover { box-shadow: 0 8px 28px rgba(11,31,75,0.12); transform: translateY(-2px); }
.partner-logo-box img { max-height: 40px; max-width: 130px; width: auto; object-fit: contain; filter: grayscale(20%); transition: filter .2s; }
.partner-logo-box:hover img { filter: grayscale(0%); }
.partners-ticker-wrap {
  position: relative; overflow: hidden; margin-bottom: 40px;
}
.partners-ticker-wrap::before,
.partners-ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.partners-ticker-wrap::before { left: 0; background: linear-gradient(to right, #e8eef8, transparent); }
.partners-ticker-wrap::after  { right: 0; background: linear-gradient(to left, #e8eef8, transparent); }
.partners-ticker {
  display: flex; gap: 20px;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.partners-ticker:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partners-cta-wrap { margin-top: 8px; }
.partners-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer; text-decoration: none;
}
.partners-cta:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ── FOOTER LOGO ── */
.footer-logo-img { margin-bottom: 16px; }
.footer-logo-img img { height: 100px; width: auto; }

button:hover, html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, a.button:hover, button:focus, html input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, a.button:focus, a.wp-block-button__link:not(.has-background):active, a.wp-block-button__link:not(.has-background):focus, a.wp-block-button__link:not(.has-background):hover{
  background-color: none!important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .side-floats { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .ham { display: flex; }
  .hero-inner { padding: 80px 5% 140px; }
  .hero h1 { font-size: clamp(34px, 6vw, 52px); }
  .banner h1{ font-size: 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-img-wrap img { height: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .aml-inner { grid-template-columns: 1fr; gap: 40px; }
  .aml-img-wrap img { height: 320px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-bar-left { display: none; }
  .float-bar { justify-content: center; gap: 10px; padding: 10px 4%; }
  .float-bar-btns { gap: 6px; }
  .partners-row-top { gap: 12px; }
  .partner-logo-box { min-width: 130px; padding: 12px 16px; }
}


@media (max-width: 600px) {
  .banner h1{ font-size: 28px; }
  .topbar { display: none; }
  .hero-inner { padding: 70px 5% 130px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns a, .hero-btns button { width: 100%; text-align: center; justify-content: center; }
  .hero-stat .hs-num { font-size: 20px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 14px 0 0; margin-right: 14px; }
  .hero-reviews { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .mrow { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .aml-cards { grid-template-columns: 1fr; }
  .ts-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); margin-right: 0; padding: 12px 0; }
  .nav-aml { display: none; }
  .float-btn { padding: 8px 12px; font-size: 12px; }
  .team-grid {
    display: flex; overflow: hidden; gap: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .team-card {
    min-width: 100%; scroll-snap-align: start;
    transition: none;
  }
  .team-slider-nav { display: flex; }
  .setup-chip { padding: 10px 14px; }
  .stat-block .num { font-size: 18px; }
}
@media (max-width: 420px) {
  .banner h1{ font-size: 28px; }
  .float-bar-btns { flex-wrap: wrap; justify-content: center; }
}
h2.sec-title{font-size:clamp(1.85rem,3.4vw,2.75rem);font-weight:600;color:var(--navy);line-height:1.18;margin-bottom:18px;letter-spacing:-0.3px;}
h2.sec-title span{color:var(--gold);}
h2.sec-title.light{color:#fff;}h2.sec-title.light span{color:var(--gold);}
.sec-body{font-size:15px;font-weight:300;color:var(--muted);line-height:1.85;}
.sec-body.light{color:rgba(255,255,255,0.62);}
.container{max-width:1200px;margin:0 auto;padding:0 44px;}

/* ── INNER PAGE BANNER ── */
.banner{position:relative;min-height:430px;display:flex;align-items:center;overflow:hidden;background:var(--navy-dark);}
.banner-bg{position:absolute;inset:0;background-size:cover;background-position:center 35%;filter:brightness(0.22) saturate(0.6);animation:slow-drift 20s ease-in-out infinite alternate;}
@keyframes slow-drift{from{transform:scale(1.04) translateX(0);}to{transform:scale(1.09) translateX(-1%);}}
.banner-overlay{position:absolute;inset:0;background:linear-gradient(108deg,rgba(7,18,41,0.96) 0%,rgba(11,31,75,0.72) 20%,rgba(192,39,45,0.12) 80%)}
.banner::before{content:'';position:absolute;left:0;top:0;bottom:0;width:5px;background:linear-gradient(180deg,var(--gold) 0%,var(--crimson) 100%);z-index:5;}
.banner-inner{position:relative;z-index:4;max-width:1280px;margin:0 auto;padding:20px 20px 20px 20px;width:100%;}
.banner h1{font-size:50px;font-weight:600;color:#fff;line-height:1.25;margin-bottom:18px;letter-spacing:-0.4px;animation:fadeUp 0.6s ease 0.2s both;max-width:700px;}
.banner-desc{font-size:15px;font-weight:300;color:rgba(255,255,255,0.65);line-height:1.8;max-width:580px;animation:fadeUp 0.6s ease 0.38s both;}
.breadcrumb{position:absolute;bottom:22px;left:64px;z-index:5;display:flex;align-items:center;gap:8px;font-size:11.5px;color:rgba(255,255,255,0.35);animation:fadeUp 0.5s ease 0.55s both;}
.breadcrumb a{color:rgba(255,255,255,0.45)!important;text-decoration:none;transition:color 0.2s;}
.breadcrumb a:hover{color:var(--gold);}
.breadcrumb .cur{color:var(--gold);}

/* ── ABOUT PAGE ── */
.eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:10.5px;font-weight:600;letter-spacing:3.5px;text-transform:uppercase;color:var(--gold);margin-bottom:14px;}
.eyebrow::before{content:'';display:block;width:28px;height:2px;background:var(--gold);flex-shrink:0;}
.eyebrow.crimson{color:var(--crimson)}.eyebrow.crimson::before{background:var(--crimson);}
.eyebrow.navy{color:var(--navy)}.eyebrow.navy::before{background:var(--navy);}
.container{max-width:1280px;margin:0 auto;padding:0 44px;}

.about-section{background:#fff;}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.about-image-wrap{position:relative;}
.about-img{width:100%;aspect-ratio:4/5;object-fit:cover;display:block;filter:grayscale(15%) contrast(1.05);}
.about-img-badge{position:absolute;bottom:-20px;right:-20px;background:var(--navy);padding:26px 22px;width:162px;border-top:4px solid var(--gold);}
.about-img-badge .num{font-size:2.4rem;font-weight:700;color:var(--gold);line-height:1;display:block;}
.about-img-badge p{font-size:12px;color:rgba(255,255,255,0.6);line-height:1.5;margin-top:6px;}
.about-flags{display:flex;gap:10px;margin:26px 0 4px;flex-wrap:wrap;}
.flag-pill{display:inline-flex;align-items:center;gap:7px;padding:7px 14px;border:1px solid var(--warm-grey);font-size:12.5px;font-weight:500;color:var(--navy);background:var(--off-white);}
.flag-pill span{font-size:15px;}
.about-divider{width:44px;height:3px;background:linear-gradient(90deg,var(--gold),var(--crimson));margin:22px 0;}

/* MISSION */
.mission-section{background:var(--navy);position:relative;overflow:hidden;}
.mission-section::before{content:'MISSION';position:absolute;right:-30px;top:50%;transform:translateY(-50%) rotate(90deg);font-family:var(--serif);font-size:9rem;font-weight:700;color:rgba(255,255,255,0.02);pointer-events:none;white-space:nowrap;letter-spacing:0.3em;}
.mission-bg{position:absolute;top:0;right:0;bottom:0;width:45%;background:radial-gradient(circle at 80% 50%,rgba(197,151,58,0.07) 0%,transparent 60%),repeating-linear-gradient(45deg,rgba(255,255,255,0.012) 0px,rgba(255,255,255,0.012) 1px,transparent 1px,transparent 40px);pointer-events:none;}
.mission-grid{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;}
.mission-quote{position:relative;padding:32px;margin-top:30px;border:1px solid rgba(197,151,58,0.2);background:rgba(197,151,58,0.04);}
.mission-quote::before{content:'\201C';position:absolute;top:-20px;left:24px;font-family:var(--serif);font-size:5rem;color:var(--gold);line-height:1;opacity:0.55;}
.mission-quote p{font-family:var(--serif);font-size:1.1rem;font-style:italic;color:rgba(255,255,255,0.78);line-height:1.7;}
.mission-pillars{display:grid;gap:16px;}
.pillar{display:flex;gap:16px;align-items:flex-start;padding:20px;border:1px solid rgba(255,255,255,0.07);border-left:3px solid var(--gold);background:rgba(255,255,255,0.03);transition:background 0.2s,border-left-color 0.2s;}
.pillar:hover{background:rgba(255,255,255,0.06);border-left-color:var(--crimson);}
.pillar-icon{width:38px;height:38px;background:rgba(197,151,58,0.1);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--gold);}
.pillar-icon svg{width:17px;height:17px;}
.pillar-title{font-size:13px;font-weight:600;color:#fff;margin-bottom:4px;}
.pillar-text{font-size:13px;font-weight:300;color:rgba(255,255,255,0.52);line-height:1.6;}

/* VISION */
.vision-section{background:var(--off-white);position:relative;overflow:hidden;}
.vision-section::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--gold),var(--crimson) 50%,transparent);}
.vision-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.vision-image-stack{position:relative;height:460px;}
.vision-img-main{position:absolute;top:0;left:0;width:73%;height:83%;object-fit:cover;filter:grayscale(10%);}
.vision-img-accent{position:absolute;bottom:0;right:0;width:52%;height:52%;object-fit:cover;border:5px solid var(--off-white);filter:grayscale(10%);}
.vision-stamp{position:absolute;top:50%;left:58%;transform:translate(-50%,-50%);z-index:3;width:84px;height:84px;background:var(--crimson);border-radius:50%;display:flex;align-items:center;justify-content:center;border:4px solid var(--off-white);box-shadow:0 8px 24px rgba(192,39,45,0.3);}
.vision-stamp svg{width:34px;height:34px;color:#fff;}
.vision-body p+p{margin-top:16px;}
.vision-cta{display:inline-flex;align-items:center;gap:10px;margin-top:32px;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--navy);text-decoration:none;padding-bottom:4px;border-bottom:2px solid var(--gold);transition:color 0.2s,border-color 0.2s;}
.vision-cta:hover{color:var(--crimson);border-color:var(--crimson);}

/* JOURNEY */
.journey-section{background:var(--navy-dark);position:relative;overflow:hidden;}
.journey-section::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(-45deg,rgba(255,255,255,0.01) 0px,rgba(255,255,255,0.01) 1px,transparent 1px,transparent 60px);pointer-events:none;}
.journey-head{text-align:center;margin-bottom:60px;position:relative;z-index:2;}
.timeline{position:relative;z-index:2;}
.timeline-track{position:absolute;top:24px;left:0;right:0;height:2px;background:rgba(255,255,255,0.07);}
.timeline-fill{height:100%;background:linear-gradient(90deg,var(--gold),var(--crimson));width:100%;}
.timeline-items{display:grid;grid-template-columns:repeat(6,1fr);gap:8px;position:relative;}
.tl-item{position:relative;padding-top:54px;text-align:center;}
.tl-dot{position:absolute;top:16px;left:50%;transform:translateX(-50%);width:17px;height:17px;background:var(--navy-dark);border:2px solid rgba(255,255,255,0.18);border-radius:50%;z-index:2;transition:border-color 0.2s,background 0.2s;}
.tl-item:hover .tl-dot,.tl-item.active .tl-dot{background:var(--gold);border-color:var(--gold);box-shadow:0 0 14px rgba(197,151,58,0.45);}
.tl-year{font-family:var(--serif);font-size:1.15rem;font-weight:700;color:var(--gold);margin-bottom:9px;display:block;}
.tl-text{font-size:12.5px;font-weight:300;color:rgba(255,255,255,0.48);line-height:1.65;padding:0 4px;}
.tl-item:hover .tl-text{color:rgba(255,255,255,0.75);}
.journey-footer{margin-top:56px;padding-top:32px;border-top:1px solid rgba(255,255,255,0.07);display:flex;align-items:center;justify-content:center;gap:10px;font-size:11px;font-weight:600;letter-spacing:3px;text-transform:uppercase;color:rgba(255,255,255,0.28);position:relative;z-index:2;flex-wrap:wrap;}
.journey-footer span{color:rgba(197,151,58,0.65);}

/* WHY */
.why-section{background:#fff;}
.why-head{text-align:center;margin-bottom:52px;}
.why-head .sec-body{max-width:580px;margin:0 auto;}
.why-choose{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;}
.why-card{background:var(--off-white);padding:34px 26px;position:relative;transition:background 0.25s,transform 0.2s;overflow:hidden;}
.why-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--warm-grey);transition:background 0.25s;}
.why-card:hover{background:var(--navy);transform:translateY(-4px);}
.why-card:hover::before{background:var(--gold);}
.why-card:hover .why-icon{background:rgba(197,151,58,0.14);color:var(--gold);}
.why-card:hover .why-title{color:#fff;}
.why-card:hover .why-text{color:rgba(255,255,255,0.52);}
.why-card:hover .why-num{color:rgba(255,255,255,0.04);}
.why-num{position:absolute;top:14px;right:18px;font-family:var(--serif);font-size:3.2rem;font-weight:700;color:rgba(11,31,75,0.05);line-height:1;pointer-events:none;transition:color 0.25s;}
.why-icon{width:46px;height:46px;background:rgba(11,31,75,0.07);display:flex;align-items:center;justify-content:center;color:var(--navy);margin-bottom:18px;transition:background 0.25s,color 0.25s;}
.why-icon svg{width:21px;height:21px;}
.why-title{font-family:var(--serif);font-size:1.08rem;font-weight:600;color:var(--navy);margin-bottom:10px;line-height:1.3;transition:color 0.25s;}
.why-text{font-size:13.5px;font-weight:300;color:var(--muted);line-height:1.7;transition:color 0.25s;}

/* CTA */
.cta-section{background:var(--crimson);padding:80px 0;position:relative;overflow:hidden;}
.cta-section::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(135deg,rgba(255,255,255,0.03) 0px,rgba(255,255,255,0.03) 1px,transparent 1px,transparent 50px);pointer-events:none;}
.cta-section::after{content:'';position:absolute;right:-60px;top:50%;transform:translateY(-50%);width:340px;height:340px;border-radius:50%;background:rgba(255,255,255,0.04);pointer-events:none;}
.cta-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr auto;gap:60px;align-items:center;}
.cta-text h2{font-family:var(--serif);font-size:clamp(1.7rem,2.8vw,2.5rem);font-weight:600;color:#fff;line-height:1.22;margin-bottom:14px;}
.cta-text p{font-size:15px;font-weight:300;color:rgba(255,255,255,0.73);line-height:1.75;max-width:580px;}
.btn-cta-white{display:inline-flex;align-items:center;gap:12px;background:#fff;color:var(--crimson);font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:17px 34px;text-decoration:none;white-space:nowrap;clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));transition:background 0.2s,color 0.2s,transform 0.15s;}
.btn-cta-white:hover{background:var(--navy);color:var(--gold);transform:translateY(-2px);}

@keyframes fadeUp{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);}}
.reveal{opacity:0;transform:translateY(20px);transition:opacity 0.65s ease,transform 0.65s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}

@media(max-width:1024px){
  .about-grid,.mission-grid,.vision-grid,.cta-inner{grid-template-columns:1fr;gap:48px;}
  .timeline-items{grid-template-columns:repeat(3,1fr);}
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .teams-grid{grid-template-columns:repeat(2,1fr);}
  .about-img-badge{right:0;}
  .vision-image-stack{height:340px;}
  .nav-aml{font-size: 10px!important;}
  .nav-item > a {font-size: 10px;}
  
}
@media(max-width:850px){
 .nav-right .nav-dropdown {
    display: none;
  }
}


@media(max-width:640px){
  /*section{padding:60px 0;}*/
  .container{padding:0 0px;}
  .banner-inner{padding:60px 20px 80px;}
  .breadcrumb{left:20px;}
  .timeline-items{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:1fr;}
  .teams-grid{grid-template-columns:1fr;}
  .why-choose{display:grid;grid-template-columns:repeat(1,1fr);gap:2px;}
  .mission-section::before{display:none;}

  .sh-btn-outline-dark{margin-left: 0px;
    margin-top: 10px;}
}
@media (max-width: 768px) {
 
  .aml-cta-btn-red{
        margin-top: 10px;
  }
  .section{
    padding: 30px 5%;
}

.partners-section {
    padding: 30px 5%;
}
.wce-section {
    padding: 60px 5%;
  }
  .contact-grid { gap: 0px; }
  .banner h1{
    font-size: 30px;
  }
}

