@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --primary-navy: #061f52;
  --primary-blue: #123d72;
  --secondary-blue: #2f5f96;
  --accent-green: #c89214;
  --dark-green: #8c5d05;
  --light-background: #faf8f3;
  --soft-green-background: #fff5dd;
  --white-surface: #ffffff;
  --main-text: #17213a;
  --secondary-text: #687083;
  --border-color: #eadfc8;
  --gradient-primary: linear-gradient(
    135deg,
    #061f52 0%,
    #123d72 68%,
    #c89214 100%
  );
  --shadow-sm: 0 12px 28px rgba(6, 31, 82, 0.08);
  --shadow-md: 0 20px 55px rgba(6, 31, 82, 0.13);
  --header-height: 100px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.72;
  color: var(--main-text);
  background: var(--white-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open {
  padding-right: 0 !important;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(200, 146, 20, 0.28);
  outline-offset: 3px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--primary-navy);
  line-height: 1.16;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}
p {
  color: var(--secondary-text);
}
section,
footer {
  position: relative;
}
.section-padding {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-heading h2 {
  margin: 0 0 1.05rem;
}
.section-heading p {
  margin: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(18, 61, 114, 0.13);
  border-radius: 999px;
  color: var(--primary-blue);
  background: rgba(18, 61, 114, 0.06);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #fff0c7;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  padding: 0.76rem 1.22rem;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.btn i,
.text-link i {
  transition: transform 0.25s ease;
}
.btn:hover i,
.text-link:hover i {
  transform: translateX(4px);
}
.btn-primary-cta {
  color: #fff;
  border: 1px solid var(--primary-blue);
  background: var(--primary-blue);
  box-shadow: 0 10px 24px rgba(18, 61, 114, 0.2);
}
.btn-primary-cta:hover,
.btn-primary-cta:focus {
  color: #fff;
  border-color: var(--primary-navy);
  background: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6, 31, 82, 0.2);
}
.btn-outline-cta {
  color: var(--primary-blue);
  border: 1px solid var(--border-color);
  background: #fff;
}
.btn-outline-cta:hover,
.btn-outline-cta:focus {
  color: #fff;
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  transform: translateY(-2px);
}
.site-header {
  height: var(--header-height);
  z-index: 1040;
  overflow: visible;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    height 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
  height: 78px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(234, 223, 200, 0.8);
  box-shadow: 0 10px 34px rgba(6, 31, 82, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-header .navbar {
  width: 100%;
  height: 100%;
  padding: 0;
}
.site-header .navbar > .container {
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  transition:
    padding-top 0.3s ease,
    padding-bottom 0.3s ease;
}
.site-header.is-scrolled .navbar > .container {
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-header .navbar-brand {
  margin: 0;
  padding: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  flex-shrink: 0;
}
.brand-mark {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(200, 146, 20, 0.34);
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 12px 30px rgba(6, 31, 82, 0.2),
    0 0 0 4px rgba(200, 146, 20, 0.08);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    flex-basis 0.3s ease,
    box-shadow 0.3s ease;
}
.site-header.is-scrolled .brand-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  box-shadow:
    0 8px 22px rgba(6, 31, 82, 0.14),
    0 0 0 3px rgba(200, 146, 20, 0.06);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.12);
}
.navbar-nav .nav-link {
  position: relative;
  padding: 0.75rem 0.78rem !important;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 600;
}
.navbar-nav .nav-link::after {
  transition: transform 0.2s ease;
}
.site-header:not(.is-scrolled) .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.site-header:not(.is-scrolled) .navbar-nav .nav-link:hover,
.site-header:not(.is-scrolled) .navbar-nav .nav-link:focus,
.site-header:not(.is-scrolled) .navbar-nav .nav-link.show {
  color: #ffffff;
}
.site-header.is-scrolled .navbar-nav .nav-link {
  color: #344054;
  text-shadow: none;
}
.site-header.is-scrolled .navbar-nav .nav-link:hover,
.site-header.is-scrolled .navbar-nav .nav-link:focus,
.site-header.is-scrolled .navbar-nav .nav-link.show {
  color: var(--primary-blue);
}
.navbar-nav .nav-link:not(.dropdown-toggle)::before {
  content: "";
  position: absolute;
  right: 0.78rem;
  bottom: 0.4rem;
  left: 0.78rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.navbar-nav .nav-link:not(.dropdown-toggle):hover::before,
.navbar-nav .nav-link:not(.dropdown-toggle):focus::before {
  transform: scaleX(1);
}
.site-header:not(.is-scrolled) .btn-primary-cta {
  color: var(--primary-navy);
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}
.site-header:not(.is-scrolled) .btn-primary-cta:hover,
.site-header:not(.is-scrolled) .btn-primary-cta:focus {
  color: #ffffff;
  border-color: var(--accent-green);
  background: var(--accent-green);
}
.site-header.is-scrolled .btn-primary-cta {
  color: #ffffff;
  border-color: var(--primary-blue);
  background: var(--primary-blue);
}
.dropdown-menu {
  min-width: 255px;
  margin-top: 0 !important;
  padding: 0.55rem;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.dropdown-item {
  padding: 0.75rem 0.9rem;
  border-radius: 9px;
  color: var(--main-text);
  font-size: 0.87rem;
  font-weight: 600;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--primary-blue);
  background: var(--light-background);
}
.menu-lines {
  width: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-lines span {
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #ffffff;
  transition: background-color 0.3s ease;
}
.site-header.is-scrolled .menu-lines span {
  background: var(--primary-navy);
}
.menu-lines span:nth-child(2) {
  width: 76%;
  margin-left: auto;
}
.mobile-offcanvas {
  width: min(88vw, 380px) !important;
  border-left: 0;
}
.mobile-offcanvas .offcanvas-header {
  min-height: 82px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}
.mobile-offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem 1.5rem;
}
.mobile-nav-list > li {
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: var(--main-text);
  border: 0;
  background: transparent;
  font-weight: 600;
  text-align: left;
}
.mobile-nav-toggle i {
  transition: transform 0.2s ease;
}
.mobile-nav-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}
.mobile-submenu {
  padding: 0 0 0.8rem 0.55rem;
}
.mobile-submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  color: var(--secondary-text);
  font-size: 0.88rem;
  font-weight: 500;
}
.offcanvas-contact {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--secondary-text);
  font-size: 0.85rem;
}
.offcanvas-contact i {
  color: var(--accent-green);
  margin-right: 0.45rem;
}
.hero-section {
  height: 100vh;
  height: 100svh;
  min-height: 760px;
  margin-top: 0;
  overflow: hidden;
  background: var(--primary-navy);
}
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 100%;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 7s ease-out both;
}
.carousel-item.active .hero-image {
  animation: heroZoom 7s ease-out both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 55, 0.93) 0%,
      rgba(4, 20, 55, 0.8) 45%,
      rgba(4, 20, 55, 0.28) 76%,
      rgba(4, 20, 55, 0.36) 100%
    ),
    linear-gradient(180deg, rgba(6, 31, 82, 0.14), rgba(6, 31, 82, 0.45));
}
.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
  top: 10%;
}
.hero-content {
  width: min(760px, 72%);
  padding: 3rem 0;
  pointer-events: auto;
}
.hero-content h1 {
  max-width: 720px;
  margin-bottom: 1.35rem;
  color: #fff;
}
.hero-content p {
  max-width: 670px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.btn-hero-primary,
.btn-light-cta {
  color: var(--primary-navy);
  border: 1px solid #fff;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}
.btn-hero-primary:hover,
.btn-hero-primary:focus,
.btn-light-cta:hover,
.btn-light-cta:focus {
  color: #fff;
  border-color: var(--accent-green);
  background: var(--accent-green);
  transform: translateY(-2px);
}
.btn-hero-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.45rem;
  margin-top: 2.1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-assurance i {
  color: #e1b44a;
}
.loan-settlement-strip {
  position: relative;
  z-index: 3;
  padding: clamp(2.2rem, 4vw, 3.4rem) 0;
  background: #ffffff;
}
.loan-settlement-banner {
  position: relative;
  isolation: isolate;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  overflow: hidden;
  border: 2px solid var(--accent-green);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(18, 61, 114, 0.13),
      transparent 32%
    ),
    radial-gradient(
      circle at 70% 100%,
      rgba(200, 146, 20, 0.12),
      transparent 35%
    ),
    linear-gradient(135deg, #ffffff 0%, #faf8f3 100%);
  box-shadow: 0 22px 55px rgba(6, 31, 82, 0.12);
}
.loan-settlement-banner::after {
  content: "";
  position: absolute;
  top: -120px;
  right: 12%;
  z-index: -1;
  width: 330px;
  height: 330px;
  border: 48px solid rgba(18, 61, 114, 0.04);
  border-radius: 50%;
}
.loan-settlement-content {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.loan-settlement-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  flex: 0 0 66px;
  border-radius: 20px;
  color: #ffffff;
  background: var(--gradient-primary);
  box-shadow: 0 14px 30px rgba(18, 61, 114, 0.24);
  font-size: 1.55rem;
}
.loan-settlement-content h2 {
  max-width: 760px;
  margin: 0 0 0.55rem;
  color: var(--primary-navy);
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.2;
}
.loan-settlement-content p {
  max-width: 750px;
  margin: 0;
  color: var(--secondary-text);
  font-size: 0.9rem;
  line-height: 1.7;
}
.loan-settlement-btn {
  min-width: 230px;
  flex-shrink: 0;
  border-color: var(--accent-green);
  background: var(--primary-blue);
}
.services-section {
  background: var(--white-surface);
}
.service-card {
  position: relative;
  isolation: isolate;
  height: 100%;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 26px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(18, 61, 114, 0.24), rgba(200, 146, 20, 0.2))
      border-box;
  box-shadow: 0 16px 44px rgba(6, 31, 82, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -98px;
  z-index: -1;
  width: 215px;
  height: 215px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 61, 114, 0.11), transparent 68%);
  transition: transform 0.45s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(6, 31, 82, 0.15);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover::after {
  transform: scale(1.25);
}
.service-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: var(--light-background);
  box-shadow: 0 12px 28px rgba(6, 31, 82, 0.1);
}
.service-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.4s ease;
}
.service-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 31, 82, 0.03) 35%,
    rgba(6, 31, 82, 0.38) 100%
  );
}
.service-card:hover .service-image {
  transform: scale(1.06);
}
.service-number {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #ffffff;
  background-color: rgba(6, 31, 82, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 6px 18px rgba(6, 31, 82, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}
.service-card:hover .service-number {
  color: #ffffff;
  background-color: rgba(6, 31, 82, 0.78);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(6, 31, 82, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.service-card h3 {
  margin: 1.35rem 0 0.8rem;
}
.service-card p {
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
}
.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  color: var(--primary-blue);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
}
.service-detail-hero {
  position: relative;
  isolation: isolate;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 80px;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(200, 146, 20, 0.16) 0%,
      rgba(200, 146, 20, 0.06) 18%,
      transparent 38%
    ),
    radial-gradient(
      circle at 72% 100%,
      rgba(47, 95, 150, 0.34) 0%,
      transparent 42%
    ),
    linear-gradient(
      118deg,
      #041437 0%,
      var(--primary-navy) 38%,
      #0b3268 70%,
      var(--primary-blue) 100%
    );
}
.service-detail-hero::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -130px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border: 70px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}
.service-detail-hero::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: -230px;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 146, 20, 0.09),
    transparent 68%
  );
}
.service-detail-hero .container {
  position: relative;
  z-index: 2;
}
.service-detail-hero-content {
  max-width: 900px;
}
.service-detail-hero-content .eyebrow {
  margin-bottom: 1.35rem;
  color: #fff0c7;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.service-detail-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.08;
}
.service-detail-section {
  overflow: hidden;
  background: #ffffff;
}
.service-detail-image {
  position: relative;
  padding: 0 1.5rem 1.5rem 0;
}
.service-detail-image::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 0;
  bottom: 0;
  left: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    var(--soft-green-background),
    rgba(200, 146, 20, 0.08)
  );
}
.service-detail-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}
.service-detail-copy h2 {
  margin: 0 0 1.4rem;
  color: var(--primary-navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}
.service-detail-copy p {
  margin-bottom: 1.1rem;
  color: var(--secondary-text);
  font-size: 0.94rem;
  line-height: 1.85;
}
.service-detail-copy p:last-child {
  margin-bottom: 0;
}
.service-detail-body {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  padding-top: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid var(--border-color);
}
.service-detail-body h2 {
  margin: 0 0 1.4rem;
  color: var(--primary-navy);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
}
.service-detail-body p {
  margin-bottom: 1rem;
  color: var(--secondary-text);
  font-size: 0.94rem;
  line-height: 1.85;
}
.service-detail-body p:last-child {
  margin-bottom: 0;
}
.service-detail-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(4rem, 7vw, 6rem);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 92% 15%,
      rgba(200, 146, 20, 0.18),
      transparent 30%
    ),
    linear-gradient(
      125deg,
      #041437 0%,
      var(--primary-navy) 52%,
      var(--primary-blue) 100%
    );
  box-shadow: 0 24px 60px rgba(6, 31, 82, 0.2);
}
.service-detail-cta::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: -165px;
  z-index: -1;
  width: 340px;
  height: 340px;
  border: 48px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}
