/* IndiCompute — SHARED DESIGN SYSTEM
   Light Theme · Brand: #EEF3FF / #C8D7FF / #96B2FF / #0096FF / #0437F2 / #1F51FF / #2F50C4 / #0000CC / #000099 / #000066 / #00001A
*/
/* IndiCompute — SHARED DESIGN SYSTEM
   Blue Theme · Brand: #EEF3FF / #C8D7FF / #96B2FF / #0096FF / #0437F2 / #1F51FF / #2F50C4 / #0000CC / #000099 / #000066 / #00001A
*/
:root {
  --font: "Cabin", serif;
  --shade-1: #EEF3FF;
  --shade-2: #C8D7FF;
  --shade-3: #96B2FF;
  --shade-4: #0096FF;
  --shade-5: #0437F2;
  --shade-6: #1F51FF;
  --shade-7: #2F50C4;
  --shade-8: #0000CC;
  --shade-9: #000099;
  --shade-10: #000066;
  --shade-11: #00001A;

  --brand-darkest: #00001A;
  --brand-primary: #1F51FF;
  --brand-mid: #0437F2;
  --brand-accent: #2F50C4;
  --brand-soft: #0096FF;

  --text-primary: #000066;
  --text-secondary: #000099;
  --text-muted: #0000CC;
  --text-light: #EEF3FF;

  --surface-base: #EEF3FF;
  --surface-elev: #C8D7FF;
  --surface-card: #EEF3FF;
  --surface-soft: #96B2FF;

  --border-light: rgba(31, 81, 255, 0.18);
  --border-mid: rgba(4, 55, 242, 0.24);
  --border-strong: rgba(31, 81, 255, 0.40);

  --shadow-soft: 0 10px 30px rgba(0, 20, 102, 0.10);
  --shadow-mid: 0 16px 40px rgba(0, 0, 102, 0.14);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: linear-gradient(180deg, var(--shade-1) 0%, var(--shade-2) 100%);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: var(--font); }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #C8D7FF; }
