:root {
  --odia-navy: #111827;
  --odia-blue: #2563eb;
  --odia-cyan: #06b6d4;
  --odia-light: #f8fafc;
  --odia-muted: #64748b;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #ffffff;
}

.navbar-brand img {
  height: 36px;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 32%),
    radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.25), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #111827 46%, #020617 100%);
  color: white;
  padding: 6.5rem 0 5.5rem;
}

.hero .eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero .eyebrow {
  background: rgba(255,255,255,.1);
  color: #bfdbfe;
  border: 1px solid rgba(255,255,255,.18);
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero .lead {
  max-width: 820px;
  color: #cbd5e1;
  font-size: 1.2rem;
}

.hero-card {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, .26);
  box-shadow: 0 24px 80px rgba(2, 6, 23, .35);
  border-radius: 24px;
}

.btn-primary {
  background-color: var(--odia-blue);
  border-color: var(--odia-blue);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-title h2 {
  font-weight: 800;
  letter-spacing: -0.025em;
}

.card-lift {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  border-color: #bfdbfe;
}

.service-card {
  height: 100%;
  padding: 2rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: var(--odia-blue);
  font-weight: 800;
  margin-bottom: 1rem;
}

.outcome-band {
  background: #0f172a;
  color: white;
}

.outcome-band p,
.outcome-band .text-muted {
  color: #cbd5e1 !important;
}

.badge-soft {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
  font-weight: 700;
}

.tech-slider-wrap {
  overflow: hidden;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tech-slider {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: scroll-left 55s linear infinite;
  padding: 1.4rem 0;
}

.tech-slider img {
  height: 42px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(15%);
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.process-step {
  position: relative;
  padding-left: 4rem;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.profile-img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}

.cta-box {
  border-radius: 28px;
  background: linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);
  color: white;
  padding: 3rem;
}

.cta-box p {
  color: #dbeafe;
}

.footer-slogan {
  color: #94a3b8;
}

@media (max-width: 767px) {
  .hero {
    padding: 4rem 0 3.5rem;
  }
  .section-padding {
    padding: 3.5rem 0;
  }
  .cta-box {
    padding: 2rem;
  }
}
