:root {
  --primary: #0b3d91;
  --accent: #60a5fa;
  --accent-2: #2563eb;
  --teal: #26c6da;
  --teal-dark: #0d9488;
  --violet: #1e3a8a;
  --violet-dark: #2563eb;
  --dark: #060c1a;
  --dark-alt: #0d1326;
  --mid: #374151;
  --muted: #6b7280;
  --light: #f0f4ff;
  --white: #ffffff;
  --border: rgba(11,61,145,0.11);
  --shadow: 0 8px 32px rgba(11,61,145,0.10);
  --shadow-lg: 0 24px 64px rgba(11,61,145,0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--mid); background: var(--dark); overflow-x: hidden; padding-top: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif; color: var(--dark); font-weight: 700; }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all .35s ease; padding: 20px 0; background: transparent !important; box-shadow: none; font-family: 'Inter', sans-serif; }
#navbar .container { max-width: none; padding-left: 28px; padding-right: 28px; }
#navbar.scrolled { background: rgba(12,14,48,.96) !important; padding: 14px 0; box-shadow: 0 8px 28px rgba(0,0,0,.32); backdrop-filter: blur(18px); }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: auto; height: 46px; max-width: 220px; display: block; object-fit: contain; flex-shrink: 0; }
.navbar-nav .nav-link { color: rgba(255,255,255,.85) !important; font-weight: 600; font-size: .9rem; letter-spacing: .2px; padding: 8px 14px !important; border-radius: 10px; transition: color .2s, background .2s; font-family: 'Inter', sans-serif; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: #fff !important; background: rgba(255,255,255,.1); }
#navbar .navbar-toggler i { color: #fff !important; }
.btn-nav { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff !important; padding: 10px 22px !important; border-radius: 999px !important; font-weight: 700 !important; font-size: .88rem !important; letter-spacing: .3px; transition: opacity .2s, transform .15s !important; white-space: nowrap; font-family: 'Inter', sans-serif; }
.btn-nav:hover { opacity: .92; transform: translateY(-1px); }
@media (max-width: 991px) {
  .navbar-collapse { background: rgba(10,12,45,.97); border-radius: 16px; margin-top: 10px; padding: 16px 20px; box-shadow: 0 16px 48px rgba(0,0,0,.4); }
}
@media (max-width: 767px) {
  #navbar { padding: 14px 0; }
  #navbar .container { padding-left: 16px; padding-right: 16px; }
  .brand-logo { height: 34px; max-width: 150px; }
  body { padding-top: 78px; }
}

/* ── SHARED ── */
section { padding: 96px 0; }
.section-badge { display: inline-flex; align-items: center; gap: 8px;   padding: 5px 14px; border-radius: 50px; font-size: .76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border:1px solid rgba(255,255,255,.14) background:rgba(0,194,255,.08);color:var(--accent);border:1px solid rgba(0,194,255,.18)}
.section-badge--teal { background: rgba(38,198,218,.1); color: var(--teal); border-color: rgba(38,198,218,.25); }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); letter-spacing: -.8px; margin-bottom: 14px; line-height: 1.15; }
.divider-accent { width: 52px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 2px; margin: 14px 0 28px; }
.section-body { font-size: 1rem; line-height: 1.8; color: var(--mid); }
.btn-primary-custom { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: .95rem; border: none; transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 14px 34px rgba(60,46,255,.18); }
.btn-primary-custom:hover { opacity: .94; transform: translateY(-2px); color: #fff; }
.btn-outline-custom { background: #fff; color: var(--primary); padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: .9rem; border: 1.5px solid rgba(11,61,145,.18); transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-custom:hover { background: rgba(0,194,255,.05); border-color: rgba(11,61,145,.35); color: var(--primary); }
.btn-teal { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: .95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; box-shadow: 0 12px 32px rgba(38,198,218,.25); }
.btn-teal:hover { opacity: .92; transform: translateY(-2px); color: #fff; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO ── */
#page-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  isolation: isolate;
  background: url('../pics/clinical.png') center center / cover no-repeat;
}
#page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4,10,20,.72);
  z-index: 1;
}
#page-hero .container { position: relative; z-index: 2; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  background: rgba(0,194,255,.1);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(0,194,255,.2);
  margin-bottom: 20px;
}
#page-hero h1 {
  color: #f8fbff;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 20px;
  text-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.hero-sub {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 32px;
  font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── WHO WE SERVE (CRO + BIOPHARMA) ── */
#cros { background: var(--light); }

.serve-wrap {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(11,61,145,.06);
}

/* toggle */
.serve-toggle {
  display: flex;
  position: relative;
  background: #f3f6fc;
  border-bottom: 1px solid var(--border);
}
.serve-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.serve-btn.active { color: var(--dark); }
.serve-btn:hover { color: var(--dark); }
.serve-slider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #1e3a8a);
  border-radius: 3px 3px 0 0;
  transition: left .4s cubic-bezier(.4,0,.2,1);
}
.serve-toggle .serve-btn[data-serve="bp"].active ~ .serve-slider,
.serve-slider.right { left: 50%; }