.service-detail-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.service-detail-cta-copy > span {
  display: block;
  margin-bottom: 0.6rem;
  color: #e1b44a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.service-detail-cta h2 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700;
}
.service-detail-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}
.service-detail-cta .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .service-detail-hero {
    min-height: 420px;
    padding: calc(var(--header-height) + 60px) 0 60px;
  }
  .service-detail-image {
    max-width: 760px;
    margin-inline: auto;
  }
  .service-detail-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .service-detail-hero {
    min-height: 370px;
    padding: calc(var(--header-height) + 40px) 0 48px;
    background:
      radial-gradient(
        circle at 100% 10%,
        rgba(200, 146, 20, 0.13),
        transparent 35%
      ),
      linear-gradient(
        145deg,
        #041437 0%,
        var(--primary-navy) 58%,
        var(--primary-blue) 100%
      );
  }
  .service-detail-hero h1 {
    font-size: 2.2rem;
  }
  .service-detail-image {
    padding: 0 0.75rem 0.75rem 0;
  }
  .service-detail-image::before {
    top: 0.75rem;
    left: 0.75rem;
    border-radius: 21px;
  }
  .service-detail-image img {
    border-radius: 21px;
  }
  .service-detail-copy h2 {
    font-size: 1.7rem;
  }
  .service-detail-copy p,
  .service-detail-body p {
    font-size: 0.87rem;
    line-height: 1.78;
  }
  .service-detail-body {
    margin-top: 3.5rem;
    padding-top: 3rem;
  }
  .service-detail-cta {
    padding: 1.6rem;
    border-radius: 22px;
  }
  .service-detail-cta .btn {
    width: 100%;
  }
}
.credit-builder-section {
  overflow: hidden;
  background: var(--white-surface);
}
.credit-builder-image {
  position: relative;
  padding: 0 1.5rem 1.5rem 0;
}
.credit-builder-image::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 0;
  bottom: 0;
  left: 1.5rem;
  border-radius: 26px;
  background: var(--soft-green-background);
}
.credit-builder-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border-color);
  border-radius: 26px;
}
.credit-builder-copy h2 {
  margin-bottom: 1.2rem;
}
.credit-builder-copy p {
  margin-bottom: 1rem;
  font-size: 0.94rem;
  line-height: 1.8;
}
.why-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 4%, rgba(18, 61, 114, 0.08), transparent 25%),
    radial-gradient(
      circle at 3% 96%,
      rgba(200, 146, 20, 0.07),
      transparent 27%
    ),
    var(--light-background);
}
.why-section::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -150px;
  width: 430px;
  height: 430px;
  border: 68px solid rgba(18, 61, 114, 0.035);
  border-radius: 50%;
}
.why-section::after {
  content: "";
  position: absolute;
  bottom: -190px;
  left: -150px;
  width: 390px;
  height: 390px;
  border: 58px solid rgba(200, 146, 20, 0.04);
  border-radius: 50%;
}
.why-section .container {
  position: relative;
  z-index: 1;
}
.why-section .row.g-4 {
  max-width: 1120px;
  margin-inline: auto;
}
.value-card {
  position: relative;
  isolation: isolate;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.65rem;
  overflow: hidden;
  border: 1px solid rgba(18, 61, 114, 0.12);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    rgba(250, 248, 243, 0.96) 100%
  );
  box-shadow:
    0 15px 38px rgba(6, 31, 82, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.5rem;
  left: 1.5rem;
  z-index: -1;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  transition:
    right 0.32s ease,
    left 0.32s ease;
}
.value-card::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -95px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 61, 114, 0.1), transparent 68%);
  transition: transform 0.4s ease;
}
.value-card:hover {
  border-color: rgba(18, 61, 114, 0.24);
  transform: translateY(-7px);
  box-shadow:
    0 25px 55px rgba(6, 31, 82, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.value-card:hover::before {
  right: 0;
  left: 0;
}
.value-card:hover::after {
  transform: scale(1.2);
}
.value-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  margin-bottom: 1.25rem;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
  box-shadow: 0 13px 28px rgba(18, 61, 114, 0.22);
  font-size: 1.35rem;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}
.why-section .row.g-4 > div:nth-child(even) .value-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
}
.value-card:hover .value-icon {
  transform: translateY(-4px) rotate(-5deg) scale(1.04);
  box-shadow: 0 18px 36px rgba(18, 61, 114, 0.28);
}
.value-card h3 {
  margin: 0 0 0.65rem;
  color: var(--primary-navy);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}
