@import url('https://fonts.googleapis.com/css2?family=Cal+Sans:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-primary: #0f1f5e;
  --brand-secondary: #1b3a8e;
  --brand-accent: #12a2ff;
  --brand-accent-dark: #0872c7;
  --brand-soft: #eff6ff;
  --bg-light: #f6f9ff;
  --text-dark: #12203a;
  --text-muted: #5f6d85;
  --border-soft: #e7efff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-kicker,
.hero-kicker-alt,
.badge,
.section-space .badge,
.showcase-sub-service-link,
.btn,
.navbar-brand {
  font-family: "Cal Sans", sans-serif;
}

img {
  max-width: 100%;
}

.topbar {
  background: var(--brand-primary);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.topbar a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.navbar {
  background: #fff;
  box-shadow: 0 18px 55px rgba(15, 31, 94, 0.08);
  padding: 1rem 0;
}

.navbar-brand {
  letter-spacing: 0.2px;
  font-size: 1.35rem;
}

.navbar .nav-link {
  font-weight: 600;
  color: var(--text-dark);
}

.navbar .nav-link:hover {
  color: var(--text-dark);
}

.navbar .nav-link.active {
  color: var(--brand-accent);
}

.navbar .dropdown-menu {
  position: absolute;
  border-radius: 20px;
  border: 1px solid rgba(17, 56, 142, 0.1);
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 31, 94, 0.12);
  padding: 1rem;
  min-width: 220px;
  z-index: 2000;
}

.dropdown-menu-large {
  min-width: 260px;
}

.dropdown-menu-small {
  min-width: 220px;
}

.dropdown-menu-mega {
  width: min(520px, calc(100vw - 2rem));
  max-width: 520px;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-menu-mega::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background: #fff;
  border-left: 1px solid rgba(17, 56, 142, 0.1);
  border-top: 1px solid rgba(17, 56, 142, 0.1);
}

.dropdown-grid {
  display: grid;
  /* grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(220px, 260px); */
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 1rem;
  align-items: start;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.dropdown-cta-col {
  justify-content: center;
}

.dropdown-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: #eef4ff;
  min-height: 100%;
}

.dropdown-item {
  color: var(--text-dark);
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(17, 56, 142, 0.08);
  color: var(--brand-primary);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }

  .navbar .dropdown-menu {
    margin-top: 0.75rem;
  }
}

@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.75rem 0;
  }

  .navbar .dropdown-menu,
  .dropdown-menu-mega {
    position: static !important;
    float: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 0.35rem;
    inset: auto !important;
  }

  .dropdown-menu-mega::before {
    display: none;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
  }

  .dropdown-col + .dropdown-col {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(17, 56, 142, 0.08);
  }
}

.btn-primary {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--brand-accent-dark);
  border-color: var(--brand-accent-dark);
}

.btn-outline-primary {
  color: var(--brand-primary);
  border-color: rgba(17, 56, 150, 0.14);
}

.btn-outline-primary:hover {
  background: rgba(17, 56, 150, 0.06);
}

.hero,
.services-hero,
.about-hero,
.blog-hero,
.blog-detail-hero,
.contact-hero {
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before,
.services-hero::before,
.about-hero::before,
.blog-hero::before,
.blog-detail-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(18, 32, 58, 0.45), transparent 35%),
    linear-gradient(135deg, rgba(17, 57, 142, 0.95), rgba(14, 26, 61, 0.95));
}

.hero .container,
.services-hero .container,
.about-hero .container,
.blog-hero .container,
.blog-detail-hero .container,
.contact-hero .container {
  position: relative;
  z-index: 1;
}

.hero,
.services-hero,
.about-hero,
.blog-hero,
.blog-detail-hero,
.contact-hero {
  padding: 100px 0 80px;
}

.hero-kicker,
.hero-kicker-alt {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e7f2ff;
  margin-bottom: 1.25rem;
}

.hero.fullwidth-banner {
  padding: 0;
}

.hero.fullwidth-banner::before {
  display: none;
}

.hero.fullwidth-banner .carousel-item img {
  height: 75vh;
  object-fit: cover;
}

.hero.fullwidth-banner .carousel-indicators [aria-current="true"],
.hero.fullwidth-banner .carousel-indicators .active {
  background-color: rgba(255, 255, 255, 0.9);
}

.hero.fullwidth-banner .carousel-control-prev-icon,
.hero.fullwidth-banner .carousel-control-next-icon {
  filter: invert(1);
}

/* .hero h1,
.services-hero h1,
.about-hero h1,
.blog-hero h1,
.blog-detail-hero h1,
.contact-hero h1 {
  font-size: clamp(2.7rem, 4vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
} */

.hero p,
.services-hero p,
.about-hero p,
.blog-hero p,
.blog-detail-hero p,
.contact-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #142d79 0%, #0d1e3d 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(18, 160, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 30%);
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero .hero-kicker {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-hero .display-5 {
  max-width: 680px;
}

.contact-hero-cards {
  margin-top: 1rem;
}

.contact-hero-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact-hero-card i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--brand-accent);
  font-size: 1.25rem;
}