::-webkit-scrollbar-thumb { background: #0437F2; border-radius: 3px; }
/* ── Layout ────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; position: relative; overflow: hidden; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }

/* ── Typography ────────────────────────────────────────── */
.label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--brand-mid); display: block; margin-bottom: 14px;
  font-family: var(--font);
}
.sh-h2 {
  font-size: clamp(32px, 4.5vw, 52px); color: var(--brand-darkest);
  margin-bottom: 18px; font-family: var(--font); font-weight: 700;
}
.sh-p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.7; font-weight: 400;
  font-family: var(--font);
}
.text-grad,
.text-grad-brand {
  background: linear-gradient(135deg, #000099 0%, #1F51FF 58%, #0437F2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* ── Cards ─────────────────────────────────────────────── */
/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: linear-gradient(180deg, var(--shade-1) 0%, var(--shade-2) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(0,20,102,0.08), 0 8px 24px rgba(0,0,102,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.glass {
  background: linear-gradient(180deg, rgba(238,243,255,0.96) 0%, rgba(200,215,255,0.92) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(0,20,102,0.10);
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font);
  background: linear-gradient(135deg, #000099, #1F51FF) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(47,80,196,0.20) !important;
  border: none;
  transition: filter .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 12px 28px rgba(0,0,102,0.20) !important;
  transform: translateY(-1px);
}
.cta-nav {
  background: linear-gradient(135deg, #000099, #1F51FF) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(47,80,196,0.22) !important;
  border: none !important;
}

.cta-nav:hover {
  filter: brightness(1.06);
  box-shadow: 0 10px 26px rgba(0,0,102,0.22) !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font);
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--border-mid);
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--brand-primary);
  background: rgba(31,81,255,0.08);
  box-shadow: 0 4px 14px rgba(31,81,255,0.12);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  background: var(--shade-1);
  color: var(--brand-darkest);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  box-shadow: 0 4px 20px rgba(0,0,102,0.14);
  transition: filter .2s;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--border-light);
}
.btn-white:hover { filter: brightness(.97); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  transition: background .2s, border-color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,.7);
}
/* ── Badge ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(4,55,242,0.28);
  background: rgba(31,81,255,0.08);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-darkest);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0437F2;
  animation: glowPulse 3s ease-in-out infinite;
}

/* ── Icons ─────────────────────────────────────────────── */
.icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(31,81,255,0.10);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { color: var(--brand-primary); }
.icon-box-lg { width: 52px; height: 52px; border-radius: var(--radius-md); }

.icon-box-grad {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: linear-gradient(135deg, #000099, #1F51FF);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box-grad svg { color: #fff; }

/* ── Section header ────────────────────────────────────── */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section-header.left { text-align: left; margin-left: 0; }

/* ── Glow helpers ──────────────────────────────────────── */
.glow-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); opacity: .07;
}
.glow-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(4,55,242,.28), transparent);
  pointer-events: none;
}
/* ── Animations ────────────────────────────────────────── */
@keyframes glowPulse { 0%,100%{opacity:.5} 50%{opacity:1} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes slideDown { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.animate-float   { animation: float 7s ease-in-out infinite; }
.animate-marquee { animation: marquee 30s linear infinite; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; display: flex; align-items: center;
  background: rgba(238,243,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
#navbar.scrolled {
  background: rgba(238,243,255,0.98);
  border-color: var(--border-light);
  box-shadow: 0 2px 24px rgba(0,0,102,0.08);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  width: 100%; display: flex; align-items: center; gap: 4px;
}
.nav-logo { display: flex; align-items: center; margin-right: 24px; text-decoration: none; flex-shrink: 0; }
.nav-logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item  { position: relative; }
.nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-btn:hover,
.nav-btn.active {
  color: var(--text-primary);
  background: rgba(31,81,255,0.08);
}
.nav-btn .chevron {
  width: 12px;
  height: 12px;
  transition: transform .2s;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.nav-btn.active .chevron { transform: rotate(180deg); }

/* Simple link (no chevron) */
.nav-link {
  display: flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active-page {
  color: var(--text-primary);
  background: rgba(31,81,255,0.08);
}

.nav-actions .link-btn:hover {
  color: var(--brand-primary);
  background: rgba(31,81,255,0.08);
}

.nav-actions .cta-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  background: linear-gradient(135deg, #000099, #1F51FF);
  color: #fff;
  box-shadow: 0 6px 18px rgba(4,55,242,0.28);
  transition: filter .2s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-actions .cta-nav:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 22px rgba(0,0,102,0.22);
}
/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 260px;
  background: linear-gradient(180deg, var(--shade-1) 0%, var(--shade-2) 100%);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,102,0.14);
  z-index: 200;
  /* Use opacity/visibility instead of display so hover can transition smoothly */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s cubic-bezier(.16,1,.3,1), visibility 0s linear .18s;
}
.dropdown.open,
.nav-item-hover:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .18s ease, transform .18s cubic-bezier(.16,1,.3,1), visibility 0s linear 0s;
}
.dd-item {
  display: block; padding: 11px 14px; border-radius: var(--radius-sm); cursor: pointer;
  transition: background .15s; text-decoration: none;
}
.dd-item:hover { background: rgba(31,81,255,0.08); }
.dd-item strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; font-family: var(--font); }
.dd-item span   { font-size: 12px; color: var(--text-muted); line-height: 1.4; font-family: var(--font); }

/* Mega menu */
.mega-menu {
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(238,243,255,0.92); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 16px 48px rgba(0,0,102,0.12); padding: 32px 0;
  display: none; animation: slideDown .2s cubic-bezier(.16,1,.3,1); z-index: 999;
}
.mega-menu.open { display: block; }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mega-group-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--brand-primary); margin-bottom: 10px; font-family: var(--font);
}
.mega-link {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 9px; border-radius: 8px; font-size: 13.5px; color: var(--text-secondary);
  transition: color .15s, background .15s; text-decoration: none; font-family: var(--font);
}
.mega-link:hover { color: var(--brand-primary); background: rgba(31,81,255,0.08); }
.mega-link::before { content: '›'; color: var(--brand-primary); opacity: 0; transition: opacity .15s; font-size: 14px; }
.mega-link:hover::before { opacity: 1; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.nav-actions .link-btn {
  font-size: 13.5px; font-weight: 600; color: var(--text-secondary); font-family: var(--font);
  padding: 7px 12px; border-radius: 9px; transition: color .2s, background .2s;
  text-decoration: none; white-space: nowrap;
}
.nav-actions .link-btn:hover { color: var(--brand-primary); background: rgba(31,81,255,0.08); }
.nav-actions .cta-nav {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  font-family: var(--font); font-size: 13.5px; font-weight: 700;
  background: linear-gradient(90deg, #0437F2, #1F51FF, #2F50C4); color: #fff;
  box-shadow: 0 4px 14px rgba(47,80,196,0.28); transition: filter .2s, box-shadow .2s;
  text-decoration: none; white-space: nowrap;
}
.nav-actions .cta-nav:hover { filter: brightness(1.1); box-shadow: 0 6px 20px rgba(0,20,102,0.22); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; align-items: center; justify-content: center;
  border: none; background: transparent; cursor: pointer; border-radius: 9px;
  margin-left: auto; transition: background .2s; flex-shrink: 0;
}
.hamburger:hover { background: rgba(31,81,255,0.10); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: all .25s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 92vw;
  background: linear-gradient(180deg, var(--shade-1) 0%, var(--shade-2) 100%);
  border-left: 1px solid var(--border-light);
  overflow-y: auto;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  box-shadow: -8px 0 40px rgba(0,0,102,0.12);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,102,0.18); backdrop-filter: blur(4px);
  z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 20px; border-bottom: 1px solid var(--border-light); }
.drawer-close { width: 32px; height: 32px; border: none; background: transparent; color: var(--text-muted); cursor: pointer; border-radius: 8px; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.drawer-close:hover { background: rgba(31,81,255,0.10); color: var(--brand-primary); }
.mob-nav-item { border-bottom: 1px solid var(--border-light); }
.mob-nav-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; background: transparent; border: none; cursor: pointer; font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-primary); text-align: left; }
.mob-nav-btn .mchev { font-size: 11px; color: var(--brand-primary); transition: transform .2s; }
.mob-nav-btn.active .mchev { transform: rotate(180deg); }
.mob-sub { padding: 0 20px 12px; display: none; }
.mob-sub.open { display: block; }
.mob-sub a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 13.5px; color: var(--text-secondary); transition: color .15s, background .15s; text-decoration: none; font-family: var(--font); }
.mob-sub a:hover { color: var(--brand-primary); background: rgba(31,81,255,0.08); }
.mob-sub .group-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-primary); padding: 10px 12px 4px; display: block; font-family: var(--font); }
.mob-direct-link { display: block; padding: 15px 20px; font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-primary); border-bottom: 1px solid var(--border-light); text-decoration: none; }
.mob-direct-link:hover { color: var(--brand-primary); background: rgba(31,81,255,0.05); }
.drawer-footer { padding: 16px 20px; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 10px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#site-footer {
  background: linear-gradient(180deg, var(--shade-2) 0%, var(--shade-1) 100%);
  border-top: 1px solid var(--border-light);
}

