/* ============================================
   CAMBAY SOLUTIONS — LIGHT THEME INDEX4
   Brand: Navy #304276 | Red #d92129
   Style: Futuristic Light / Airy Premium
============================================ */
:root {
  --navy:    #304276;
  --navy-d:  #1e2d54;
  --navy-l:  #3d5494;
  --red:     #d92129;
  --red-d:   #b01820;
  --teal:    #0891b2;
  --sky:     #0ea5e9;
  --bg:      #f0f4ff;
  --bg2:     #e8eeff;
  --white:   #ffffff;
  --surface: #ffffff;
  --border:  rgba(48,66,118,0.1);
  --shadow:  rgba(48,66,118,0.08);
  --text:    #1e2d54;
  --muted:   #6b7b9e;
  --light-muted: #a0aec0;
}

*  { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── LIGHT ANIMATED BG MESH ─── */
.mesh-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 10% 20%, rgba(48,66,118,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 90% 80%, rgba(217,33,41,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 60% 30%, rgba(8,145,178,0.05) 0%, transparent 70%);
}
.grid-lines {

}

/* ═══════════════════════════════════════════
   NAVBAR — fully rebuilt, pixel-perfect
   ═══════════════════════════════════════════ */

/* ── Base bar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: 0 1px 24px rgba(48,66,118,0.07);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 36px rgba(48,66,118,0.11);
}
.navbar > .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; position: relative;
}
.navbar-brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.navbar-brand img { height: 60px; width: auto; display: block; }

/* ── Desktop nav list ── */
.nav-links {
  display: flex; align-items: stretch;
  gap: 0; list-style: none; margin: 0; padding: 0;
  height: 76px;
}
.nav-links > li {
  display: flex; align-items: center; position: relative;
}

/* Parent link */
.nav-links > li > a.nav-parent {
  display: flex; align-items: center; gap: 5px;
  height: 100%; padding: 0 15px;
  color: #3d4a6e; font-weight: 500; font-size: 15px;
  text-decoration: none; white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.nav-links > li > a.nav-parent:hover,
.nav-links > li.open > a.nav-parent {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.nav-links > li > a.nav-parent .chev {
  font-size: 10px; transition: transform 0.25s;
  display: inline-block; margin-top: 1px;
}
.nav-links > li.open > a.nav-parent .chev { transform: rotate(180deg); }

/* ── Standard Dropdown ── */
.std-dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(48,66,118,0.13);
  z-index: 10000;
  /* Invisible bridge prevents gap from closing menu */
  margin-top: 0;
}
/* Bridge element fills the 3px border-bottom gap so mouse can travel from nav link into menu */
.std-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 0; right: 0; height: 6px;
}
.nav-links > li.open .std-dropdown { display: block; animation: ddFadeIn 0.18s ease; }
@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  color: #4a5578; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dd-item:hover { background: var(--bg); color: var(--navy); }
.dd-item i { font-size: 16px; color: var(--sky); flex-shrink: 0; width: 20px; text-align: center; }

/* ── Mega Menu ── */
.mega-li { position: static !important; }
.mega-panel {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 20px 60px rgba(48,66,118,0.12);
  z-index: 9998;
  padding: 32px 0;
}
.nav-links > .mega-li.open .mega-panel { display: block; animation: ddFadeIn 0.2s ease; }

.mega-col-title {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--navy); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--bg2);
}
.mega-link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none; color: #4a5578;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 2px;
}
.mega-link:hover { background: var(--bg); color: var(--navy); }
.mega-link i { font-size: 20px; color: var(--sky); margin-top: 2px; flex-shrink: 0; }
.mega-link strong { color: var(--text); display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.mega-link span { font-size: 12px; color: var(--muted); line-height: 1.4; }

.mega-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  border-radius: 16px; padding: 28px; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.mega-cta-box h5 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.mega-cta-box p  { color: rgba(255,255,255,0.65); font-size: 13px; margin-bottom: 22px; line-height: 1.6; }
.btn-mega {
  background: #fff; color: var(--navy); padding: 11px 22px;
  border-radius: 10px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: 0.2s; display: inline-block;
  border: none; cursor: pointer;
}
.btn-mega:hover { background: var(--red); color: #fff; }

/* ── CTA Button ── */
.btn-talk {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  color: #fff; border: none; border-radius: 10px;
  padding: 11px 26px; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(48,66,118,0.22);
  flex-shrink: 0;
  text-decoration: none;
}
.btn-talk:hover {
  background: linear-gradient(135deg, var(--red) 0%, #e84855 100%);
  box-shadow: 0 8px 24px rgba(217,33,41,0.28);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   MOBILE NAVBAR
   ═══════════════════════════════════════════ */
.mob-toggle {
  display: none;
  background: transparent; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 8px 11px; cursor: pointer;
  color: var(--navy); font-size: 22px; line-height: 1;
  transition: 0.2s; flex-shrink: 0;
}
.mob-toggle:hover { background: var(--bg); }

/* Mobile drawer */
.mob-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}
.mob-nav.open { display: block; }

.mob-nav-inner { padding: 12px 0 20px; width: 100%; }

/* Top-level mobile item */
.mob-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px;
  width: 100%;
  color: var(--navy); font-weight: 600; font-size: 16px;
  text-decoration: none; cursor: pointer;
  border-bottom: 1px solid rgba(48,66,118,0.06);
  transition: background 0.15s;
  user-select: none;
}
.mob-item:hover { background: var(--bg); }
.mob-item .mob-chev {
  font-size: 12px; color: var(--muted); transition: transform 0.25s;
  flex-shrink: 0; margin-left: 8px;
}
.mob-item.open .mob-chev { transform: rotate(180deg); }
.mob-item.plain { cursor: default; }
.mob-item.plain:hover { background: transparent; }

/* Mobile submenu accordion */
.mob-sub {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid rgba(48,66,118,0.06);
}
.mob-sub.open { display: block; }
.mob-sub-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 24px;
  color: #4a5578; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: color 0.15s, background 0.15s;
}
.mob-sub-item:hover { background: rgba(48,66,118,0.06); color: var(--navy); }
.mob-sub-item i { font-size: 16px; color: var(--sky); flex-shrink: 0; width: 20px; text-align: center; }

/* Mobile mega sub — grouped */
.mob-mega-section { padding: 12px 20px 4px; }
.mob-mega-title {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--navy); opacity: 0.5;
  padding: 6px 4px 8px; display: block;
}
.mob-sub-item.mega { padding-left: 24px; }