.contact-hero-card span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.contact-hero-card a,
.contact-hero-card p {
  margin: 0;
  color: #f4f8ff;
}

.contact-form-card {
  border-radius: 28px;
  background: #ffffff;
}

.contact-form-card .badge {
  background: #eff6ff;
  color: var(--brand-primary);
  border: none;
}

.contact-form-card h4 {
  color: var(--text-dark);
}

.contact-form-card .form-control,
.contact-form-card .form-select,
.contact-form-card textarea.form-control {
  border-radius: 14px;
  border-color: var(--border-soft);
  background: #f8fbff;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus,
.contact-form-card textarea.form-control:focus {
  box-shadow: 0 0 0 0.18rem rgba(18, 160, 255, 0.18);
  border-color: var(--brand-accent);
}

.contact-details-section .contact-detail-card {
  border-radius: 24px;
  border: 1px solid rgba(17, 56, 142, 0.08);
  box-shadow: 0 20px 50px rgba(15, 31, 94, 0.05);
  background: #fff;
}

.contact-details-section .card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(17, 56, 142, 0.08);
  color: var(--brand-accent);
  font-size: 1.4rem;
}

.contact-details-section h5 {
  margin-bottom: 1rem;
}

.contact-details-section p {
  color: var(--text-muted);
}

.section-space {
  padding: 90px 0;
}

.contact-map-section .map-header {
  background: #f8fbff;
  border-bottom: 1px solid rgba(17, 56, 142, 0.08);
}

.contact-map-section .section-title {
  color: var(--brand-primary);
}

.contact-map-section .section-subtitle {
  color: var(--text-muted);
  max-width: 720px;
}

.map-frame iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
}

.section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--brand-accent);
}

.contact-form-section .display-6 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-page .contact-info-strip {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
}

.contact-info-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  box-shadow: 0 16px 40px rgba(15, 31, 94, 0.08);
  height: 100%;
}

.contact-info-tile span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-info-tile strong {
  display: block;
  color: var(--brand-primary);
  font-size: 0.98rem;
}

.contact-info-tile-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  font-size: 1.25rem;
}

