:root {
  --navy: #062c63;
  --sky: #15c6f3;
  --silver: #c8ced7;
  --soft: #f6f9fc;
}
body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  color: #14213d;
  background: #fff;
}
.navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(6, 44, 99, 0.08);
}
.brand-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  scale: 1.5;
}
.hero {
  min-height: 88vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(21, 198, 243, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #fff 0%, #f4f8fc 100%);
  display: flex;
  align-items: center;
  padding-top: 90px;
}
.hero-logo {
  max-width: 100%;
  border-radius: 26px;
  background: #fff;
}
.badge-soft {
  background: rgba(21, 198, 243, 0.12);
  color: var(--navy);
  border: 1px solid rgba(21, 198, 243, 0.25);
}
.btn-main {
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 13px 28px;
  border: none;
}
.btn-main:hover {
  background: #041f46;
  color: #fff;
}
.btn-outline-main {
  color: var(--navy);
  border: 1px solid rgba(6, 44, 99, 0.25);
  border-radius: 999px;
  padding: 13px 28px;
}
.section-title {
  color: var(--navy);
  font-weight: 800;
}
.service-card {
  height: 100%;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(6, 44, 99, 0.09);
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(6, 44, 99, 0.14);
}
.service-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), #0e5da5);
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
}
.feature-box {
  border-radius: 26px;
  background: var(--soft);
  padding: 28px;
  height: 100%;
}
.imaginary-img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(6, 44, 99, 0.12);
}
.contact-box {
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy), #0b3d75);
  color: #fff;
  box-shadow: 0 24px 70px rgba(6, 44, 99, 0.22);
}
footer {
  background: #041f46;
  color: rgba(255, 255, 255, 0.78);
}
footer a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
    text-align: center;
  }
  .hero .d-flex {
    justify-content: center;
  }
  .brand-logo {
    height: 46px;
    scale: 1.2;
  }
}