/* Footer top strip */
.footer-strip {
  background: linear-gradient(135deg, #0437F2 0%, #1F51FF 28%, #2F50C4 52%, #0000CC 72%, #000099 88%, #000066 96%, #00001A 100%);
  padding: 18px 0;

}
.footer-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-strip p { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); font-family: var(--font); }
.footer-strip span { font-size: 13px; color: rgba(255,255,255,.65); font-family: var(--font); }

/* Footer body */
.footer-body { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
.footer-logo-wrap { margin-bottom: 18px; }
.footer-logo-wrap img {
  height: 72px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  display: block;
}
.footer-tagline { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; max-width: 220px; font-family: var(--font); }
.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.footer-contact-mini a, .footer-contact-mini span {
  font-size: 12.5px; color: var(--text-muted); display: flex; align-items: center; gap: 7px;
  text-decoration: none; transition: color .15s; font-family: var(--font);
}
.footer-contact-mini a:hover { color: var(--brand-primary); }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
  width: 32px; height: 32px; border: 1px solid var(--border-light); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: color .2s, border-color .2s, background .2s;
  text-decoration: none;
}
.social-btn:hover { color: var(--brand-primary); border-color: var(--border-strong); background: rgba(31,81,255,0.08); }
.social-btn svg { width: 13px; height: 13px; }

.footer-col h5 {
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-primary); margin-bottom: 18px; font-family: var(--font);
}
.footer-col a {
  display: block; font-size: 13.5px; color: var(--text-muted);
  margin-bottom: 10px; transition: color .15s; text-decoration: none; font-family: var(--font);
}
.footer-col a:hover { color: var(--brand-primary); }

/* Footer brand contact info */
.footer-brand-info { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.fbi-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-secondary); font-family: var(--font); line-height: 1.6; }
.fbi-row svg { color: var(--brand-primary); flex-shrink: 0; margin-top: 2px; }
.fbi-row a { color: var(--text-secondary); text-decoration: none; transition: color .15s; }
.fbi-row a:hover { color: var(--brand-primary); }
.fbi-placeholder { color: var(--text-muted); }