/* panels */
.serve-panel {
  display: none;
  padding: 48px 44px;
  animation: serveFade .45s ease;
}
.serve-panel.active { display: block; }
@keyframes serveFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.serve-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.serve-quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  border-left: 3px solid #2563eb;
  padding-left: 20px;
  margin: 0 0 18px;
  font-style: normal;
}
.serve-desc {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.8;
}

/* value list */
.serve-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.serve-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.serve-item:last-child { border-bottom: none; }
.serve-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0,194,255,.08);
  border: 1px solid rgba(0,194,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.serve-icon i { font-size: .9rem; color: var(--accent); }
.serve-icon--teal {
  background: rgba(38,198,218,.08);
  border-color: rgba(38,198,218,.18);
}
.serve-icon--teal i { color: var(--teal); }
.serve-icon--violet {
  background: linear-gradient(135deg,#dbeafe,#bfdbfe);
  border-color: #93c5fd;
}
.serve-icon--violet i { color: #2563eb; }
.serve-icon--blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-color: #93c5fd;
}
.serve-icon--blue i {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.serve-item p { margin: 0; font-size: .88rem; line-height: 1.65; color: var(--mid); }

@media (max-width: 767px) {
  .serve-panel { padding: 28px 20px; }
  .serve-btn { font-size: .82rem; padding: 16px 12px; }
}

/* ── GLOBAL DELIVERY INTRO ── */
#global-delivery { background: var(--white); padding-bottom: 32px; }
.delivery-intro { font-size: 1.05rem; color: var(--mid); line-height: 1.85; max-width: 680px; margin: 0 auto; }

/* ── READING NETWORKS ── */
#reading-networks { background: var(--light); padding-top: 32px; }
.network-panel {
  border-radius: 22px;
  padding: 40px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.network-panel--us {
  background: linear-gradient(160deg, #f4f8ff 0%, #eaf2ff 100%);
  border: 1px solid #c8ddf7;
}
.network-panel--us:hover {
  background: linear-gradient(160deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #93c5fd;
  box-shadow: 0 12px 36px rgba(37,99,235,.12);
}
.network-panel--india {
  background: linear-gradient(160deg, #f4f8ff 0%, #eaf2ff 100%);
  border: 1px solid #c8ddf7;
}
.network-panel--india:hover {
  background: linear-gradient(160deg, #bfdbfe 0%, #93c5fd 55%, #60a5fa 100%);
  border-color: #60a5fa;
  box-shadow: 0 12px 36px rgba(37,99,235,.15);
}
.network-flag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #1e3a8a;
  margin-bottom: 28px;
  width: fit-content;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.network-flag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border-radius: inherit;
  z-index: -1;
}
.network-flag--teal {
  border-color: #1e3a8a;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.network-flag--violet {
  border-color: #1e3a8a;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.network-flag--violet::before {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}
.network-panel--india .network-divider { background: rgba(37,99,235,.2); }
.network-panel--india .network-points li i { color: #1e3a8a; }
.network-block { margin-bottom: 24px; }
.network-block:last-child { margin-bottom: 0; }
.network-block h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}
.network-block p {
  font-size: .9rem;
  color: #1e40af;
  line-height: 1.75;
  margin: 0;
}
.network-divider {
  height: 1px;
  background: rgba(37,99,235,.2);
  margin: 24px 0;
}
.network-divider--teal { background: rgba(37,99,235,.25); }
.network-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.network-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: #1e40af;
  line-height: 1.65;
}
.network-points li i { color: #1e3a8a; flex-shrink: 0; margin-top: 3px; }

/* ── FOLLOW THE SUN ── */
#follow-the-sun { background: var(--white); }
.sun-timeline {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #060c1a 0%, #073a40 100%);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(38,198,218,.15);
  flex-wrap: wrap;
}
.sun-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 140px;
}
.sun-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.sun-step--us .sun-icon { background: rgba(0,194,255,.15); color: var(--accent); }
.sun-step--handoff .sun-icon { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.sun-step--india .sun-icon { background: rgba(38,198,218,.15); color: var(--teal); }
.sun-label {
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.sun-detail {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.sun-detail span { color: var(--teal); font-weight: 600; }
.sun-arrow {
  font-size: 1.4rem;
  color: rgba(38,198,218,.35);
  flex-shrink: 0;
  align-self: center;
}
.sun-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg,#dbeafe 0%,#bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 600;
  color: #1e3a8a;
  line-height: 1.55;
}
.sun-callout i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; background:linear-gradient(135deg,#1e3a8a 0%,#2563eb 50%,#60a5fa 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }

@media (max-width: 767px) {
  .sun-timeline { flex-direction: column; align-items: flex-start; }
  .sun-arrow { transform: rotate(90deg); align-self: flex-start; margin-left: 14px; }
  .network-panel { padding: 28px 24px; }
}

/* ── IMAGING MODALITIES ── */
#modalities { background: var(--white); }

.mod-carousel {
  background: linear-gradient(160deg, #060c1a 0%, #0b2060 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,194,255,.12);
}

/* tab strip */
.mod-track {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow-x: auto;
  scrollbar-width: none;
}
.mod-track::-webkit-scrollbar { display: none; }

.mod-tab {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  transition: background .3s;
}
.mod-tab i {
  font-size: 1.2rem;
  color: rgba(255,255,255,.3);
  transition: color .3s;
}
.mod-tab span {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .8px;
  white-space: nowrap;
  transition: color .3s;
}
.mod-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: opacity .3s;
}
.mod-tab:hover { background: rgba(255,255,255,.03); }
.mod-tab:hover i,
.mod-tab:hover span { color: rgba(255,255,255,.6); }
.mod-tab.active i { color: var(--accent); }
.mod-tab.active span { color: #fff; }
.mod-tab.active::after { opacity: 1; }

/* panel area */
.mod-panels {
  position: relative;
  min-height: 220px;
}
.mod-panel {
  position: absolute;
  inset: 0;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.mod-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.mod-panel-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(0,194,255,.1);
  border: 1px solid rgba(0,194,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mod-panel-icon i {
  font-size: 1.6rem;
  color: var(--accent);
}
.mod-panel h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.mod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mod-tags span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: .3px;
}

@media (max-width: 575px) {
  .mod-panel { padding: 32px 24px; }
  .mod-tab { padding: 14px 8px; }
  .mod-tab span { font-size: .6rem; }
}

/* ── COMPLIANCE STANDARDS ── */
#compliance { background: linear-gradient(160deg, #060c1a 0%, #0b2060 60%, #091c50 100%); position: relative; overflow: hidden; }
#compliance::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
#compliance::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 80% 50%, rgba(0,194,255,.08), transparent 60%),
    radial-gradient(ellipse 35% 40% at 15% 70%, rgba(123,47,255,.06), transparent 55%);
  pointer-events: none;
}
#compliance .container { position: relative; z-index: 1; }
#compliance .section-badge {   border- border:1px solid rgba(255,255,255,.14) background:rgba(0,194,255,.08);color:var(--accent);border:1px solid rgba(0,194,255,.18)}
#compliance .section-title { color: #fff; }
#compliance .divider-accent { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.compliance-badge {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,194,255,.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(6px);
}
.compliance-code {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.compliance-desc { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ── COMPLIANCE FLIP CARDS ── */
.compliance-flip-card {
  perspective: 1000px;
  height: 200px;
}
.compliance-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.compliance-flip-card:hover .compliance-flip-inner {
  transform: rotateY(180deg);
}
.compliance-flip-front,
.compliance-flip-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  text-align: center;
}
.compliance-flip-front {
  /* inherits .compliance-badge styles */
}
.compliance-flip-back {
  background: linear-gradient(145deg, #dff0ff 0%, #eef7ff 50%, #ffffff 100%);
  border: 1px solid rgba(37,99,235,.15);
  box-shadow: 0 8px 32px rgba(37,99,235,.08);
  transform: rotateY(180deg);
}
.compliance-flip-back p {
  font-size: .775rem;
  color: #1e3a5f;
  line-height: 1.65;
  margin: 0;
  font-weight: 450;
  letter-spacing: .01em;
}

/* ── BOOK A CALL (CTA) ── */
#cta { background: var(--light); }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 580px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: #fff; border-radius: 16px; margin-bottom: 14px; border: 1px solid var(--border); transition: all .3s; }
.contact-info-card:hover { box-shadow: var(--shadow); border-color: rgba(0,194,255,.2); }
.contact-info-icon { width: 46px; height: 46px; flex-shrink: 0; background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-info-icon i { color: #fff; font-size: 1.1rem; }
.contact-info-title { font-weight: 700; font-size: .86rem; color: var(--dark); margin-bottom: 3px; }
.contact-info-text { font-size: .83rem; color: var(--muted); margin: 0; line-height: 1.55; }
.contact-form-wrap { background: #fff; border-radius: 22px; padding: 40px; border: 1px solid var(--border); }
.contact-form-wrap h4 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-wrap p { font-size: .86rem; color: var(--muted); margin-bottom: 26px; }
.form-control, .form-select { border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px; font-size: .86rem; color: var(--dark); background: #fff; transition: border-color .2s, box-shadow .2s; }
.form-control:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,194,255,.1); outline: none; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--dark); margin-bottom: 5px; }

/* ── FOOTER ── */
#footer { background: var(--dark-alt); padding-top: 72px; padding-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo { width: auto; height: 38px; max-width: 160px; display: block; object-fit: contain; flex-shrink: 0; }
.footer-brand span { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.4rem; color: #fff; }
.footer-brand span em { color: var(--accent); font-style: normal; }
.footer-about { color: rgba(255,255,255,.4); font-size: .85rem; line-height: 1.8; margin-bottom: 24px; max-width: 290px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); text-decoration: none; font-size: .82rem; transition: all .2s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-heading { font-size: .76rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: .85rem; text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1rem; }
.footer-links a:hover { color: #fff; }
.footer-newsletter input { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 8px; color: #fff; padding: 11px 14px; font-size: .83rem; width: 100%; margin-bottom: 10px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.28); }
.footer-newsletter input:focus { outline: none; border-color: var(--accent); }
.footer-newsletter button { width: 100%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border: none; border-radius: 8px; padding: 11px; font-size: .84rem; font-weight: 600; cursor: pointer; transition: opacity .2s; }
.footer-newsletter button:hover { opacity: .88; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 52px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,.28); font-size: .8rem; text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ── SCROLL TOP ── */
#scrollTop { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; cursor: pointer; z-index: 999; opacity: 0; transform: translateY(18px); transition: all .3s; border: none; box-shadow: 0 8px 24px rgba(0,194,255,.35); }
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  section { padding: 72px 0; }
  #page-hero { padding: 120px 0 60px; }
  #page-hero h1 { font-size: clamp(2rem, 7vw, 3.4rem); }
}
@media (max-width: 767px) {
  #navbar { background: rgba(12,14,48,.95) !important; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  #page-hero { padding: 96px 0 52px; min-height: auto; }
  #page-hero::before { background: linear-gradient(180deg, rgba(4,10,20,.86) 0%, rgba(4,10,20,.58) 42%, rgba(4,10,20,.45) 100%); }
  #page-hero h1 { font-size: clamp(1.95rem, 8vw, 2.8rem); line-height: 1.1; letter-spacing: -1.2px; }
  .hero-sub { font-size: .85rem; line-height: 1.55; }
  .pull-quote { font-size: 1.25rem; padding-left: 16px; }
  .hero-actions { flex-direction: column; align-items: center; justify-content: center; }
  .hero-actions a { justify-content: center; text-align: center; }
  #cta .btn-outline-custom { font-size: .82rem; padding: 11px 18px; }
}


/* -- NAV DROPDOWN -- */
.nav-dropdown { background: rgba(10,12,45,.97) !important; border: 1px solid rgba(0,194,255,.15) !important; border-radius: 12px !important; padding: 8px !important; min-width: 240px; box-shadow: 0 16px 40px rgba(0,0,0,.4) !important; margin-top: 8px !important; }
.nav-dropdown .dropdown-item { color: rgba(255,255,255,.8) !important; font-size: .88rem; font-weight: 500; padding: 10px 14px !important; border-radius: 8px; transition: background .2s, color .2s; }
.nav-dropdown .dropdown-item:hover, .nav-dropdown .dropdown-item:focus { background: rgba(0,194,255,.12) !important; color: #fff !important; }
.nav-dropdown .dropdown-item.active { background: rgba(0,194,255,.18) !important; color: #fff !important; }
.navbar-nav .dropdown-toggle::after { border-top-color: rgba(255,255,255,.7); vertical-align: .18em; }

    [style*="#dbeafe"] i{background:linear-gradient(135deg,#1e3a8a 0%,#2563eb 50%,#60a5fa 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}