
:root {
  --cream: #fef5ee;
  --cream-2: #ffeee4;
  --peach: #f5dfce;
  --primary: #541900;
  --primary-2: #61371c;
  --primary-3: #834924;
  --text-dark: #2d3327;
  --text-heading: #333333;
  --text-muted: #757575;
  --text-soft: #4a4d45;
  --white: #ffffff;

  --font-head: "Montserrat", sans-serif;
  --font-alt: "Montserrat Alternates", sans-serif;
  --font-body: "Poppins", sans-serif;

  --radius-lg: 40px;
  --radius-md: 24px;
  --radius-sm: 12px;
  --shadow-card: 0 0 10px 1px rgba(84, 25, 0, 0.1);
  --shadow-soft: 0 4px 21px 1px rgba(48, 123, 196, 0.1);
  --container-max: 1720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  margin: 0;
  padding-right: 0px !important;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container-xl {
  max-width: var(--container-max);
  padding-left: 24px;
  padding-right: 24px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-align: center;
}

.btn-pill-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-pill-primary:hover {
  background: #3e1200;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-pill-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}
.btn-pill-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-pill-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-pill-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-pill-light {
  background: var(--cream);
  color: var(--primary);
  border-color: var(--cream);
}
.btn-pill-light:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 18px 0;
  transition:
    background 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}
.navbar-custom.scrolled {
  background: var(--primary);
  padding: 10px 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.navbar-logo img {
  height: 58px;
  width: auto;
  transition: height 0.3s ease;
}
.navbar-custom.scrolled .navbar-logo img {
  height: 44px;
}
.nav-links {
  list-style: none;
  padding: 0;
}
.nav-links a {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--cream);
  transition: width 0.25s ease;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a:hover::after {
  width: 100%;
}
.navbar-toggler-custom {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.offcanvas-custom {
  background: var(--primary);
  color: var(--white);
  width: 300px;
}
.offcanvas-custom .offcanvas-header {
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-close-custom {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-content-custom .btn-close-custom {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}
.modal-content-custom .btn-close-custom:hover {
  background: rgba(0, 0, 0, 0.1);
}
.offcanvas-nav {
  margin: 18px 0 0;
}
.offcanvas-nav li a {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.offcanvas-nav li a:hover {
  color: var(--peach);
  padding-left: 10px;
  transition: 0.2s;
}
.offcanvas-body {
  padding: 22px;
}

.hero {
  padding: 0 0 30px;
}
.hero-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 25px;
}
.hero-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 25px;
  min-height: 840px;
  display: flex;
  flex-direction: column;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(97, 55, 28, 0.8) 0%, rgba(97, 55, 28, 0) 26%),
    linear-gradient(rgba(97, 55, 28, 0.2), rgba(97, 55, 28, 0.2));
  pointer-events: none;
}
.hero-topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px 0;
}
.hero-logo img {
  height: 96px;
  width: auto;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 44px 48px 188px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--white);
  color: #010101;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero-badge i {
  color: var(--primary);
}
.hero-title {
  color: var(--white);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.12;
  margin: 0 0 20px;
}
.hero-title .hl {
  color: var(--cream);
  font-weight: 600;
}
.hero-title .hl-white {
  color: var(--white);
  font-weight: 600;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 22px;
}
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 24px;
}
.usp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 1000px;
}
.usp-pill strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
}
.hero-divider {
  border-color: rgba(255, 255, 255, 0.35);
  max-width: 640px;
  margin: 6px 0 18px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  flex-wrap: wrap;
}
.hero-rating .stars {
  color: #ffc107;
  font-size: 16px;
}
.hero-rating strong {
  font-size: 18px;
}