/* Mobile CTA */
.mob-cta-wrap { padding: 16px 20px 4px; }
.btn-talk-mob {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  color: #fff; padding: 14px; border-radius: 12px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: 0.3s; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(48,66,118,0.2);
}
.btn-talk-mob:hover { background: linear-gradient(135deg, var(--red), #e84855); color: #fff; }

/* ── Responsive breakpoints ── */
@media (max-width: 1199px) {
  .nav-links > li > a.nav-parent { padding: 0 11px; font-size: 14px; }
}
@media (max-width: 991px) {
  .nav-links { display: none !important; }
  .btn-talk  { display: none !important; }
  .mob-toggle { display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 480px) {
  .navbar-brand img { height: 48px; }
  .navbar > .container { height: 64px; }
  .mob-nav { max-height: calc(100vh - 64px); }
  .hero-slider { margin-top: 64px; }
}

@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO SLIDER ─── */
.hero-slider {
  position: relative; z-index: 1;
  height: 100vh; min-height: 700px;
  overflow: hidden; margin-top: 76px;
}

/* SLIDES */
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.9s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; }

/* Slide 1 — soft sky gradient */
.slide-1 {
  background: linear-gradient(125deg, #eef3ff 0%, #dde8ff 40%, #e8f4ff 70%, #f0faff 100%);
}
/* Slide 2 — soft warm cream gradient */
.slide-2 {
  background: linear-gradient(125deg, #fff7f0 0%, #ffecec 30%, #fff0f5 60%, #f0f4ff 100%);
}

/* Slide decorative blobs */
.slide-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; opacity: 0.45;
}
.slide-1 .blob-a { width:550px;height:550px; background:rgba(48,66,118,0.12); top:-150px; right:-100px; }
.slide-1 .blob-b { width:350px;height:350px; background:rgba(8,145,178,0.1); bottom:-80px; left:5%; }
.slide-2 .blob-a { width:500px;height:500px; background:rgba(217,33,41,0.08); top:-100px; right:-80px; }
.slide-2 .blob-b { width:300px;height:300px; background:rgba(48,66,118,0.08); bottom:-60px; left:10%; }

/* decorative grid only inside hero */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(48,66,118,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48,66,118,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* slide content */
.slide-inner { position: relative; z-index: 2; width: 100%; padding: 0 0 40px; }
.slide-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 20px; font-size: 12px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 28px;
}
.slide-chip .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
.slide-1 .pulse-dot { background: var(--sky); box-shadow: 0 0 0 0 rgba(8,145,178,0.4); }
.slide-2 .pulse-dot { background: var(--red); box-shadow: 0 0 0 0 rgba(217,33,41,0.4); }
@keyframes pulseDot {
  0%   { transform:scale(1); box-shadow:0 0 0 0 rgba(8,145,178,0.5); }
  70%  { transform:scale(1.1); box-shadow:0 0 0 8px rgba(8,145,178,0); }
  100% { transform:scale(1); box-shadow:0 0 0 0 rgba(8,145,178,0); }
}

h1.slide-title {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800; line-height: 1.08; margin-bottom: 22px;
  color: var(--navy-d);
}
.gradient-navy {
  background: linear-gradient(90deg, var(--navy) 0%, var(--sky) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.gradient-red {
  background: linear-gradient(90deg, var(--red) 0%, #ff6b35 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.slide-desc {
  font-size: 17px; color: var(--muted); max-width: 520px;
  line-height: 1.8; margin-bottom: 36px;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-slide-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  color: #fff; padding: 15px 34px; border-radius: 12px; font-weight: 700;
  font-size: 15px; text-decoration: none; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 24px rgba(48,66,118,0.25);
}
.btn-slide-primary:hover { transform:translateY(-3px); box-shadow:0 16px 36px rgba(48,66,118,0.3); color:#fff; }
.slide-2 .btn-slide-primary {
  background: linear-gradient(135deg, var(--red), #e84855);
  box-shadow: 0 8px 24px rgba(217,33,41,0.25);
}
.slide-2 .btn-slide-primary:hover { box-shadow:0 16px 36px rgba(217,33,41,0.35); }
.btn-slide-ghost {
  border: 1.5px solid var(--border); color: var(--navy); padding: 15px 28px;
  border-radius: 12px; font-weight: 600; font-size: 15px; text-decoration: none;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  transition: 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-slide-ghost:hover { border-color: var(--navy); background: var(--white); color: var(--navy); }

/* RIGHT VISUAL */
.slide-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.slide-img-wrap {
  position: relative; z-index: 2;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(48,66,118,0.15), 0 0 0 1px rgba(48,66,118,0.06);
  background: #fff;
}
.slide-img-wrap img {
  width: 100%; max-height: 480px; object-fit: cover; display: block;
  transform: scale(1); transition: transform 8s ease;
}
.slide.active .slide-img-wrap img { transform: scale(1.04); }

/* Floating cards on slide */
.float-card {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px); border-radius: 16px;
  box-shadow: 0 20px 50px rgba(48,66,118,0.12);
  border: 1px solid rgba(255,255,255,0.8);
  padding: 16px 20px;
}
.fc-top-left  { top: 24px;    left: -32px;  min-width: 190px; animation: floatA 5s ease-in-out infinite; }
.fc-bot-right { bottom: 28px; right: -28px; min-width: 170px; animation: floatB 6s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY( 10px)} }
.fc-icon { width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;margin-bottom:8px; }
.fc-val  { font-size:22px;font-weight:800;color:var(--navy);line-height:1; }
.fc-lbl  { font-size:11px;color:var(--muted);margin-top:2px; font-family:'JetBrains Mono',monospace; }
.fc-badge { display:flex;align-items:center;gap:8px; }
.fc-badge-dot { width:9px;height:9px;border-radius:50%;flex-shrink:0; }

/* SLIDE PROGRESS INDICATORS */
.slide-controls {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px; z-index: 20;
}
.sc-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; color: var(--navy); transition: 0.2s;
  box-shadow: 0 4px 12px rgba(48,66,118,0.1);
}
.sc-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.sc-dots { display:flex; gap:8px; align-items:center; }
.sc-dot {
  height: 6px; border-radius: 3px; cursor: pointer; transition: all 0.4s ease;
  background: rgba(48,66,118,0.2);
}
.sc-dot.active { width: 28px; background: var(--navy); }
.sc-dot:not(.active) { width: 6px; }
.sc-dot:not(.active):hover { background: rgba(48,66,118,0.4); }

/* slide number */
.slide-counter {
  position: absolute; right: 40px; bottom: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--muted); z-index: 20;
  display: flex; align-items: center; gap: 6px;
}
.sc-current { font-weight: 700; font-size: 18px; color: var(--navy); }
/* progress bar */
.slide-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: linear-gradient(90deg, var(--navy), var(--sky));
  animation: progressBar 6s linear infinite;
  z-index: 25;
}
@keyframes progressBar { from{width:0} to{width:100%} }

/* ─── STATS TICKER ─── */
.stats-ticker {
  position: relative; z-index: 1;
  background: var(--navy); padding: 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex; align-items: center;
  padding: 22px 0; gap: 0;
}
.ticker-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 50px; border-right: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0; white-space: nowrap;
}
.ticker-item:last-child { border-right: none; }
.ticker-num {
  font-size: 32px; font-weight: 800; color: #fff; line-height: 1;
  font-family: 'Sora', sans-serif;
}
.ticker-num sup { font-size: 16px; vertical-align: super; color: rgba(255,255,255,0.6); }
.ticker-lbl { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.ticker-icon { font-size: 28px; color: rgba(255,255,255,0.2); }

/* ─── SECTION BASE ─── */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-light { background: var(--white); }
.section-tinted { background: var(--bg); }
.tag-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(48,66,118,0.08); border: 1px solid rgba(48,66,118,0.15);
  color: var(--navy); border-radius: 100px; padding: 7px 18px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.tag-label.red { background: rgba(217,33,41,0.07); border-color: rgba(217,33,41,0.15); color: var(--red); }
h2.sec-h { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: var(--navy-d); line-height: 1.1; margin-bottom: 14px; }
h2.sec-h .c-navy { color: var(--navy); }
h2.sec-h .c-red   { color: var(--red); }
h2.sec-h .c-sky   { color: var(--sky); }
.sec-sub { font-size: 16px; color: var(--muted); line-height: 1.8;  }

/* ─── SERVICES ─── */
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px; height: 100%;
  transition: all 0.35s; position: relative; overflow: hidden;
  cursor: pointer;
}
.svc-card::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px var(--shadow); border-color: rgba(48,66,118,0.15); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  color: var(--light-muted); letter-spacing: 2px; margin-bottom: 16px;
}
.svc-icon {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  transition: 0.3s;
}
.svc-card:hover .svc-icon { transform: scale(1.08) rotate(-4deg); }
.ic-blue  { background: #dbeafe; color: #1d4ed8; }
.ic-teal  { background: #cffafe; color: #0e7490; }
.ic-indig { background: #ede9fe; color: #6d28d9; }
.ic-amber { background: #fef3c7; color: #b45309; }
.ic-red   { background: #fee2e2; color: #dc2626; }
.ic-green { background: #d1fae5; color: #047857; }
.svc-card h5 { color: var(--navy-d); font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.svc-card p  { color: var(--muted); font-size: 14px; line-height: 1.7; }
.svc-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 600; font-size: 13px;
  text-decoration: none; margin-top: 18px; transition: 0.2s;
}
.svc-card:hover .card-link { gap: 10px; color: var(--red); }

/* ─── ABOUT/INNOVATE ─── */
.about-visual { position: relative; }
.about-img {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 80px var(--shadow);
  position: relative;
}
.about-img img { width: 100%; height: 460px; object-fit: cover; display: block; }
.about-accent {
  position: absolute; top: -20px; left: -20px;
  width: 120px; height: 120px; border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(255,255,255,0.2);
  overflow: hidden;
}
.about-accent::after { content:'<>'; font-family:'JetBrains Mono',monospace; font-size:22px; color:#fff; opacity:0.6; }
.about-stat-box {
  position: absolute; bottom: -24px; right: -20px;
  background: #fff; border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow);
  padding: 22px 28px; min-width: 200px;
  border: 1px solid var(--border);
}
.asb-num { font-size: 44px; font-weight: 800; color: var(--navy); line-height: 1; }
.asb-num span { font-size: 22px; color: var(--red); }
.asb-lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }
.check-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 15px; color: #4a5578; line-height: 1.6;
}
.check-item i { color: var(--navy); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* ─── WHY CAMBAY GRID ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.why-cell {
  background: var(--white); padding: 32px; transition: 0.3s;
  cursor: default; border: 1px solid var(--border); border-radius: 4px;
}
.why-cell:hover { background: var(--bg); }
.why-cell .wc-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.why-cell h5 { color: var(--navy-d); font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.why-cell p  { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* ─── PROCESS STRIP ─── */
.process-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  padding: 80px 0; position: relative; overflow: hidden; z-index: 1;
}
.process-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.process-step {
  text-align: center; padding: 20px; position: relative; z-index: 1;
}
.ps-num {
  width: 56px; height: 56px; border-radius: 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  font-weight: 700; color: rgba(255,255,255,0.7);
  margin: 0 auto 20px;
}
.process-step h5 { color: #fff; font-weight: 700; margin-bottom: 8px; font-size: 16px; }
.process-step p  { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.7; max-width: 200px; margin: 0 auto; }
.ps-connector {
  position: absolute; top: 48px; right: -50%;
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.1); z-index: 0;
}

/* ─── CASE STUDY ─── */
.case-card {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 100%);
  border-radius: 24px; padding: 56px 50px;
  position: relative; overflow: hidden; color: #fff;
}
.case-card::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: -150px; right: -80px; pointer-events: none;
}
.case-card::after {
  content: ''; position: absolute;
  width: 250px; height: 250px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  bottom: -80px; left: 20%; pointer-events: none;
}
.case-badge { display:inline-block; background:rgba(255,255,255,0.12); color:#bfdbfe; border-radius:30px; padding:6px 16px; font-size:12px; font-weight:600; margin-bottom:16px; }
.case-card h3 { font-size:clamp(22px,3vw,32px); font-weight:800; margin-bottom:14px; color:#fff; }
.case-card p  { color:rgba(255,255,255,0.65); font-size:15px; line-height:1.7; }
.case-metrics { display:flex; gap:30px; margin-top:30px; flex-wrap:wrap; }
.cm-item h4 { font-size:46px; font-weight:800; color:#fff; line-height:1; }
.cm-item h4 sup { font-size:22px; vertical-align:super; color:rgba(255,255,255,0.5); }
.cm-item span { color:rgba(255,255,255,0.45); font-size:13px; }
.btn-case-white {
  background:#fff; color:var(--navy); padding:13px 28px; border-radius:10px;
  font-weight:700; font-size:14px; text-decoration:none; transition:0.3s;
  display:inline-flex; align-items:center; gap:8px; margin-top:28px;
  position:relative; z-index:1;
}
.btn-case-white:hover { background:var(--bg); transform:translateX(4px); color:var(--navy); }
.case-img {
  border-radius:16px; overflow:hidden; position:relative; z-index:1;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.case-img img { width:100%; height:100%; object-fit:cover; display:block; max-height:320px; }

/* ─── TESTIMONIALS ─── */
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 30px; height: 100%;
  transition: 0.3s; position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px var(--shadow); }
.testi-stars { color: #f59e0b; font-size: 13px; margin-bottom: 16px; }
.testi-card blockquote { color: var(--muted); font-size: 15px; line-height: 1.7; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }
.ta-avatar {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.ta-name { color: var(--navy-d); font-weight: 700; font-size: 15px; }
.ta-role { color: var(--muted); font-size: 12px; }

/* ─── BLOG SECTION ─── */
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; height: 100%; transition: 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px var(--shadow); }
.blog-img { position: relative; overflow: hidden; }
.blog-img img { width:100%; height:220px; object-fit:cover; transition:0.5s; display:block; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-tag { position:absolute; bottom:14px; left:14px; background:var(--navy); color:#fff; border-radius:30px; padding:5px 14px; font-size:11px; font-weight:700; }
.blog-tag a{ color: #fff; text-decoration: none;}
.blog-body { padding: 24px; }
.blog-date { font-size:12px; color:var(--muted); font-family:'JetBrains Mono',monospace; }
.blog-body h6 { color:var(--navy-d); font-weight:700; font-size:16px; margin:8px 0 10px; line-height:1.5; }
.blog-body p  { color:var(--muted); font-size:13px; line-height:1.7; }
.blog-link { color:var(--navy); font-weight:700; font-size:13px; text-decoration:none; display:inline-flex; align-items:center; gap:5px; margin-top:14px; transition:0.2s; }
.blog-link:hover { color:var(--red); gap:9px; }

/* ─── CTA FINAL ─── */
.cta-final {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 50%, var(--navy-l) 100%);
  padding: 65px 0; position: relative; overflow: hidden; z-index: 1;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.ring-1 { width:500px;height:500px; top:-200px; right:-100px; }
.ring-2 { width:300px;height:300px; bottom:-100px; left:10%; }
.cta-final h2 { font-size:clamp(28px,4vw,48px); font-weight:800; color:#fff; margin-bottom:14px; position:relative;z-index:1; }
.cta-final p  { color:rgba(255,255,255,0.65); font-size:17px; position:relative;z-index:1; }
.btn-cta-w { background:#fff; color:var(--navy); padding:16px 36px; border-radius:12px; font-weight:700; font-size:15px; text-decoration:none; transition:0.3s; display:inline-block; position:relative;z-index:1; }
.btn-cta-w:hover { background:var(--bg); transform:translateY(-3px); box-shadow:0 16px 40px rgba(0,0,0,0.2); color:var(--navy); }
.btn-cta-o { border:2px solid rgba(255,255,255,0.3); color:#fff; padding:16px 28px; border-radius:12px; font-weight:600; font-size:15px; text-decoration:none; transition:0.3s; display:inline-block; position:relative;z-index:1; }
.btn-cta-o:hover { border-color:#fff; background:rgba(255,255,255,0.1); color:#fff; }

/* ─── PARTNER SECTION ─── */
.partner-logo-pill {
  background: var(--white);  border-radius: 14px;
   display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
   transition: 0.3s;}
}
.partner-logo-pill:hover { filter: none; box-shadow: 0 10px 30px var(--shadow); transform: translateY(-3px); border-color: rgba(48,66,118,0.2); }
.partner-logo-pill img { max-width: 160px; object-fit: contain; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-d); color: rgba(255,255,255,0.55);
  padding: 80px 0 32px;
}
footer h6 { color: rgba(255,255,255,0.8); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
footer a  { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 14px; display: block; margin-bottom: 10px; transition: 0.2s; }
footer a:hover { color: rgba(255,255,255,0.9); }
.footer-logo img { height: 50px; filter: brightness(0) invert(1) opacity(0.9); margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.35); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.social-b {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 16px; margin-right: 8px;
  transition: 0.3s; text-decoration: none !important;
}
.social-b:hover { background: var(--navy-l); border-color: transparent; color: #fff !important; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); margin-top: 60px; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 13px;
}
.footer-bottom span { color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; display: inline; margin: 0 8px 0 0; transition: 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .fc-top-left, .fc-bot-right { display: none; }
  .slide-img-wrap img { max-height: 320px; }
}
@media (max-width: 768px) {
  .hero-slider { height: auto; min-height: 100vh; }
  .slide-inner { padding: 60px 0 80px; }
  .slide { position: relative; opacity: 1; }
  .slide:not(.active) { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .case-card { padding: 36px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ticker-inner { flex-wrap: wrap; justify-content: center; }
  .ticker-item { border-right: none; padding: 12px 24px; }
}