.value-card p {
  margin: 0;
  color: var(--secondary-text);
  font-size: 0.84rem;
  line-height: 1.72;
}
@media (max-width: 991.98px) {
  .hero-content-wrap {
    top: 5%;
  }
  .loan-settlement-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .loan-settlement-btn {
    min-width: auto;
  }
  .credit-builder-image {
    max-width: 720px;
    margin-inline: auto;
  }
  .why-section .row.g-4 {
    max-width: 720px;
  }
}
@media (max-width: 575.98px) {
  .loan-settlement-strip {
    padding: 1.5rem 0;
  }
  .loan-settlement-banner {
    min-height: auto;
    gap: 1.4rem;
    padding: 1.5rem;
    border-radius: 21px;
  }
  .loan-settlement-content {
    align-items: flex-start;
    flex-direction: column;
  }
  .loan-settlement-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 17px;
    font-size: 1.3rem;
  }
  .loan-settlement-content h2 {
    font-size: 1.45rem;
  }
  .loan-settlement-btn {
    width: 100%;
  }
  .credit-builder-image {
    padding: 0 0.75rem 0.75rem 0;
  }
  .credit-builder-image::before {
    top: 0.75rem;
    left: 0.75rem;
    border-radius: 20px;
  }
  .credit-builder-image img {
    border-radius: 20px;
  }
  .credit-builder-copy p {
    font-size: 0.86rem;
    line-height: 1.72;
  }
  .credit-builder-copy .btn {
    width: 100%;
  }
  .why-section .row.g-4 {
    --bs-gutter-y: 1rem;
  }
  .value-card {
    width: 100%;
    padding: 1.35rem;
    border-radius: 19px;
  }
  .value-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    margin-bottom: 1rem;
    border-radius: 16px;
    font-size: 1.2rem;
  }
  .value-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  .value-card p {
    font-size: 0.8rem;
  }
}
.stats-section {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(4.5rem, 7vw, 6.5rem);
  background: var(--light-background);
}
.stats-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: 1180px;
  margin-inline: auto;
}
.stat-item {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.65rem, 3vw, 2.2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  text-align: left;
  background:
    radial-gradient(circle at 100% 0, rgba(200, 146, 20, 0.2), transparent 42%),
    linear-gradient(145deg, #041437, var(--primary-navy));
  box-shadow:
    0 20px 48px rgba(6, 31, 82, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.stat-item:nth-child(2) {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(200, 146, 20, 0.18),
      transparent 42%
    ),
    linear-gradient(145deg, var(--primary-navy), var(--primary-blue));
}
.stat-item:nth-child(3) {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(255, 255, 255, 0.1),
      transparent 42%
    ),
    linear-gradient(145deg, var(--primary-blue), var(--dark-green));
}
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.5rem;
  left: 1.5rem;
  z-index: -1;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--secondary-blue), #e1b44a);
  transition:
    right 0.35s ease,
    left 0.35s ease;
}
.stat-item::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -90px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(255, 255, 255, 0.025),
    0 0 0 56px rgba(255, 255, 255, 0.018);
  transition: transform 0.45s ease;
}
.stat-item:hover {
  border-color: rgba(225, 180, 74, 0.32);
  transform: translateY(-8px);
  box-shadow:
    0 30px 65px rgba(6, 31, 82, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.stat-item:hover::before {
  right: 0;
  left: 0;
}
.stat-item:hover::after {
  transform: scale(1.15);
}
.stat-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0.7rem;
  color: #ffffff;
  font-size: clamp(2.65rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
}
.stat-item > span {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .stats-panel {
    gap: 0.9rem;
  }
  .stat-item {
    min-height: 170px;
    padding: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .stats-section {
    padding-bottom: 4.25rem;
  }
  .stats-panel {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
  .stat-item {
    min-height: 150px;
    align-items: center;
    padding: 1.65rem;
    text-align: center;
    border-radius: 20px;
  }
  .stat-number {
    font-size: clamp(2.6rem, 12vw, 3.5rem);
  }
}
@media (max-width: 359.98px) {
  .stat-item {
    min-height: 140px;
    padding: 1.4rem 1rem;
  }
}
.process-flow-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 10%, rgba(18, 61, 114, 0.07), transparent 24%),
    linear-gradient(180deg, var(--light-background) 0%, #ffffff 100%);
}
.process-flow-section .container {
  position: relative;
  z-index: 1;
}
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.process-flow::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(18, 61, 114, 0.22),
    var(--primary-blue),
    var(--accent-green),
    rgba(200, 146, 20, 0.22)
  );
}
.process-flow-item {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-inline: 0.45rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.process-flow-item:hover {
  transform: translateY(-7px);
}
.process-flow-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.35rem;
  border: 6px solid var(--light-background);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
  box-shadow:
    0 12px 28px rgba(6, 31, 82, 0.2),
    0 0 0 1px rgba(18, 61, 114, 0.08);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.process-flow-item:nth-child(even) .process-flow-number {
  background: linear-gradient(135deg, var(--dark-green), var(--accent-green));
}
.process-flow-item:hover .process-flow-number {
  transform: scale(1.08);
  box-shadow:
    0 18px 36px rgba(6, 31, 82, 0.25),
    0 0 0 1px rgba(18, 61, 114, 0.1);
}
.process-flow-content h3 {
  min-height: 2.8em;
  margin: 0 0 0.7rem;
  color: var(--primary-navy);
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.process-flow-content p {
  margin: 0;
  color: var(--secondary-text);
  font-size: clamp(0.7rem, 0.9vw, 0.78rem);
  line-height: 1.65;
}
.process-disclaimer {
  width: fit-content;
  max-width: 850px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2.8rem auto 0;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(18, 61, 114, 0.12);
  border-radius: 14px;
  color: var(--primary-blue);
  background: rgba(18, 61, 114, 0.055);
}
.process-disclaimer i {
  margin-top: 0.12rem;
  flex: 0 0 auto;
}
.process-disclaimer p {
  margin: 0;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .process-flow::before {
    display: none;
  }
  .process-flow-item {
    padding: 1.4rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(6, 31, 82, 0.06);
  }
  .process-flow-content h3 {
    min-height: auto;
  }
}
@media (max-width: 767.98px) {
  .process-flow {
    grid-template-columns: 1fr;
  }
  .process-flow-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 1rem;
    align-items: start;
    padding: 1.2rem;
    text-align: left;
  }
  .process-flow-number {
    width: 54px;
    height: 54px;
    margin: 0;
    border-width: 4px;
  }
  .process-flow-content h3 {
    margin-top: 0.1rem;
  }
}
.contact-location-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 15%, rgba(18, 61, 114, 0.06), transparent 26%),
    radial-gradient(
      circle at 95% 90%,
      rgba(200, 146, 20, 0.06),
      transparent 28%
    ),
    var(--light-background);
}
.contact-location-section .section-heading {
  max-width: 720px;
}
.contact-info-card {
  position: relative;
  height: 100%;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  overflow: hidden;
  border: 1px solid rgba(18, 61, 114, 0.12);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(6, 31, 82, 0.1);
}
.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.8rem;
  left: 1.8rem;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
}
.contact-small-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent-green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-info-card h3 {
  max-width: 430px;
  margin-bottom: 1rem;
  color: var(--primary-navy);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
}
.contact-intro {
  margin-bottom: 1.8rem;
  color: var(--secondary-text);
  font-size: 0.9rem;
  line-height: 1.8;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-info-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--light-background);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