.consult-card {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
.consult-card-head h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.consult-card-head p {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}
.consult-card hr {
  border-color: rgba(84, 25, 0, 0.15);
  margin: 18px 0;
}
.consult-form .form-label {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: capitalize;
  font-size: 12px;
  color: #424242;
  margin-bottom: 6px;
}
.consult-form .form-control,
.consult-form .form-select,
.modal-form .form-control,
.modal-form .form-select {
  background: var(--cream);
  border: 1px solid rgba(84, 25, 0, 0.25);
  border-radius: var(--radius-sm);
  height: 50px;
  font-size: 14px;
  color: var(--text-dark);
}
.consult-form .form-control:focus,
.consult-form .form-select:focus,
.modal-form .form-control:focus,
.modal-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(84, 25, 0, 0.12);
}
.consult-note {
  font-size: 12px;
  color: var(--text-soft);
  margin: 12px 0 0;
  text-align: center;
}
.consult-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.consult-checks li {
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.consult-checks i {
  color: var(--primary);
  margin-top: 2px;
}

.hero-strip {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 30px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.hero-strip-item {
  padding: 18px 28px;
  text-align: center;
  position: relative;
}
.hero-strip-item + .hero-strip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  height: 72%;
  width: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.55);
}
.hero-strip-item h3 {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 12px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.hero-strip-item p {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0;
  line-height: 22px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.section {
  padding: 96px 0;
}
.section.pt-0 {
  padding-top: 0;
}
.section-cream {
  background: var(--cream);
}
.section-cream-2 {
  background: var(--cream-2);
}
.section-dark {
  background: var(--primary);
  position: relative;
}

.section-head {
  margin-bottom: 48px;
}
.section-head.text-center {
  text-align: center;
}
.section-head--split {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-head--split > div {
  flex: 1 1 420px;
}
.section-head--split .section-lead {
  flex: 1 1 420px;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: clamp(15px, 1.25vw, 18px);
  color: #000;
  margin-bottom: 10px;
}
.eyebrow--primary {
  color: var(--primary);
}
.eyebrow--light {
  color: var(--white);
}
.eyebrow.justify-content-center {
  justify-content: center;
}
.eyebrow-line {
  width: 26px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow-line--light {
  background: var(--white);
}

.section-title {
  font-weight: 700;
  color: var(--text-heading);
  font-size: clamp(26px, 3.4vw, 45px);
  line-height: 1.25;
  margin: 0;
}
.section-title.text-white {
  color: var(--white);
}
.section-lead {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 820px;
}
.text-white-75 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.concerns-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.concerns-section .container-xl {
  position: relative;
  z-index: 1;
}

.concern-wm {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.concern-wm img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.concern-wm--1 {
  width: 760px;
  height: 742px;
  right: -110px;
  bottom: -90px;
  opacity: 0.05;
}
.concern-wm--2 {
  width: 410px;
  height: 400px;
  left: 130px;
  top: 180px;
  opacity: 0.03;
}

.concerns-head {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}
.concerns-head-left {
  flex: 1 1 50%;
}
.concerns-head-left .section-title {
  margin-top: 8px;
}
.concerns-head-text {
  flex: 1 1 50%;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-muted);
  margin: 0;
}

.concern-card {
  background: var(--cream);
  border-radius: 32px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.concern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(84, 25, 0, 0.16);
}

.concern-chip {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  background: rgba(97, 55, 28, 0.05);
  border: 1.6px solid var(--primary-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.concern-chip img {
  width: auto;
  height: 48px;
  max-width: 52px;
  object-fit: contain;
}

.concern-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #424242;
  margin: 0 0 16px;
}
.concern-bar {
  flex: 0 0 auto;
  width: 3px;
  height: 28px;
  background: var(--primary-2);
  border-radius: 2px;
  margin-top: 1px;
}
.concern-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.16px;
  color: #424242;
  margin: 0;
}
.concerns-swiper {
  overflow: hidden;
}
.concerns-swiper .swiper-slide {
  height: auto;
}
.concerns-swiper .swiper-slide .concern-card {
  height: 100%;
}

.concerns-pagination {
  position: static;
  margin-top: 28px;
  text-align: center;
}
.concerns-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--primary);
  opacity: 0.3;
  transition:
    opacity 0.2s,
    width 0.2s;
}
.concerns-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 6px;
}

.eyebrow--cap {
  text-transform: capitalize;
}

.journey-head {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 56px;
}
.journey-head-left {
  flex: 1 1 50%;
}
.journey-title {
  text-transform: capitalize;
  margin-top: 8px;
}
.journey-head-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}
.journey-head-right p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-muted);
  margin: 0;
  text-align: left;
  align-self: stretch;
}