.contact-info-tile-phone .contact-info-tile-icon {
  background: linear-gradient(135deg, #0f3b96, #12a2ff);
}

.contact-info-tile-email .contact-info-tile-icon {
  background: linear-gradient(135deg, #7c2d12, #ea580c);
}

.contact-info-tile-hours .contact-info-tile-icon {
  background: linear-gradient(135deg, #134e4a, #14b8a6);
}

.contact-page .contact-form-section {
  background:
    radial-gradient(circle at top left, rgba(18, 162, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15, 31, 94, 0.05), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.contact-page .contact-form-card {
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  border-top: 4px solid var(--brand-accent);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(15, 31, 94, 0.08);
}

.contact-page .contact-benefits-panel {
  background: linear-gradient(135deg, rgba(15, 31, 94, 0.96), rgba(27, 58, 142, 0.92));
  border-radius: 24px;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 20px 50px rgba(15, 31, 94, 0.16);
}

.contact-page .contact-benefits-panel .section-kicker,
.contact-page .contact-benefits-panel .text-accent {
  color: #7dd3fc;
}

.contact-page .contact-benefits-panel .display-6,
.contact-page .contact-benefits-panel h2 {
  color: #fff;
}

.contact-page .contact-benefits-panel .text-muted {
  color: rgba(255, 255, 255, 0.78) !important;
}

.contact-page .contact-benefits-panel .benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  text-align: left;
}

.contact-page .contact-benefits-panel .benefit-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.contact-page .contact-benefits-panel .benefit-card h6 {
  color: #fff;
}

.contact-page .contact-benefits-panel .benefit-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-page .contact-benefits-panel .benefit-icon {
  margin: 0 0 0.85rem;
}

.contact-page .contact-benefits-panel .row > div:nth-child(1) .benefit-icon {
  background: linear-gradient(135deg, #7c2d12, #ea580c);
}

.contact-page .contact-benefits-panel .row > div:nth-child(3) .benefit-icon {
  background: linear-gradient(135deg, #581c87, #a855f7);
}

.contact-page .contact-benefits-panel .row > div:nth-child(4) .benefit-icon {
  background: linear-gradient(135deg, #134e4a, #14b8a6);
}

.contact-page .contact-benefits-panel .row > div:nth-child(5) .benefit-icon {
  background: linear-gradient(135deg, #854d0e, #eab308);
}

.contact-page .contact-benefits-panel .row > div:nth-child(6) .benefit-icon {
  background: linear-gradient(135deg, #9d174d, #ec4899);
}

.contact-page .contact-form .btn-primary {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border: none;
  box-shadow: 0 12px 28px rgba(15, 31, 94, 0.18);
}

.contact-page .contact-form .btn-primary:hover {
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent-dark));
}

@media (max-width: 991px) {
  .contact-page .contact-info-strip {
    margin-top: 0;
    padding-top: 1.5rem;
  }

  .contact-page .contact-benefits-panel,
  .contact-page .contact-form-card {
    padding: 1.5rem;
  }
}

.contact-form .form-group {
  position: relative;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  color: var(--brand-accent);
  font-size: 1.1rem;
  z-index: 1;
}

.input-with-icon .form-control,
.input-with-icon .form-select,
.input-with-icon textarea.form-control {
  padding-left: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: #f8fbff;
}

.input-with-icon .form-control:focus,
.input-with-icon .form-select:focus,
.input-with-icon textarea.form-control:focus {
  border-color: var(--brand-accent);
  background: #ffffff;
  box-shadow: 0 0 0 0.18rem rgba(18, 160, 255, 0.18);
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: #fff;
  border-color: var(--brand-accent);
  box-shadow: 0 12px 32px rgba(18, 160, 255, 0.15);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-size: 1.4rem;
}

.benefit-card h6 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-title {
  color: var(--brand-primary);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 720px;
}

.card,
.hero-card,
.feature-card,
.testimonial-card {
  border-radius: 24px;
  border: 1px solid rgba(22, 48, 112, 0.08);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 31, 94, 0.06);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(15, 31, 94, 0.12);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(18, 32, 58, 0.06);
  color: var(--brand-accent);
}

.services-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(114, 136, 255, 0.14), transparent 28%), radial-gradient(circle at bottom right, rgba(24, 197, 255, 0.1), transparent 22%);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.95));
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-section .services-heading .badge {
  border-color: rgba(17, 56, 142, 0.15);
  color: var(--brand-primary);
}

.showcase-services-section {
  background: #f8fbff;
}

.showcase-services-intro {
  max-width: 920px;
}

.showcase-services-intro .section-title {
  font-size: clamp(1.85rem, 2.5vw, 2.75rem);
}

.showcase-services-intro .section-subtitle {
  max-width: 780px;
  color: var(--text-muted);
}

.showcase-services-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  padding-bottom: 0.35rem;
}

.showcase-services-tabs-wrap::-webkit-scrollbar {
  height: 4px;
}

.showcase-services-tabs-wrap::-webkit-scrollbar-thumb {
  background: rgba(17, 56, 142, 0.18);
  border-radius: 999px;
}

.showcase-services-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  min-width: max-content;
  border: 1px solid rgba(17, 56, 142, 0.12);
  border-radius: 999px;
  background: #fff;
  padding: 0.35rem;
  box-shadow: 0 10px 30px rgba(15, 31, 94, 0.06);
}

.showcase-services-tab {
  border: 0;
  background: transparent;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.showcase-services-tab:hover {
  background: rgba(18, 162, 255, 0.08);
}

.showcase-services-tab.active {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 31, 94, 0.18);
}

.showcase-services-panels {
  position: relative;
}

.showcase-service-panel {
  display: none;
  border-radius: 28px;
  border: 1px solid rgba(17, 56, 142, 0.08);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 31, 94, 0.08);
  padding: 2rem;
  animation: showcasePanelFade 0.35s ease;
}

.showcase-service-panel.active {
  display: block;
}

@keyframes showcasePanelFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase-service-panel-content {
  height: 100%;
}

.showcase-service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(18, 162, 255, 0.12);
  color: var(--brand-accent);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.showcase-service-title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 1rem;
  color: var(--brand-primary);
}

.showcase-service-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.showcase-service-cta {
  margin-bottom: 1.75rem;
}