a.contact-info-item:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 61, 114, 0.25);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 31, 82, 0.08);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
  box-shadow: 0 10px 22px rgba(18, 61, 114, 0.2);
  font-size: 1.1rem;
}
.contact-info-content {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.contact-info-content small {
  margin-bottom: 0.15rem;
  color: var(--secondary-text);
  font-size: 0.7rem;
  font-weight: 600;
}
.contact-info-content strong {
  color: var(--primary-navy);
  font-size: 0.87rem;
  font-weight: 700;
  word-break: break-word;
}
.contact-arrow {
  flex-shrink: 0;
  color: var(--primary-blue);
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}
a.contact-info-item:hover .contact-arrow {
  transform: translate(3px, -3px);
}
.contact-map {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(18, 61, 114, 0.12);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(6, 31, 82, 0.1);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}
@media (max-width: 991.98px) {
  .contact-map,
  .contact-map iframe {
    min-height: 430px;
  }
}
@media (max-width: 575.98px) {
  .contact-info-card {
    padding: 1.4rem;
    border-radius: 21px;
  }
  .contact-info-item {
    padding: 0.9rem;
    border-radius: 14px;
  }
  .contact-info-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
  }
  .contact-info-content strong {
    font-size: 0.8rem;
  }
  .contact-info-card .btn {
    width: 100%;
  }
  .contact-map {
    min-height: 340px;
    border-radius: 21px;
  }
  .contact-map iframe {
    min-height: 340px;
  }
}
.about-section {
  background: #fff;
}
.about-visual {
  position: relative;
  padding: 0 2rem 2rem 0;
}
.about-visual::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: 0;
  bottom: 0;
  left: 2rem;
  border-radius: 28px;
  background: var(--soft-green-background);
}
.about-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}
.about-float-card {
  position: absolute;
  right: -0.75rem;
  bottom: 3.7rem;
  z-index: 2;
  width: min(310px, 80%);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(234, 223, 200, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}
.about-float-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 14px;
  color: #fff;
  background: var(--gradient-primary);
}
.about-float-card div {
  display: flex;
  flex-direction: column;
}
.about-float-card strong {
  color: var(--primary-navy);
  font-size: 0.87rem;
}
.about-float-card small {
  color: var(--secondary-text);
  font-size: 0.72rem;
}
.about-copy > p {
  font-size: 0.94rem;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.about-points > div {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  padding: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--light-background);
}
.about-points i {
  margin-top: 0.08rem;
  color: var(--accent-green);
}
.about-points span {
  display: flex;
  flex-direction: column;
}
.about-points strong {
  color: var(--primary-navy);
  font-size: 0.8rem;
}
.about-points small {
  margin-top: 0.15rem;
  color: var(--secondary-text);
  font-size: 0.7rem;
}
.testimonials-section {
  overflow: hidden;
  background: var(--light-background);
}
.testimonial-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: var(--primary-navy);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(6, 31, 82, 0.07);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.testimonial-nav-btn:hover,
.testimonial-nav-btn:focus {
  color: #ffffff;
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  transform: translateY(-3px);
}
.testimonial-carousel .owl-stage {
  display: flex;
}
.testimonial-carousel .owl-item {
  display: flex;
}
.testimonial-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 200, 0.95);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(6, 31, 82, 0.08);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.75rem;
  left: 1.75rem;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: var(--gradient-primary);
}
.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 55px rgba(6, 31, 82, 0.14);
}
.testimonial-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.5rem 0 1.4rem;
}
.testimonial-rating-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  border: 1px solid rgba(18, 61, 114, 0.12);
  border-radius: 18px;
  color: var(--primary-blue);
  background: linear-gradient(145deg, #ffffff, rgba(18, 61, 114, 0.08));
  box-shadow:
    0 13px 28px rgba(6, 31, 82, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 1.65rem;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}
.testimonial-rating-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: 13px;
  background: rgba(18, 61, 114, 0.04);
}
.testimonial-card:hover .testimonial-rating-icon {
  color: #ffffff;
  background: var(--primary-blue);
  transform: translateY(-4px) rotate(-7deg) scale(1.04);
}
.testimonial-service {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  color: var(--primary-blue);
  background: rgba(18, 61, 114, 0.07);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}