/* Footer partner logos row */
.footer-partner-row {
  padding: 28px 0; border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
/* Compliance badges row */
.partner-compliance-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.compliance-badge { display: flex; align-items: center; }
.compliance-badge img { height: 56px; width: auto; object-fit: contain; }
.compliance-badge-fallback { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--border-mid); border-radius: 10px; padding: 8px 12px; background: #fff; }
.cbf-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: #fff; }
.cbf-green { background: #16a34a; }
.cbf-blue { background: #3b82f6; }
.cbf-red { background: #ef4444; }
.cbf-gold { background: #f59e0b; }
.cbf-text { display: flex; flex-direction: column; line-height: 1.2; }
.cbf-text span { font-size: 12px; font-weight: 800; color: var(--text-primary); font-family: var(--font); }
.cbf-text small { font-size: 9px; font-weight: 700; color: var(--text-muted); font-family: var(--font); letter-spacing: .05em; }

/* Partner logo boxes */
.partner-logo-box { display: flex; align-items: center; }
.partner-logo-box img { height: 40px; width: auto; object-fit: contain; opacity: .75; filter: grayscale(30%); transition: opacity .2s, filter .2s; }
.partner-logo-box img:hover { opacity: 1; filter: none; }
.plb-fallback { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--border-mid); border-radius: 10px; padding: 8px 14px; background: #fff; }
.plb-nvidia { font-size: 14px; font-weight: 900; color: #76b900; letter-spacing: -.02em; font-family: var(--font); }
.plb-brand { font-size: 13px; font-weight: 800; font-family: var(--font); }
.plb-label { font-size: 11px; color: var(--text-muted); line-height: 1.3; font-family: var(--font); }
.plb-google { font-size: 16px; font-weight: 700; }
.plb-tie { font-size: 18px; font-weight: 900; color: #c0392b; font-family: var(--font); border: 2px solid #c0392b; border-radius: 4px; padding: 2px 6px; }

/* DeepSphere Bhubaneswar badge */
.deepsphere-badge { display: flex; align-items: center; }
.deepsphere-badge img { height: 52px; width: auto; object-fit: contain; }
.dsb-fallback { display: flex; align-items: center; gap: 12px; border: 2px solid var(--border-mid); border-radius: 10px; padding: 10px 16px; background: #fff; }
.dsb-tie-icon { font-size: 20px; font-weight: 900; color: #c0392b; border: 2.5px solid #c0392b; border-radius: 4px; padding: 3px 7px; font-family: var(--font); }
.dsb-text { display: flex; flex-direction: column; line-height: 1.25; }
.dsb-text span { font-size: 16px; font-weight: 900; color: var(--text-primary); font-family: var(--font); letter-spacing: -.01em; }

/* Tree-Nation cards */
.tree-nation-row { display: flex; gap: 14px; flex-wrap: wrap; }
.tree-nation-card { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--border-mid); border-radius: 14px; padding: 12px 16px; background: #fff; min-width: 180px; }
.tree-nation-card img { width: 40px; height: 40px; object-fit: contain; }
.tnc-icon-fallback { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
.tnc-text { display: flex; flex-direction: column; }
.tnc-title { font-size: 14px; font-weight: 700; color: #16a34a; font-family: var(--font); }
.tnc-sub { font-size: 12.5px; font-weight: 600; color: var(--text-primary); font-family: var(--font); }
.tnc-cert { font-size: 10.5px; color: var(--text-muted); font-family: var(--font); }

@media(max-width:640px){
  .partner-compliance-row { gap: 10px; }
  .compliance-badge img { height: 44px; }
  .tree-nation-row { flex-direction: column; }
}
.partner-logos-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.partner-logos-row img { height: 28px; width: auto; object-fit: contain; opacity: .55; filter: grayscale(40%); transition: opacity .2s, filter .2s; }
.partner-logos-row img:hover { opacity: 1; filter: none; }
.partner-logo-text {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em; font-family: var(--font);
  padding: 6px 14px; border: 1px solid var(--border-light); border-radius: 8px;
  transition: border-color .2s;
}
.partner-logo-text:hover { border-color: var(--border-strong); color: var(--text-secondary); }

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12.5px; color: var(--text-muted); font-family: var(--font); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: var(--text-muted); transition: color .15s; text-decoration: none; font-family: var(--font); }
.footer-legal a:hover { color: var(--brand-primary); }

/* ═══════════════════════════════════════════════════════
   COMMON SECTIONS (reused across pages)
═══════════════════════════════════════════════════════ */

/* Page hero (inner pages) */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #EEF3FF 0%, #C8D7FF 45%, #96B2FF 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.035;
  background-image: linear-gradient(rgba(31,81,255,.32) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(31,81,255,.32) 1px,transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { max-width: 700px; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); color: var(--text-primary); margin-bottom: 20px; font-family: var(--font); font-weight: 700; }
.page-hero p  { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; font-family: var(--font); }
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* CTA banner (reused across pages) */
.cta-banner {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0437F2 0%, #1F51FF 28%, #2F50C4 52%, #0000CC 72%, #000099 88%, #000066 96%, #00001A 100%);
}
.cta-banner::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size: 60px 60px;
}
.cta-banner-inner { text-align: center; position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(32px,5vw,52px); color: #fff; margin-bottom: 18px; font-family: var(--font); font-weight: 700; }
.cta-banner p  { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 36px; font-family: var(--font); }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 18px; font-family: var(--font); }

/* Stats strip */
.stats-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, var(--shade-1) 0%, var(--shade-2) 100%);
}
.stats-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { font-size: 44px; font-weight: 700; font-family: var(--font); }
.stat-label { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; font-family: var(--font); }

/* ── Logos marquee ─────────────────────────────────────── */
#trust-logos { padding: 60px 0; background: linear-gradient(180deg, var(--shade-1) 0%, var(--shade-2) 100%); }
.logos-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--text-muted); text-align: center; margin-bottom: 36px; font-family: var(--font); }
.logos-wrap { position: relative; overflow: hidden; }
.logos-fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 100px; z-index: 2; background: linear-gradient(to right, var(--surface-base), transparent); pointer-events: none; }
.logos-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 100px; z-index: 2; background: linear-gradient(to left, var(--surface-base), transparent); pointer-events: none; }
.logos-track { display: flex; gap: 18px; width: max-content; }
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--shade-1);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
  transition: border-color .2s, box-shadow .2s;
  font-family: var(--font);
}
.logo-chip img { height: 22px; width: auto; object-fit: contain; opacity: .65; }
.logo-chip:hover { border-color: var(--border-strong); box-shadow: 0 2px 12px rgba(31,81,255,0.12); }
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 8px 18px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo-item img {
  max-height: 54px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  mix-blend-mode: multiply;
}

.logo-item img:hover {
  opacity: 1;
  transform: translateY(-1px);
}
/* ── Section divider ───────────────────────────────────── */
.section-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(4,55,242,.28), transparent); margin: 0; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 32px; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions .link-btn { display: none; }
  .hamburger { display: flex; }
  .nav-actions .cta-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 72px 0; }
  .page-hero { padding: 100px 0 60px; }
  .cta-banner { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-strip-grid { grid-template-columns: repeat(2,1fr); }
  .partner-logos-row { gap: 16px; }
}
/* ===== SAFE NAV FIX ===== */
#navbar,
.nav-inner,
.nav-links,
.nav-item {
  overflow: visible;
}