.showcase-sub-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.showcase-sub-service-link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 56, 142, 0.12);
  background: #fff;
  color: var(--brand-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.showcase-sub-service-link:hover {
  background: rgba(18, 162, 255, 0.08);
  border-color: rgba(18, 162, 255, 0.35);
  transform: translateY(-1px);
}

.showcase-service-media {
  min-height: 320px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: #eef3ff;
  border: 1px solid rgba(17, 56, 142, 0.08);
}

.showcase-service-media-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .showcase-services-section .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .showcase-service-panel {
    padding: 1.5rem;
  }

  .showcase-service-media,
  .showcase-service-media-image {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .showcase-services-tabs {
    border-radius: 18px;
  }

  .showcase-services-tab {
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
  }

  .showcase-service-cta {
    width: 100%;
  }
}

@media (max-width: 991px) {

  .hero,
  .services-hero,
  .about-hero,
  .blog-hero,
  .blog-detail-hero,
  .contact-hero {
    padding: 70px 0 70px;
  }

  .hero h1,
  .services-hero h1,
  .about-hero h1,
  .blog-hero h1,
  .blog-detail-hero h1,
  .contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  .hero-kicker,
  .hero-kicker-alt,
  .showcase-services-section .showcase-services-tab,
  .services-mid-form .badge,
  .service-sidebar-card .badge {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }

  .services-hero .btn,
  .hero .btn,
  .lead-form-card .btn,
  .service-sidebar-card .btn,
  .showcase-service-cta {
    width: 100%;
  }

  .services-overview-section .section-title,
  .services-mid-form .section-title,
  .case-study-section .section-title,
  .faq-section .section-title {
    text-align: left;
  }

  .services-overview-section .service-sidebar-card,
  .service-sidebar-card.alt,
  .case-study-card,
  .services-mid-form .lead-form-card {
    margin-top: 1.5rem;
  }

  .service-sidebar-card {
    padding: 1.5rem;
  }

  .case-study-card {
    padding: 1.8rem;
  }
}

@media (max-width: 767px) {

  .hero,
  .services-hero,
  .about-hero,
  .blog-hero,
  .blog-detail-hero,
  .contact-hero {
    padding: 60px 0 60px;
  }

  .hero h1,
  .services-hero h1 {
    font-size: 2.4rem;
  }

  .hero p,
  .services-hero p,
  .about-hero p,
  .blog-hero p,
  .blog-detail-hero p,
  .contact-hero p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .services-overview-section .section-title,
  .services-mid-form .section-title,
  .case-study-section .section-title,
  .faq-section .section-title {
    font-size: 2rem;
  }

  .services-overview-section .section-subtitle,
  .services-mid-form .section-subtitle,
  .faq-section .section-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .service-sidebar-card,
  .service-sidebar-card.alt,
  .case-study-card,
  .faq-section .accordion-item {
    border-radius: 20px;
  }
}

.service-home-card {
  border-radius: 30px;
  border: none;
  min-height: 340px;
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 24px 72px rgba(20, 50, 110, 0.08);
  display: flex;
  flex-direction: column;
}

.service-home-card .service-card-top {
  align-items: center;
  justify-content: space-between;
}

.service-home-card .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  box-shadow: 0 20px 40px rgba(12, 44, 111, 0.18);
}

.service-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(17, 56, 142, 0.08);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-home-card h5 {
  color: #0f1f46;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.service-home-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-home-card .btn {
  align-self: flex-start;
}

.services-slider-wrap {
  position: relative;
}

.services-slider {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.services-slider::-webkit-scrollbar {
  height: 8px;
}

.services-slider::-webkit-scrollbar-thumb {
  background: rgba(17, 56, 142, 0.22);
  border-radius: 999px;
}

.services-slide {
  scroll-snap-align: start;
  flex: 0 0 min(330px, 100%);
  width: min(330px, 100%);
}

.services-slider-nav {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  display: flex;
  gap: 0.75rem;
}

@media (min-width: 992px) {
  .services-slider {
    margin: 0;
    padding: 0;
  }

  .services-slide {
    width: 340px;
  }
}

@media (max-width: 576px) {
  .services-slider-wrap {
    padding-top: 1.5rem;
  }

  .services-slider-nav {
    position: static;
    justify-content: flex-end;
    padding: 1rem 1rem 0;
  }
}


.blog-meta,
.service-meta,
.metric-meta,
.article-meta,
.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta-strip {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
}

.footer {
  background: #071331;
  color: rgba(255, 255, 255, 0.8);
}

.footer h6 {
  color: #fff;
  margin-bottom: 0.9rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.form-control,
.form-select,
textarea.form-control {
  border-radius: 14px;
  border: 1px solid #dce6f7;
  padding: 0.95rem 1rem;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: rgba(18, 160, 255, 0.35);
  box-shadow: 0 0 0 0.25rem rgba(18, 160, 255, 0.12);
}

.hero-card,
.lead-form-card,
.services-highlight-card,
.about-value-card,
.blog-sidebar .card,
.testimonial-card,
.cta-card,
.feature-card {
  background: #fff;
}

.lead-form-card {
  padding: 2rem;
}

.lead-form-card h4,
.testimonial-card h3,
.about-value-card h5,
.services-highlight-card h3 {
  color: var(--brand-primary);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: #e7f2ff;
}

.client-strip {
  background: #fff;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(17, 56, 142, 0.08);
  border-bottom: 1px solid rgba(17, 56, 142, 0.08);
}

.client-strip span,
.client-strip strong {
  color: var(--text-dark);
  font-weight: 600;
}

.metric-tile {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(17, 56, 142, 0.06);
}

.metric-tile h3 {
  font-size: 2.4rem;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.metric-tile p {
  margin: 0;
  color: var(--text-muted);
}

.process-section {
  background: #fff;
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(18, 160, 255, 0.1);
  color: var(--brand-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 56, 142, 0.14);
  color: var(--brand-primary);
  font-size: 0.92rem;
}

.hero-form-row {
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-form-row .form-control,
.hero-form-row .form-select {
  background: rgba(255, 255, 255, 0.92);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.why-list li::before {
  content: "\f058";
  font-family: "Bootstrap Icons";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--brand-accent);
}

.blog-card-media,
.blog-article-cover,
.about-story-media,
.service-detail-media,
.blog-featured-media {
  overflow: hidden;
  border-radius: 24px;
  background: #eef3ff;
}

.blog-card-media img,
.blog-article-cover img,
.about-story-image,
.blog-featured-media img,
.service-detail-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero-media,
.section-banner-media,
.contact-section-media {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.page-hero-image,
.section-banner-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.page-hero-image {
  min-height: 220px;
  max-height: 280px;
}

.section-banner-image {
  min-height: 240px;
  max-height: 360px;
}

.about-story-media {
  min-height: 360px;
}

.about-story-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.service-page-card-media {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  margin: -1px -1px 0;
}

.service-page-card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.service-page-card:hover .service-page-card-media img {
  transform: scale(1.04);
}

.blog-list-card,
.service-page-card,
.blog-featured-card,
.about-feature-card,
.about-journey-card,
.blog-sidebar .card,
.testimonial-card {
  border: none;
}

.blog-list-card .blog-read-link,
.service-read-link,
.blog-recent-item {
  color: var(--brand-accent);
  font-weight: 700;
}

.insights-section {
  background: #f8fbff;
}

.insights-header {
  gap: 1rem;
}

.insights-section .testimonial-card {
  height: 100%;
}

.insights-section #blogs-grid .blog-list-card {
  flex-direction: column;
  padding: 1rem;
}

.insights-section #blogs-grid .blog-card-media {
  width: 100%;
  height: 120px;
  min-height: 120px;
  margin-bottom: 0.75rem;
  padding: 0;
}

.insights-section #blogs-grid .blog-card-media img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.insights-section #blogs-grid .blog-list-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.insights-section #blogs-grid .blog-list-card h5 {
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.insights-section #blogs-grid .blog-list-card .blog-meta {
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}

.insights-section #blogs-grid .blog-list-card p:not(.blog-meta) {
  font-size: 0.84rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.insights-section #blogs-grid .badge {
  font-size: 0.68rem;
  margin-bottom: 0.5rem !important;
}

.insights-section #blogs-grid .blog-read-link {
  font-size: 0.84rem;
}