.testimonial-copy {
  flex: 1;
  margin: 0 0 1.5rem;
  color: #475467;
  font-size: 0.9rem;
}
.testimonial-author {
  display: block;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-color);
}
.testimonial-author strong {
  display: block;
  color: var(--primary-navy);
  font-size: 0.86rem;
}
.testimonial-author small {
  display: block;
  margin-top: 0.2rem;
  color: var(--secondary-text);
  font-size: 0.72rem;
}
.faq-section {
  background: #fff;
}
.sticky-heading {
  position: static;
  top: auto;
}
.faq-section .section-heading {
  max-width: 820px;
}
.premium-accordion {
  max-width: 960px;
  margin-inline: auto;
}
.premium-accordion .accordion-item {
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  background: #fff;
}
.premium-accordion .accordion-button {
  padding: 1.2rem 1.25rem;
  color: var(--primary-navy);
  background: #fff;
  box-shadow: none;
  font-size: 0.94rem;
  font-weight: 700;
}
.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-blue);
  background: var(--light-background);
}
.premium-accordion .accordion-button::after {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--soft-green-background);
  background-position: center;
  background-size: 0.78rem;
}
.premium-accordion .accordion-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--secondary-text);
  font-size: 0.88rem;
}
.contact-cta-section {
  padding: 0 0 clamp(4.5rem, 8vw, 7.5rem);
  background: #fff;
}
.contact-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.6rem);
  border-radius: 26px;
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: 0 28px 70px rgba(6, 31, 82, 0.2);
}
.contact-cta h2 {
  max-width: 800px;
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}
.contact-cta p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}
.contact-cta-pattern {
  position: absolute;
  top: -120px;
  right: -70px;
  width: 380px;
  height: 380px;
  border: 58px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.site-footer {
  padding: 4.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  background: #04132f;
}
.footer-brand .brand-mark {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
  border-color: rgba(225, 180, 74, 0.38);
  background: #ffffff;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 0 4px rgba(225, 180, 74, 0.08);
}
.footer-main {
  padding-bottom: 3.5rem;
}
.footer-about {
  max-width: 430px;
  margin: 1.35rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
}
.footer-contact {
  display: grid;
  gap: 0.7rem;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 500;
}
.footer-contact i {
  color: #e1b44a;
}
.site-footer h3 {
  margin-bottom: 1.15rem;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0;
}
.site-footer ul {
  display: grid;
  gap: 0.68rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li,
.site-footer li a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 500;
}
.site-footer li a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.site-footer li a:hover {
  display: inline-block;
  color: #fff;
  transform: translateX(3px);
}
.footer-note {
  display: flex;
  gap: 0.58rem;
  margin-top: 1.4rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
}
.footer-note i {
  color: #e1b44a;
}
.footer-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  line-height: 1.55;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.8rem;
}
.floating-actions {
  position: fixed;
  z-index: 1030;
}
.floating-left {
  bottom: 20px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.floating-btn {
  position: relative;
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #ffffff;
  white-space: nowrap;
  box-shadow:
    0 14px 32px rgba(6, 31, 82, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    width 0.35s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.floating-btn::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  pointer-events: none;
}
.floating-btn i {
  position: relative;
  z-index: 1;
  width: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  font-size: 1.3rem;
  transition: transform 0.28s ease;
}
.floating-btn span {
  position: relative;
  z-index: 1;
  padding-right: 1.15rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}
.floating-btn:hover,
.floating-btn:focus-visible {
  width: 164px;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow:
    0 19px 42px rgba(6, 31, 82, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.floating-btn:hover i,
.floating-btn:focus-visible i {
  transform: scale(1.08);
}
.floating-btn:hover span,
.floating-btn:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-btn {
  background: linear-gradient(135deg, #128c7e, #25d366);
}
.call-btn {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 1030;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  background: var(--primary-navy);
  box-shadow: 0 12px 30px rgba(6, 31, 82, 0.24);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
}
.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-blue);
}
.inquiry-modal {
  --bs-modal-zindex: 1060;
}
.inquiry-modal .modal-dialog {
  width: calc(100% - 2rem);
  max-width: 760px;
}
.inquiry-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(6, 31, 82, 0.28);
}
.inquiry-modal .modal-header {
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--light-background);
}
.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  color: var(--dark-green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.inquiry-modal .modal-title {
  margin: 0;
  color: var(--primary-navy);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
}
.inquiry-modal .modal-body {
  max-height: calc(100dvh - 150px);
  padding: 1.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) #f3ecdf;
  background: #fff;
}
.inquiry-modal .modal-body::-webkit-scrollbar {
  width: 10px;
}
.inquiry-modal .modal-body::-webkit-scrollbar-track {
  margin-block: 8px;
  border-radius: 999px;
  background: #f3ecdf;
}
.inquiry-modal .modal-body::-webkit-scrollbar-thumb {
  min-height: 70px;
  border: 2px solid #f3ecdf;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-green));
}
.inquiry-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--primary-navy);
}
.inquiry-form {
  margin-top: 0;
}
.form-label {
  margin-bottom: 0.45rem;
  color: #344054;
  font-size: 0.79rem;
  font-weight: 600;
}
.form-label span {
  color: #c83f49;
}
.form-control,
.form-select,
.input-group-text {
  min-height: 48px;
  border-color: var(--border-color);
  border-radius: 10px;
  color: var(--main-text);
  background-color: #fff;
  font-size: 0.86rem;
}
.form-control,
.form-select {
  padding: 0.72rem 0.9rem;
}
.form-control::placeholder {
  color: #98a2b3;
}
.form-control:focus,
.form-select:focus {
  border-color: rgba(18, 61, 114, 0.58);
  box-shadow: 0 0 0 0.22rem rgba(18, 61, 114, 0.1);
}
.input-group .input-group-text {
  border-radius: 10px 0 0 10px;
  color: var(--primary-navy);
  background: var(--light-background);
  font-weight: 700;
}
.input-group .form-control {
  border-radius: 0 10px 10px 0;
}
textarea.form-control {
  min-height: 128px;
  resize: vertical;
}
.form-text {
  color: var(--secondary-text);
  font-size: 0.68rem;
}
.invalid-feedback {
  font-size: 0.7rem;
}
.submit-btn {
  min-width: 175px;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}