.journey-track {
  position: relative;
}
.journey-line {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 90px;
  height: 0;
  border-top: 1.5px dashed rgba(97, 55, 28, 0.4);
  z-index: 0;
}
.journey-line::before,
.journey-line::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-2);
}
.journey-line::before {
  left: -4px;
}
.journey-line::after {
  right: -4px;
}

.journey-cols {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.journey-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-badge {
  position: relative;
  width: 181px;
  height: 181px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.35px solid var(--primary-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-fill {
  width: 173px;
  height: 173px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.step-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52%;
  height: auto;
}
.step-numbadge {
  position: absolute;
  top: 0;
  right: -6px;
  width: 55px;
  height: 55px;
}
.step-numbadge img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}
.step-numbadge b {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 28px;
}

.step-card {
  background: var(--cream-2);
  border-radius: 25px;
  box-shadow: 0 4px 21px 1px rgba(48, 123, 196, 0.1);
  padding: 32px 36px;
  text-align: center;
  margin-top: 34px;
  width: 100%;
}
.step-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 24px;
  color: var(--text-heading);
  margin: 0 0 14px;
  text-transform: capitalize;
}
.step-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: rgba(39, 71, 96, 0.52);
  margin: 0;
  text-transform: capitalize;
}

.ba-stage {
  position: relative;
  margin-top: 48px;
}
.ba-swiper {
  overflow: hidden;
  padding: 4px;
}

.ba-swiper .swiper-slide {
  transition: opacity 0.4s ease;
}
.ba-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.5;
}
.ba-swiper .swiper-slide:not(.swiper-slide-active) .ba-divider,
.ba-swiper .swiper-slide:not(.swiper-slide-active) .ba-pill {
  pointer-events: none;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 489px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(84, 25, 0, 0.16);
  user-select: none;
  touch-action: pan-y;
}