.insights-section .section-title {
  margin-bottom: 0.5rem;
}

.insights-section .section-subtitle {
  color: var(--text-muted);
  max-width: 540px;
}

.blog-list-card {
  display: flex;
  flex-direction: column;
}

.blog-list-card h5 {
  margin-bottom: 0.85rem;
}

.blog-list-card p {
  color: var(--text-muted);
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-sidebar .card {
  border-radius: 24px;
  border: 1px solid rgba(17, 56, 142, 0.08);
  box-shadow: 0 18px 40px rgba(15, 31, 94, 0.06);
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.service-sidebar {
  position: static;
  align-self: stretch;
}

.blog-side-link,
.blog-recent-item {
  color: var(--text-dark);
}

.blog-side-link:hover,
.blog-recent-item:hover {
  color: var(--brand-accent);
  text-decoration: none;
}

.page-header {
  background: #eef4ff;
  padding: 60px 0;
}

.page-header h1,
.page-header p {
  margin: 0;
}

.about-story-media,
.blog-article-cover {
  background-size: cover;
  background-position: center;
}

.service-detail-media {
  overflow: hidden;
  border: 1px solid rgba(17, 56, 142, 0.08);
  box-shadow: 0 18px 48px rgba(15, 31, 94, 0.08);
  background: #eef3ff;
}

.service-detail-media-image,
.service-detail-inline-image,
.service-detail-gallery-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.service-detail-media-image {
  min-height: 320px;
  max-height: 420px;
}

.service-detail-gallery-image {
  aspect-ratio: 4 / 3;
  min-height: 180px;
  border: 1px solid rgba(17, 56, 142, 0.08);
  box-shadow: 0 12px 28px rgba(15, 31, 94, 0.06);
}

.service-detail-inline-media {
  overflow: hidden;
  border: 1px solid rgba(17, 56, 142, 0.08);
  box-shadow: 0 14px 36px rgba(15, 31, 94, 0.06);
}

.service-detail-inline-image {
  min-height: 240px;
  max-height: 320px;
}

.blog-article {
  color: var(--text-dark);
}

.blog-article h2,
.blog-article h3,
.blog-article h4 {
  margin-top: 2rem;
}

.blog-article p,
.blog-article li {
  color: var(--text-muted);
}

.blog-detail-meta span {
  margin-right: 1.25rem;
}

.blog-filter-wrap {
  background: #fff;
  padding: 1rem 0;
}

.blog-filter-wrap .btn {
  border-radius: 999px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(18, 160, 255, 0.12), rgba(17, 56, 142, 0.06));
  border: none;
}

.testimonial-card p {
  color: rgba(17, 32, 68, 0.8);
}

@media (max-width: 991px) {

  .hero,
  .services-hero,
  .about-hero,
  .blog-hero,
  .blog-detail-hero,
  .contact-hero {
    padding: 70px 0 70px;
  }
}

.testimonial-card h3 {
  font-size: 1.3rem;
  line-height: 1.55;
}

.blog-hero {
  background: linear-gradient(120deg, #071642, #0a2c78);
}

.blog-filter-wrap {
  border-bottom: 1px solid #e8eeff;
  background: #fff;
}

.blog-featured-card {
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(10, 32, 85, 0.12);
}

.blog-featured-media {
  min-height: 280px;
  background: #eef3ff;
}

.blog-featured-media img {
  min-height: 280px;
}

.blog-list-card {
  border: 1px solid #e2eaff;
}

.blog-card-media {
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  background: #eef3ff;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-read-link {
  text-decoration: none;
  color: #0f3f97;
  font-weight: 600;
}

.blog-read-link:hover {
  color: #0b2e70;
}

.blog-detail-hero {
  background: linear-gradient(120deg, #071642, #0a2c78);
}

.blog-detail-meta {
  font-size: 0.95rem;
}

.blog-article {
  font-size: 1.04rem;
  color: #2a3552;
}

.blog-article-cover {
  min-height: 340px;
  border-radius: 14px;
  overflow: hidden;
}

.blog-article-cover img {
  min-height: 340px;
}

.blog-article h2 {
  margin-top: 2rem;
  margin-bottom: 0.9rem;
  color: #12295c;
  font-size: 1.62rem;
  font-weight: 700;
}

.blog-article p,
.blog-article li {
  color: #2f3c5c;
}

.blog-article ul,
.blog-article ol {
  padding-left: 1.2rem;
}

.blog-side-link {
  text-decoration: none;
  color: #2d3f6a;
}

.blog-side-link:hover {
  color: #0f3f97;
}

.blog-recent-item {
  text-decoration: none;
  color: #25375f;
  border-bottom: 1px solid #e7eeff;
  padding-bottom: 0.8rem;
}

.blog-recent-item:last-child {
  border-bottom: 0;
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

.blog-recent-item:hover strong {
  color: #0f3f97;
}

.blog-side-cta {
  background: linear-gradient(140deg, #f2f7ff, #ffffff);
}

.services-hero {
  background: linear-gradient(120deg, #071642, #0a2c78);
}

.service-page-card {
  overflow: hidden;
  border: 1px solid #e2eaff;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0.5rem;
  background: linear-gradient(120deg, #f3f8ff, #ffffff);
}

.service-card-index {
  font-size: 2rem;
  font-weight: 800;
  color: #d5e4ff;
  line-height: 1;
}

.service-read-link {
  text-decoration: none;
  color: #0f3f97;
  font-weight: 600;
}

.service-read-link:hover {
  color: #0b2e70;
}

.services-highlight-card {
  border: 1px solid #e2eaff;
  background: #fff;
}

.services-highlight-card.alt {
  background: linear-gradient(140deg, #f4f9ff, #ffffff);
}

.service-sidebar-card {
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 31, 94, 0.06);
}

.service-sidebar-card.alt {
  background: linear-gradient(140deg, #f4f9ff, #ffffff);
}

.services-overview-section .section-title {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
}

.services-mid-form {
  background: #fff;
  border-top: 1px solid rgba(17, 56, 142, 0.06);
  border-bottom: 1px solid rgba(17, 56, 142, 0.06);
}

.services-mid-form .lead-form-card {
  box-shadow: 0 18px 40px rgba(15, 31, 94, 0.06);
}

.bg-soft {
  background: #f8fbff;
}

.case-study-card {
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 31, 94, 0.06);
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(17, 56, 142, 0.08);
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 31, 94, 0.04);
}

.stat-card strong {
  display: block;
  font-size: 2.2rem;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.faq-section .accordion-item {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(17, 56, 142, 0.08);
}

.faq-section .accordion-button {
  background: #fff;
  color: var(--brand-primary);
  font-weight: 700;
}

.faq-section .accordion-button:not(.collapsed) {
  background: #eef4ff;
}

.faq-section .accordion-body {
  color: var(--text-muted);
}

.services-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-check-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: #2f3c5c;
}

.services-check-list li i {
  color: #00a8f5;
  margin-top: 2px;
}

.service-tag {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #e8f3ff;
  color: #17427f;
  font-size: 0.88rem;
  font-weight: 600;
}

.about-hero {
  background: linear-gradient(120deg, #071642, #0a2c78);
}

.about-story-media {
  min-height: 360px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f3b96, #1e66d8);
  box-shadow: 0 18px 42px rgba(10, 32, 85, 0.15);
}

.about-value-card {
  border: 1px solid #e2eaff;
  background: #fff;
}

.about-feature-card {
  border: 1px solid #e2eaff;
}

.about-journey-card {
  border: 1px solid #e2eaff;
  background: linear-gradient(140deg, #f4f9ff, #ffffff);
}

.about-milestone {
  border: 1px solid #e4ebfb;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  background: #fff;
  height: 100%;
}

.about-year {
  display: inline-block;
  font-weight: 800;
  color: var(--brand-accent);
  margin-bottom: 0.35rem;
}

.about-award-badge {
  text-align: center;
  border: 1px dashed #c5d6fb;
  border-radius: 12px;
  padding: 1.1rem 0.8rem;
  background: #f7faff;
  color: #1a356f;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .section-subtitle {
    max-width: 100%;
  }

  .card,
  .service-sidebar-card,
  .lead-form-card,
  .case-study-card,
  .faq-section .accordion-item,
  .about-value-card,
  .about-award-badge,
  .blog-sidebar .card {
    padding: 1.5rem;
  }

  .services-overview-section .section-title,
  .services-mid-form .section-title,
  .case-study-section .section-title,
  .faq-section .section-title,
  .about-section .section-title,
  .contact-map-section .section-title {
    font-size: clamp(2rem, 2.2vw, 2.4rem);
  }

  .services-overview-section .section-subtitle,
  .services-mid-form .section-subtitle,
  .faq-section .section-subtitle,
  .contact-map-section .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {

  .blog-list-card,
  .row.g-4,
  .row.g-5,
  .row.g-5>div,
  .row.g-4>div {
    gap: 1.5rem;
  }

  .services-page #services-grid .services-slide,
  .services-page #services-grid > [class*="col-"] {
    width: 100%;
  }

  .service-sidebar-card,
  .service-sidebar-card.alt,
  .case-study-card,
  .lead-form-card,
  .faq-section .accordion-item,
  .testimonial-card,
  .about-value-card,
  .about-award-badge,
  .blog-sidebar .card {
    margin-top: 1rem;
  }

  .stat-card,
  .testimonials-card,
  .blog-card-media,
  .service-detail-media,
  .about-story-media,
  .blog-article-cover {
    min-height: auto;
  }

  .hero h1,
  .services-hero h1,
  .about-hero h1,
  .blog-hero h1,
  .blog-detail-hero h1,
  .contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }

  .hero p,
  .services-hero p,
  .about-hero p,
  .blog-hero p,
  .blog-detail-hero p,
  .contact-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  .hero,
  .services-hero,
  .about-hero,
  .blog-hero,
  .blog-detail-hero,
  .contact-hero {
    padding: 60px 0 50px;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-kicker,
  .hero-kicker-alt,
  .showcase-services-section .showcase-services-tab,
  .services-mid-form .badge,
  .service-sidebar-card .badge,
  .section-space .badge {
    padding: 0.55rem 0.95rem;
    font-size: 0.75rem;
  }

  .hero .btn,
  .hero .btn-lg,
  .services-hero .btn,
  .about-hero .btn,
  .blog-hero .btn,
  .blog-detail-hero .btn,
  .contact-hero .btn,
  .service-detail-hero .btn,
  .cta-strip .btn,
  .lead-form-card .btn,
  .contact-form-card .btn,
  .blog-side-cta .btn {
    width: 100%;
  }

  .blog-filter-wrap .btn,
  .insights-header .btn,
  .service-inline-cta-card .btn,
  .case-study-card .btn {
    width: auto;
  }

  .hero-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges span {
    width: 100%;
  }

  .services-page #services-grid,
  .service-sidebar-card,
  .services-mid-form .lead-form-card,
  .case-study-section .row,
  .faq-section .accordion {
    display: block;
  }

  .service-sidebar-card,
  .service-sidebar-card.alt,
  .case-study-card,
  .lead-form-card,
  .faq-section .accordion-item,
  .stat-card,
  .about-award-badge,
  .blog-sidebar .card {
    width: 100%;
  }

  .about-story-media,
  .service-detail-media,
  .blog-article-cover {
    min-height: 260px;
  }

  .form-control,
  .form-select,
  textarea.form-control {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .navbar .navbar-collapse {
    padding-top: 0.75rem;
  }

  .navbar .nav-link {
    padding: 0.65rem 1rem;
  }

  .client-strip {
    text-align: center;
  }

  .metric-tile,
  .stat-card,
  .process-number,
  .showcase-service-panel,
  .case-study-card,
  .service-sidebar-card,
  .lead-form-card,
  .faq-section .accordion-item,
  .blog-sidebar .card {
    padding: 1.25rem;
  }

  .metric-tile h3,
  .stat-card strong {
    font-size: 2rem;
  }

  .section-space {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero,
  .services-hero,
  .about-hero,
  .blog-hero,
  .blog-detail-hero,
  .contact-hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.contact-section {
  background: #f8fafc;
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.contact-form-card .form-control {
  min-height: 55px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.contact-form-card textarea.form-control {
  min-height: 140px;
  resize: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(13, 110, 253, .1);
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.1rem;
}

.contact-info h6 {
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-info p {
  color: #6b7280;
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 25px;
  }
}

/* Service Detail Page */
.service-detail-hero {
  background: linear-gradient(120deg, #071642 0%, #0a2c78 55%, #0f3f97 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(18, 162, 255, 0.18), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.06), transparent 30%);
  pointer-events: none;
}

.service-detail-hero .container {
  position: relative;
  z-index: 1;
}

.service-breadcrumb .breadcrumb-item,
.service-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.service-breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.service-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}

.service-detail-hero .img-fluid {
  box-shadow: 0 24px 60px rgba(7, 22, 66, 0.25);
}

.service-recognition-section {
  background: #fff;
  border-bottom: 1px solid rgba(17, 56, 142, 0.08);
}

.service-recognition-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
}

.service-recognition-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #2f3c5c;
  font-size: 0.98rem;
}

.service-recognition-list li i {
  color: var(--brand-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.service-detail-media {
  overflow: hidden;
  border: 1px solid rgba(17, 56, 142, 0.08);
  box-shadow: 0 18px 48px rgba(15, 31, 94, 0.08);
  background: #eef3ff;
}

.service-offering-card {
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(15, 31, 94, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 31, 94, 0.08);
}

.service-offering-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.service-offering-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  color: var(--brand-primary);
}

.service-offering-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.service-clients-strip {
  background: #f8fbff;
  border-top: 1px solid rgba(17, 56, 142, 0.06);
  border-bottom: 1px solid rgba(17, 56, 142, 0.06);
}

.service-clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}

.service-clients-logos span {
  color: #8a96ad;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-inline-cta {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
}

.service-inline-cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #fff;
}

.service-inline-cta-card h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.service-inline-cta-card p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-process-step {
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(15, 31, 94, 0.04);
}

.service-process-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 162, 255, 0.12);
  color: var(--brand-primary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--brand-primary);
}

.service-process-step p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.94rem;
}

.service-benefit-card,
.service-why-card {
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 28px rgba(15, 31, 94, 0.04);
}

.service-benefit-card h3,
.service-why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  color: var(--brand-primary);
}

.service-benefit-card p,
.service-why-card p {
  color: var(--text-muted);
  margin: 0;
}

.service-testimonials-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
}

.service-testimonials-scroll::-webkit-scrollbar {
  height: 6px;
}

.service-testimonials-scroll::-webkit-scrollbar-thumb {
  background: rgba(17, 56, 142, 0.22);
  border-radius: 999px;
}

.service-testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

.service-testimonial-slide {
  flex: 0 0 min(300px, 85%);
  min-width: 260px;
  scroll-snap-align: start;
}

.service-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.service-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(18, 162, 255, 0.18);
}

.service-testimonial-card {
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 31, 94, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-testimonial-quote {
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(18, 162, 255, 0.35);
  margin-bottom: 0.35rem;
}

.service-testimonial-card p {
  color: #2f3c5c;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-testimonial-author strong {
  display: block;
  color: var(--brand-primary);
  font-size: 0.9rem;
}

.service-testimonial-author span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.service-advantage-card,
.service-engagement-card {
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(15, 31, 94, 0.04);
}

.service-advantage-card h3,
.service-engagement-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.75rem;
  color: var(--brand-primary);
}

.service-advantage-card p,
.service-engagement-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.94rem;
}

.service-case-study-card {
  background: #fff;
  border: 1px solid rgba(17, 56, 142, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 31, 94, 0.05);
}

.service-case-study-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.service-case-study-body {
  padding: 1.75rem 2rem;
  height: 100%;
}

.service-case-study-card h3 {
  font-size: 1.15rem;
  margin: 1rem 0;
  color: var(--brand-primary);
}

.service-case-study-stat {
  margin-bottom: 1.25rem;
}

.service-case-study-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--brand-accent);
  line-height: 1.1;
}