.nav-inner,
.nav-links {
  position: relative;
}

.nav-item {
  position: relative;
}

/* .dropdown.open is unused for hover-nav items; kept only for JS-toggled menus */
.dropdown.open {
  display: block;
}

/* Prevent stale .open class from conflicting with CSS hover on hover-nav items */
.nav-item-hover .dropdown {
  pointer-events: none;
}
.nav-item-hover:hover > .dropdown {
  pointer-events: auto;
}

.mob-sub.open {
  display: block;
}
/* ── Hover-only dropdown nav (Services / Solutions) ─────────── */
.nav-item-hover{
  position:relative;
}

.nav-hover-link{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 13px;
  border-radius:var(--radius-sm);
  font-family:var(--font);
  font-size:14px;
  font-weight:600;
  color:var(--text-secondary);
  text-decoration:none;
  white-space:nowrap;
  transition:color .2s, background .2s;
}

.nav-hover-link::after{
  content:"";
  width:12px;
  height:12px;
  display:inline-block;
  flex-shrink:0;
  background-repeat:no-repeat;
  background-position:center;
  background-size:12px 12px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230437F2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  transition:transform .2s ease;
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  .nav-item-hover:hover > .dropdown{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity .18s ease, transform .18s cubic-bezier(.16,1,.3,1), visibility 0s linear 0s;
  }

  .nav-item-hover:hover > .nav-hover-link{
    color:var(--text-primary);
    background:rgba(31,81,255,0.08);
  }

  .nav-item-hover:hover > .nav-hover-link::after{
    transform:rotate(180deg);
  }
}