@media (min-width: 992px) {
  .navbar .dropdown {
    position: relative;
  }
  .navbar .dropdown > .dropdown-menu {
    display: block;
    top: 100%;
    left: 0;
    margin-top: 0 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }
  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu,
  .navbar .dropdown > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .navbar .dropdown:hover > .dropdown-toggle::after,
  .navbar .dropdown:focus-within > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
@media (max-width: 1199.98px) {
  :root {
    --header-height: 88px;
  }
  .site-header .navbar > .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .site-header .brand-mark {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }
  .site-header.is-scrolled .brand-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
  .navbar-nav .nav-link {
    padding-inline: 0.55rem !important;
    font-size: 0.83rem;
  }
}
@media (max-width: 991.98px) {
  :root {
    --header-height: 82px;
  }
  .site-header.is-scrolled {
    height: 70px;
  }
  .site-header .navbar > .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .site-header.is-scrolled .navbar > .container {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .site-header .brand-mark {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
  .site-header.is-scrolled .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
  .hero-section {
    height: 760px;
    min-height: 760px;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(4, 20, 55, 0.93) 0%,
      rgba(4, 20, 55, 0.75) 65%,
      rgba(4, 20, 55, 0.55) 100%
    );
  }
  .hero-content {
    width: min(700px, 88%);
  }
  .sticky-heading {
    position: static;
  }
  .about-visual {
    max-width: 690px;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  :root {
    --header-height: 76px;
  }
  .site-header.is-scrolled {
    height: 64px;
  }
  .site-header .navbar > .container {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .site-header.is-scrolled .navbar > .container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .site-header .brand-mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .site-header.is-scrolled .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .mobile-offcanvas .brand-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
  .hero-section {
    height: 740px;
    min-height: 740px;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(4, 20, 55, 0.78) 0%,
      rgba(4, 20, 55, 0.92) 70%,
      rgba(4, 20, 55, 0.96) 100%
    );
  }
  .hero-image {
    object-position: 64% center;
  }
  .hero-content {
    width: 100%;
    padding: 2.5rem 0;
  }
  .hero-content p {
    font-size: 0.98rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-assurance {
    gap: 0.6rem 1rem;
    margin-top: 1.45rem;
    font-size: 0.7rem;
  }
  .about-points {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .testimonial-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }
  .testimonial-controls {
    align-self: flex-start;
  }
  .floating-btn,
  .floating-btn:hover,
  .floating-btn:focus-visible {
    width: 52px;
    min-width: 52px;
    height: 52px;
    transform: none;
  }
  .floating-btn i {
    width: 48px;
    flex-basis: 48px;
    font-size: 1.2rem;
  }
  .floating-btn span {
    display: none;
  }
  .inquiry-modal .modal-dialog {
    max-width: calc(100% - 1rem);
    margin: 0.5rem auto;
  }
  .inquiry-modal .modal-header,
  .inquiry-modal .modal-body {
    padding: 1rem;
  }
  .inquiry-modal .modal-body {
    max-height: calc(100dvh - 110px);
  }
}
@media (max-width: 575.98px) {
  .hero-section {
    height: 720px;
    min-height: 720px;
  }
  .section-padding {
    padding-block: 4.25rem;
  }
  .eyebrow {
    font-size: 0.65rem;
  }
  .hero-assurance span:nth-child(3) {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
  .trust-item span {
    white-space: normal;
  }
  .about-visual {
    padding: 0 0.75rem 1.6rem 0;
  }
  .about-visual::before {
    top: 1.2rem;
    left: 1.2rem;
  }
  .about-float-card {
    right: 0;
    bottom: 2.5rem;
    width: 86%;
  }
  .contact-cta {
    border-radius: 20px;
  }
  .site-footer {
    padding-top: 4rem;
  }
  .footer-brand .brand-mark {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
  .footer-main {
    padding-bottom: 2.6rem;
  }
  .floating-left {
    bottom: 14px;
    left: 12px;
  }
  .back-to-top {
    right: 12px;
    bottom: 14px;
  }
}
@media (max-width: 359.98px) {
  .hero-section {
    height: 700px;
    min-height: 700px;
  }
  .hero-assurance span:nth-child(2) {
    display: none;
  }
  .service-card,
  .testimonial-card {
    padding: 1.3rem;
  }
  .about-float-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 1.3rem);
    margin: -2rem auto 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
.process-flow-section .service-card {
  position: relative;
  height: 100%;
  padding: 1rem 1rem 1.65rem;
  overflow: hidden;
  border: 1px solid rgba(18, 61, 114, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(200, 146, 20, 0.08),
      transparent 35%
    ),
    #ffffff;
  box-shadow: 0 14px 38px rgba(6, 31, 82, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.process-flow-section .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 4px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  transition:
    left 0.35s ease,
    right 0.35s ease;
}
.process-flow-section .service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 146, 20, 0.3);
  box-shadow: 0 25px 60px rgba(6, 31, 82, 0.15);
}
.process-flow-section .service-card:hover::before {
  left: 0;
  right: 0;
}
.process-flow-section .service-image-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.35rem;
  border-radius: 19px;
  box-shadow: 0 10px 25px rgba(6, 31, 82, 0.12);
}
.process-flow-section .service-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.process-flow-section .service-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(6, 31, 82, 0.28) 100%
  );
}
.process-flow-section .service-card:hover .service-image {
  transform: scale(1.07);
}
.process-flow-section .service-card h3 {
  position: relative;
  margin: 0 0 0.85rem;
  padding-left: 15px;
  color: var(--primary-navy);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}
.process-flow-section .service-card h3::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 4px;
  border-radius: 20px;
  background: var(--accent-green);
}
.process-flow-section .service-card p {
  margin: 0;
  padding: 0 0.3rem;
  color: var(--secondary-text);
  font-size: 0.88rem;
  line-height: 1.75;
}
@media (max-width: 991.98px) {
  .process-flow-section .service-card {
    border-radius: 21px;
  }
}
@media (max-width: 575.98px) {
  .process-flow-section .service-card {
    padding: 0.85rem 0.85rem 1.4rem;
    border-radius: 19px;
  }
  .process-flow-section .service-image-wrap {
    margin-bottom: 1.15rem;
    border-radius: 16px;
  }
  .process-flow-section .service-card:hover {
    transform: translateY(-5px);
  }
  .process-flow-section .service-card h3 {
    font-size: 1.05rem;
  }
  .process-flow-section .service-card p {
    font-size: 0.84rem;
  }
}