.ba-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(84, 25, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(84, 25, 0, 0.18);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.ba-nav:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
}
.ba-nav--prev {
  left: -10px;
}
.ba-nav--next {
  right: -10px;
}
.ba-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.ba-clip {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.ba-pill {
  position: absolute;
  top: 24px;
  z-index: 3;
  background: rgba(84, 25, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  padding: 9px 26px;
  border-radius: 110px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-size: 18px;
}
.ba-pill--before {
  left: 16px;
}
.ba-pill--after {
  right: 16px;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  z-index: 4;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary, #541900);
  border: 2px solid var(--white);
  color: var(--white);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(84, 25, 0, 0.35);
  transition: transform 0.15s ease;
}
.ba-handle:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.ba-handle:active {
  cursor: grabbing;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.85);
}

.section-tech {
  position: relative;
  background: var(--white);
  padding-bottom: 96px;
}
.tech-band {
  background: var(--primary);
  padding: 96px 0 240px;
}
.tech-band-head {
  max-width: 830px;
}
.tech-title {
  text-transform: capitalize;
  margin-top: 8px;
}

.tech-swiper {
  position: relative;
  z-index: 2;
  margin-top: -210px;
}
.tech-swiper .swiper-slide {
  height: auto;
}
.tech-swiper .swiper-slide .tech-card {
  height: 100%;
}

.tech-pagination {
  position: static;
  margin-top: 28px;
  text-align: center;
}
.tech-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--primary);
  opacity: 0.3;
  transition:
    opacity 0.2s,
    width 0.2s;
}
.tech-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 6px;
}
.tech-card {
  background: var(--cream);
  border: 1.7px solid var(--cream);
  border-radius: 27px;
  box-shadow: var(--shadow-card);
  padding: 36px 40px;
  min-height: 331px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(84, 25, 0, 0.16);
}
.tech-num {
  position: absolute;
  top: 12px;
  right: 40px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 101px;
  line-height: 1;
  color: rgba(84, 25, 0, 0.05);
  letter-spacing: 0.45px;
  pointer-events: none;
  user-select: none;
}
.tech-chip {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: rgba(245, 223, 206, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.tech-chip img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}
.tech-card h3 {
  font-size: 24px;
  font-weight: 500;
  color: #101828;
  letter-spacing: -0.75px;
  margin: 0 0 14px;
}
.tech-card p {
  font-size: 18px;
  line-height: 24px;
  color: #6a7282;
  letter-spacing: -0.26px;
  margin: 0;
}

.measure-section {
  position: relative;
  background: var(--cream-2);
  overflow: hidden;
}

.measure-leaf {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 360px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
}
.measure-leaf img {
  width: 100%;
  height: auto;
}

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

.measure-head {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
}
.measure-head-left {
  flex: 1 1 480px;
  max-width: 830px;
}
.measure-title {
  margin-top: 8px;
}
.measure-head-right {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.measure-book {
  align-self: flex-end;
}
.measure-head-right .section-lead {
  margin: 0;
}

.device-swiper {
  padding-top: 140px;
}
.device-swiper .swiper-slide {
  height: auto;
  overflow: visible;
}
.device-swiper .swiper-slide .device-card {
  height: 228px;
}

.device-pagination {
  position: static;
  margin-top: 40px;
  text-align: center;
}
.device-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--primary);
  opacity: 0.3;
  transition:
    opacity 0.2s,
    width 0.2s;
}
.device-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 6px;
}
.device-card {
  position: relative;
  background: rgba(97, 55, 28, 0.05);
  border-radius: 32px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  height: 228px;
  overflow: visible;
}
.device-card h3 {
  position: absolute;
  left: 24px;
  top: 92px;
  width: 185px;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #424242;
  margin: 0;
  z-index: 2;
}
.device-card img {
  position: absolute;
  left: 35.44%;
  bottom: -15px;
  width: 81.77%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.testimonial-section {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.custom-container {
  width: 95%;
  margin: auto 0 auto auto;
}

.testi-panel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 46%;
  height: 100%;
  background: var(--primary);
  z-index: 0;
}
.testi-leaf {
  position: absolute;
  left: -90px;
  bottom: -80px;
  width: min(46%, 680px);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.testi-leaf img {
  width: 100%;
  height: auto;
}

.testimonial-section .container-xl {
  position: relative;
  z-index: 2;
}
.testi-intro {
  padding-right: 24px;
}
.testi-title {
  margin-top: 8px;
}

.testi-carousel-col {
  position: relative;
}
.testimonial-swiper {
  padding: 16px 4px;
  overflow: hidden;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--cream);
  border-radius: 40px;
  padding: 36px 46px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-swiper .swiper-slide-active .testimonial-card {
  border-color: var(--primary);
}

.quote-mark {
  width: 90px;
  height: 68px;
  margin-bottom: 24px;
  flex: none;
  background-color: var(--primary-3);
  -webkit-mask: url("../assets/images/icons/quote-mark.png") no-repeat center /
    contain;
  mask: url("../assets/images/icons/quote-mark.png") no-repeat center / contain;
}
.quote-mark--alt {
  background-color: var(--primary-2);
}

.testimonial-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
  margin: 0 0 22px;
}
.testimonial-card hr {
  width: 70px;
  height: 1px;
  border: 0;
  background: var(--primary);
  opacity: 0.7;
  margin: 0 0 24px;
}
.testimonial-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--text-heading);
  margin: 0 0 10px;
}
.testimonial-card span {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  padding-left: 4px;
}

.testimonial-nav button {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: 1.135px solid #4e88aa;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.testimonial-nav button:hover {
  transform: scale(1.06);
}
.testimonial-nav button.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}

