:root {
  --primary: #0a4a78;
  --accent: #0891b2;
  --nav-anchor-offset: 58px;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-soft: #f8fafc;
  --border-soft: #e2e8f0;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 14px 36px rgba(79, 70, 229, 0.18);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-anchor-offset);
}

section[id] {
  scroll-margin-top: var(--nav-anchor-offset);
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

.section-space {
  padding: 90px 0;
}

.section-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.navbar-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  /* box-shadow: 0 8px 18px rgba(79, 70, 229, 0.18); */
}

.navbar-brand {
  color: #0a4a78;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-right: 0;
  line-height: 1;
  font-size: 26px;
}
.navbar-brand:hover{
  color: #0a4a78;

}

.brand-sub {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.3px;
  color: #0a4a78;
  margin-top: 2px;
  font-weight: 700;
  font-size: 18px;
}

.brand-highlight {
  color: #0a4a78;
}

.nav-center .nav-link {
  color: #0a4a78;
  font-weight: 500;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary);
}

.nav-cta {
  background: #102a56;
  border-color: #102a56;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.62rem 1.25rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #0b1e40;
  border-color: #0b1e40;
  color: #ffffff;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 110px;
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 70, 229, 0.12), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(34, 197, 94, 0.12), transparent 40%),
    #ffffff;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  font-weight: 800;
}

.hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 20px 0 34px;
}

.hero-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  min-height: 300px;
  animation: floatIn 0.8s ease;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-media:hover img {
  transform: scale(1.04);
}

.btn-brand {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-brand:hover {
  background-color: #0891b2;
  border-color: #0891b2;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}

.btn-outline-brand {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-outline-brand:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.about-box,
.feature-box,
.service-card,
.process-step,
.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.feature-box:hover,
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.85), rgba(34, 197, 94, 0.75));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 16px 32px rgba(79, 70, 229, 0.12);
}

.service-demo-btn {
  margin-top: auto !important;
  align-self: flex-start;
  padding: 0.45rem 1.05rem;
  margin-bottom: 2px;
}

.icon-pill {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(34, 197, 94, 0.14));
  color: var(--primary);
  margin-bottom: 16px;
  overflow: hidden;
}

.icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .icon-image,
.feature-box:hover .icon-image,
.process-step:hover .icon-image {
  transform: scale(1.08);
}

.about-media {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  min-height: 360px;
}

.service-card h5,
.feature-box h6,
.process-step h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p,
.feature-box p,
.process-step p,
.about-box p {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.96rem;
}

.about-box.p-4.p-md-5 {
    margin-top: 16px;
}

.process-light {
  background: linear-gradient(to bottom, #ffffff 0%, #f1f5f9 100%);
}

.process-full-bleed {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow-x: clip;
  background: linear-gradient(to bottom, #ffffff 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.process-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 22px;
}

.process-slider-shell {
  position: relative;
  padding: 6px 8px;
}

.process-slider {
  overflow: visible;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding: 16px 6px 20px;
}

.process-connect {
  position: relative;
  min-width: 0;
}

.process-connect::after {
  content: "";
  position: absolute;
  top: 54px;
  left: calc(100% + 2px);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #93c5fd 0%, #3b82f6 100%);
}

.process-connect:last-child::after {
  display: none;
}

.process-step {
  position: relative;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  min-height: 280px;
  padding: 24px;
  text-align: center;
}

.process-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3b82f6;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e0edff;
}

.process-step .icon-pill {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 10px auto 14px;
}

.soft-bg {
  background: linear-gradient(to bottom, #ffffff 0%, var(--bg-soft) 100%);
}

.cta {
  background:#0a4a78;
    /* linear-gradient(120deg, rgba(79, 70, 229, 0.95), rgba(79, 70, 229, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.32), transparent 45%); */
  color: #ffffff;
  border-radius: 24px;
  padding: 56px 36px;
  box-shadow: var(--shadow-hover);
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.6px;
  color: #0891b2;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}

.industries-slider-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1140px;
  margin: 0 auto;
  padding: 6px 0;
}

.industries-slider-wrap::before,
.industries-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 86px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.industries-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc 20%, rgba(248, 250, 252, 0));
}

.industries-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc 20%, rgba(248, 250, 252, 0));
}

.industries-slider {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: industriesLoop 26s linear infinite;
}

.industries-slider-wrap:hover .industries-slider {
  animation-play-state: paused;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  border-radius: 999px;
  min-width: 260px;
  padding: 12px 18px;
  font-weight: 600;
  color: #475569;
  box-shadow: var(--shadow-soft);
}

.industry-chip img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #dbeafe;
}

.contact-meta {
  color: #64748b;
  margin-top: 14px;
  font-size: 0.9rem;
}

.form-status {
  margin: 2px 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.4em;
}

.form-status.success {
  color: #15803d;
}

.form-status.error {
  color: #b91c1c;
}

.footer-pro {
  border-top: 1px solid var(--border-soft);
  background: #f8fafc;
  color: #475569;
}

.footer-brand {
  font-weight: 700;
  color: #0b254f;
  margin-bottom: 8px;
}

.footer-link {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  transition: all 0.25s ease;
}

.btn-accent:hover {
  background: #0891b2;
  border-color: #0891b2;
  color: #ffffff;
  transform: translateY(-2px);
}

.form-control {
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  padding: 0.75rem 0.95rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.18);
}

footer {
  border-top: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--text-muted);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes industriesLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 991.98px) {
  :root {
    --nav-anchor-offset: 40px;
  }

  .section-space {
    padding: 75px 0;
  }

  .nav-center {
    margin: 16px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .process-slider-shell {
    padding-left: 10px;
    padding-right: 10px;
  }

  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step {
    min-height: 260px;
  }

  .process-connect::after {
    display: none;
  }

  .process-inner {
    padding: 0 10px;
  }
}

@media (max-width: 575.98px) {
  .section-space {
    padding: 65px 0;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .industries-slider-wrap::before,
  .industries-slider-wrap::after {
    width: 40px;
  }

  .industries-slider {
    animation-duration: 18s;
  }

  .industry-chip {
    min-width: 230px;
  }

  .cta {
    padding: 42px 24px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .industry-chip {
    min-width: 240px;
  }
}