.service-case-study-stat span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

@media (max-width: 991px) {
  .service-detail-hero {
    padding: 60px 0 70px;
  }

  .service-recognition-list {
    grid-template-columns: 1fr;
  }

  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-inline-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .service-detail-hero .btn-lg,
  .service-inline-cta-card .btn {
    width: 100%;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-media-image {
    min-height: 220px;
    max-height: 280px;
  }

  .service-detail-inline-image {
    min-height: 200px;
    max-height: 240px;
  }

  .service-case-study-body {
    padding: 1.25rem;
  }
}

.service-detail-page .service-detail-hero {
  padding: 70px 0;
}

.service-detail-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.service-article h2,
.service-article h3 {
  color: var(--brand-primary);
}

.service-article h2 {
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.service-article h3 {
  font-size: 1.05rem;
}

.service-article p,
.service-article li {
  color: var(--text-muted);
}

.service-content-block {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(17, 56, 142, 0.08);
}

.service-content-block:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.blog-detail-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.service-detail-content .service-process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-content .cta-strip {
  margin-top: 3rem;
}

.service-content-block,
.blog-article h2 {
  scroll-margin-top: 100px;
}

.blog-detail-meta {
  word-break: break-word;
}

@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
  }

  .service-detail-content .service-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .topbar .container {
    justify-content: center !important;
    text-align: center;
  }

  .topbar .d-flex.gap-4 {
    justify-content: center;
    gap: 0.75rem 1.25rem !important;
    font-size: 0.85rem;
  }

  .insights-section .row > .col-lg-4,
  .insights-section .row > .col-lg-8 {
    width: 100%;
  }

  .service-detail-hero .img-fluid,
  .hero .img-fluid {
    margin-top: 0.5rem;
  }
}