.gallery-item {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.14);
  aspect-ratio: 1/1;
}
.gallery-item--tall {
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(84, 25, 0, 0.12);
  transition: background 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item:hover::after {
  background: rgba(84, 25, 0, 0.35);
}
.gallery-zoom {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

.stats-section {
  position: relative;
  overflow: hidden;
}
.stats-main-title {
  text-transform: capitalize;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.stats-col-left {
  flex: 1 1 560px;
  max-width: 640px;
}
.stats-col-right {
  flex: 1 1 720px;
  max-width: 845px;
}
.stats-bg {
  position: absolute;
  top: 10.25%;
  right: 0;
  width: 46.88%;
  height: 74.4%;
  background: url("../assets/images/bg/stats-bg.png") no-repeat center / 100%
    100%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.stats-section .container-xl {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  row-gap: 56px;
  position: relative;
  height: 100%;
  align-content: center;
  padding: 8px 0;
}
.stats-grid::before {
  content: "";
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 50%;
  width: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}
.stats-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
}
.stat-item {
  color: var(--white);
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 48px);
  display: block;
  line-height: 1.33;
  margin-bottom: 16px;
}
.stat-item p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.24px;
  color: var(--white);
  margin: 0;
}
.stats-cta {
  background: rgba(255, 238, 228, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: -4px 9px 30px -6px rgba(34, 34, 34, 0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  padding: 56px 64px;
  text-align: center;
  min-height: 546px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stats-cta .eyebrow {
  margin-bottom: 8px;
}
.stats-cta h3 {
  color: var(--white);
  font-weight: 700;
  text-transform: capitalize;
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.32;
  margin: 0 0 24px;
}
.stats-cta p {
  color: var(--white);
  font-size: 18px;
  line-height: 32px;
  max-width: 608px;
  margin: 0 0 55px;
}

.faq-accordion .accordion-item {
  background: var(--cream-2);
  border: 1px solid #000;
  border-radius: 12px !important;
  margin-bottom: 24px;
  overflow: hidden;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: transparent;
}
.faq-accordion .accordion-header {
  margin: 0;
}
.faq-accordion .accordion-button {
  background: var(--cream-2);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  color: var(--primary);
  padding: 15px 40px;
  min-height: 62px;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  border-radius: 12px 12px 0 0;
}
.faq-accordion .accordion-button::after {
  content: "\002B";
  font-family: inherit;
  font-weight: 400;
  font-size: 24px;
  background: none;
  width: auto;
  height: auto;
  line-height: 1;
  transition: transform 0.25s ease;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.36px;
  color: #5f5f5f;
  padding: 25px 40px 28px;
}
.faq-accordion
  .accordion-item:has(.accordion-button:not(.collapsed))
  .accordion-body {
  border: 1px solid #156a9b;
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.closing-cta {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}
.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(97, 55, 28, 0.85),
    rgba(97, 55, 28, 0.55)
  );
}
.closing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-cta-inner h2 {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 45px);
  line-height: 1.25;
  margin: 6px 0 16px;
}
.closing-cta-inner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto 26px;
  max-width: 900px;
}

.site-footer {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 400;
  padding: 18px 0;
  font-size: 14px;
}
.site-footer p {
  margin: 0;
  line-height: 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  flex: 1 1 0;
  text-align: left;
  font-size: 14px;
  line-height: 24px;
  color: var(--white);
}
.footer-address {
  flex: 0 1 auto;
  text-align: center;
  white-space: nowrap;
  color: var(--white);
}
.footer-contact {
  flex: 1 1 0;
  text-align: right;
  color: var(--white);
}

.footer-contact a,
.footer-address a {
  color: var(--white);
}
.footer-contact a:hover,
.footer-address a:hover {
  color: var(--peach);
}

.enquire-cta {
  position: fixed;
  z-index: 1040;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.enquire-whatsapp {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 32px;
  box-shadow: 0 8px 22px rgba(84, 25, 0, 0.3);
  transition: transform 0.2s ease;
}
.enquire-whatsapp:hover {
  transform: translateY(-3px);
  color: var(--primary);
}
.enquire-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 2px solid var(--cream-2);
  color: var(--white);
  font-family: var(--font-alt);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  padding: 16px 30px;
  border-radius: 50px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(84, 25, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.enquire-pill:hover {
  background: #3e1200;
  color: var(--white);
  transform: translateY(-3px);
}


.modal-content-custom {
  background: var(--cream-2);
  border: none;
  border-radius: var(--radius-md);
}
.modal-content-custom .modal-header {
  border-bottom: 1px solid rgba(84, 25, 0, 0.15);
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px 18px;
}
.modal-content-custom .modal-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 4px;
}
.modal-subtitle {
  font-size: 13px;
  color: var(--text-soft);
}
.modal-content-custom .modal-body {
  padding: 22px 28px 28px;
}
.modal-form .form-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: #424242;
}





@media (min-width: 992px) {
  .concerns-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem;
    gap: 32px;
    transform: none !important;
  }
  .concerns-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
  .concerns-pagination {
    display: none;
  }
  .tech-swiper {
    overflow: visible;
  }
  .tech-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 49px 43px;
    transform: none !important;
  }
  .tech-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
  .tech-pagination {
    display: none;
  }
  .device-swiper {
    overflow: visible;
  }
  .device-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 33px;
    transform: none !important;
  }
  .device-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
  .device-pagination {
    display: none;
  }
  .gallery-grid {
    align-items: center;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .tech-swiper .swiper-wrapper {
    gap: 32px 28px;
  }
}

@media (max-width: 1199.98px) {
  .hero-topbar {
    padding: 32px 32px 0;
  }
  .hero-content {
    padding: 40px 32px 180px;
  }
}

@media (max-width: 991.98px) {
  .ba-slider {
    height: 70vw;
    max-height: 489px;
  }
  .ba-nav {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }
  .ba-nav--prev {
    left: 4px;
  }
  .ba-nav--next {
    right: 4px;
  }
  .tech-swiper {
    margin-top: -180px;
    overflow: hidden;
  }
  .device-swiper {
    overflow: hidden;
  }
  .measure-head-right {
    align-items: flex-start;
  }
  .measure-book {
    align-self: flex-start;
    order: 2;
  }
  .testi-panel {
    display: none;
  }
  .section {
    padding: 70px 0;
  }
  .hero-wrap {
    padding: 0 16px;
  }
  .hero-shell {
    min-height: auto;
    margin-top: 16px;
  }
  .hero-topbar {
    padding: 26px 24px 0;
  }
  .hero-logo img {
    height: 52px;
  }
  .hero-content {
    padding: 32px 24px 28px;
  }
  .hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 3;
    margin: 0 16px 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-strip-item:nth-child(odd)::before {
    display: none;
  }
  .section-head--split {
    align-items: flex-start;
  }
  .concerns-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 40px;
  }
  .concerns-head-text {
    font-size: 16px;
  }
  .concern-wm--2 {
    left: 20px;
    top: 120px;
  }
  .journey-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
  }
  .journey-head-right {
    align-items: flex-start;
    gap: 18px;
  }
  .journey-cols {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 460px;
    margin: 0 auto;
  }
  .journey-line {
    display: none;
  }

  .custom-container {
    width: 95%;
    margin: auto;
  }

  .testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-brand,
  .footer-contact {
    flex: none;
    text-align: center;
  }
  .footer-address {
    white-space: normal;
  }
}

@media (max-width: 575.98px) {
  .tech-swiper {
    margin-top: -160px;
  }
  .tech-band {
    padding-bottom: 200px;
  }
  .tech-num {
    font-size: 88px;
    right: 28px;
  }
  .testimonial-card {
    padding: 32px 28px;
  }
  .container-xl {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-topbar {
    padding: 18px 16px 0;
    gap: 10px;
  }
  .hero-logo img {
    height: 38px;
  }
  .hero-topbar .btn-pill {
    padding: 9px 14px;
    font-size: 13px;
    flex: 0 0 auto;
  }
  .hero-content {
    padding: 26px 18px 24px;
  }
  .hero-title {
    line-height: 1.2;
    overflow-wrap: break-word;
  }
  .section-title {
    line-height: 1.25;
  }
  .consult-card {
    padding: 24px 20px;
  }
  .hero-strip {
    grid-template-columns: 1fr;
  }
  .hero-strip-item::before {
    display: none !important;
  }
  .hero-strip-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .tech-card {
    padding: 28px 24px;
    min-height: 0;
  }
  .concern-card {
    padding: 26px 22px;
  }
  .device-card {
    height: 200px;
  }
  .device-card h3 {
    font-size: 21px;
  }
  .stats-cta {
    padding: 34px 24px;
  }
  .stats-grid {
    column-gap: 24px;
    row-gap: 32px;
  }
  .closing-cta {
    padding: 54px 18px;
  }

  .enquire-cta {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .enquire-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 27px;
  }
  .enquire-pill {
    font-size: 16px;
    padding: 13px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}
