/* HERO with background image behind content */
.hero {
  padding-top: 100px;
  min-height: 750px !important;
  position: relative;
  z-index: 1;

}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .86) 0%, rgba(255, 255, 255, .55) 40%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero.hero--center .hero-inner {
  align-items: center;

  min-height: calc(797px - 140px - 48px);
  display: grid;

}


.hero-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;


}


.hero-left h1 {
  color: #0197B2;
  font-weight: 700;
  font-size: 40px;
  line-height: 63px;
  margin: 0 0 18px 0;
}

.hero-left p {
  margin: 0 0 20px 0;
  font-weight: 400;
  font-size: 14.06px;
  line-height: 32.94px;
  max-width: 640px;
  color: #000;

}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #0197B2;
  padding: 12px 18px;
  border-radius: 9.41px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14.12px;
  /* width: 178px; */
  min-height: 42px;
  line-height: 1.2;
  text-align: center;

}

.btn-primary:hover {
  opacity: .9;
}

.btn-yellow {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #FFC600;
  /* padding: .70rem 1.10rem; */
  padding: 12px 18px;
  border-radius: 9.41px;
  font-weight: 500;
  font-size: 14.12px;
  width: 178px;
  min-height: 42px;
  line-height: 1.2;
  text-align: center;
}

.btn-yellow:hover {
  opacity: .95;
}

/* Right placeholder to keep two-column layout */
.hero-right {
  min-height: 360px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 48px 0;
  }

  .hero-left {
    margin-top: 16px;
  }

  .hero-left h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .hero-left p {
    line-height: 28px;
    color: #000;
    text-shadow: 0 0 20px #fff;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    /* max-width: 420px; */

  }

  .btn-primary,
  .btn-yellow {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero {
    background-image: none !important;
  }

  .hero-inner {
    width: 92%;
  }

  .hero-left {
    margin-top: 230px;
    text-align: center;
  }

  /* extra top margin on very small screens */
  .hero-left h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .btn-primary,
  .btn-yellow {
    padding: 12px 16px;

  }
}







/* Videos strip — 1440×390 with 91px vertical padding and 58px side gutters (scaled responsively) */
.videos {
  padding: 91px 58px;
}


.videos-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* responsive height */
  min-height: 260px;
  /* a little taller on desktop */
  border: 0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.videos-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
}

.vid {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.vid img {
  display: block;
  width: 100%;
  height: 208px;

  object-fit: cover;
}

.vid .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 45px;
  background: #ff0000;
  border-radius: 10px;
}

.vid .play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.vid:hover img {
  transform: scale(1.02);
  transition: transform .25s ease
}


@media (max-width:1100px) {
  .videos {
    padding: 60px 32px;
  }

  .videos-wrap {
    gap: 40px;
  }

  .videos-wrap iframe {
    min-height: 240px;
  }
}

@media (max-width:900px) {
  .videos-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    /* center grid items */
  }

  .videos-wrap iframe {
    width: min(100%, 720px);
    /* nice max width */
    min-height: 220px;
    /* keep some height */
  }
}




.main-heading-2 {
  font-family: "Poppins", Sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 61px;
  color: #0197B2;
}

.main-heading-3 {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 61px;
  color: #0197B2;
}

.main-heading-4 {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #0197B2;
}




.services {
  position: relative;
  padding: 81px 20px 120px;
  overflow: hidden;
}



.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .25;

  z-index: 0;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .85) 20%, rgba(255, 255, 255, .85) 80%, #fff 100%);
  z-index: 1;
}

.services-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}


.services-title {
  margin: 0 0 48px;
  font-weight: 500;

  font-size: 40px;

  line-height: 61px;
  text-align: center;
  color: #0b2a2f;
}

.services-title span {
  font-weight: 600;
  color: #0197B2;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}


.card-service {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.card-img {
  border-top-left-radius: 20px;
  overflow: hidden;
  flex: 0 0 auto;
}

.card-img img {
  display: block;
  width: 100%;
  height: 220px;

  object-fit: cover;
}


.badge-service {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 155px;

  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;

}

.badge-service-inner {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;


}

.badge-service-inner img {
  width: 55px;
  height: 55px;
  display: block;
  object-fit: cover;
}

.card-body-service {
  position: relative;
  top: -18px;

  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;


  background: #0f9fb3;
  color: #fff;
  padding: 28px 18px 22px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  text-align: center;
  background-color: #0197B2;

}

.card-body-service h3 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 18px;
}

.card-body-service p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.32px;
}


@media (max-width:1200px) {
  .services {
    padding: 70px 24px 100px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .card-img img {
    height: 210px;
  }

  .badge-service {
    top: 145px;
  }

}


@media (max-width:640px) {
  .services {
    padding: 56px 18px 72px;
  }

  .services-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;

  }

  .card-service {
    width: 100%;
    max-width: 360px;

  }

  .card-img img {
    height: 200px;
  }

  .badge-service {
    top: 135px;
  }


}


@media (max-width:380px) {
  .card-service {
    max-width: 320px;
  }

  .card-img img {
    height: 180px;
  }

  .badge-service {
    top: 120px;
    width: 60px;
    height: 60px;
  }

  .badge-service-inner {
    width: 42px;
    height: 42px;
  }
}







.mxs-slice {
  position: relative;
  padding: 64px 22px;
  overflow: hidden;

  background-image: url('../img/professional-vector.webp');
  background-repeat: no-repeat;

  /* size grows/shrinks between 180px and 560px, based on viewport */
  background-size: clamp(180px, 32vw, 560px) auto;

  /* keep it inset from the edges in a fluid way */
  background-position:
    left clamp(12px, 2vw, 30px) bottom clamp(10px, 1.8vw, 20px);
  /* position: relative;
  padding: 64px 22px;
  overflow: hidden;

  --slice-w: clamp(260px, 15vw, 560px);

  --slice-x: calc((100vw - 1150px)/2 - 35px);
  --slice-y: calc(100% - 18px);

  background-image: url('../img/professional-vector.webp');

  background-repeat: no-repeat;
  background-size: var(--slice-w) auto;
  background-position: var(--slice-x) var(--slice-y); */
}


.mxs-slice__wrap {
  position: relative;
  z-index: 1;

  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 48px;
  align-items: center;
}


.mxs-slice__media {

  margin: 0;
  border: 2px solid #0197B2;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;

}

.mxs-slice__media img {
  display: block;
  width: 100%;
  height: 550px;
  border-radius: 22px;
  object-fit: cover !important;

}


.mxs-slice__content {
  color: #0b2a2f;
}

.mxs-slice__title {
  margin: 0 0 16px;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 65px;
}

.mxs-slice__title span {
  color: #0197B2;
}

.mxs-slice__text {
  margin-bottom: 28px;
}

.mxs-slice__text p {
  margin: 0 0 14px;
  line-height: 31px;
  font-weight: 400;
  font-size: 16px;
  color: #222;
}

/* button */
.mxs-slice__btn {
  display: inline-block;
  background: #FFC600;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 500;

  width: 323px;
  /* height: 45px; */
  text-align: center;
}


@media (max-width:1100px) {
  .mxs-slice__wrap {
    grid-template-columns: 460px 1fr;
    gap: 36px;
  }

  .mxs-slice__media img {
    height: 460px;
  }

  .mxs-slice {
    background-size: 340px auto;
    background-position: left 24px bottom 16px;
  }
}

@media (max-width:900px) {
  .mxs-slice__wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mxs-slice {
    background-size: 280px auto;
    background-position: left 16px bottom 14px;
  }

  .mxs-slice__media {
    max-width: 560px;
  }

  .mxs-slice__media img {
    height: 380px;
  }

  .mxs-slice__title {
    font-size: 34px;
  }
}


@media (max-width:560px) {
  /* .mxs-slice {
    padding: 44px 16px;
     background-size: 200px auto;
    background-position: left 12px bottom 10px;
   
    
  } */


  .mxs-slice {
    background: none !important;
    background-image: none !important;
    background-size: 0 0 !important;
  }

  .mxs-slice::before {
    display: none !important;
    content: none !important;
  }


  .mxs-slice__media img {
    height: 300px;

  }

  .mxs-slice__title {
    font-size: 28px;
    line-height: 41px;
  }

  .mxs-slice__text p {
    font-size: 15px;
    line-height: 1.7;
  }
}






.proc-wrap {
  position: relative;
  overflow: hidden;

  /* background-image: url('../img/our-process-bg-image.png');
  background-size: cover;
  background-position: center; */
}


.proc-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 22px;

  text-align: center;
  color: #fff;
}


.proc-wave {
  position: relative;
  height: 82px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}



.proc-title {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 40px;
  line-height: 61px;
}

.proc-sub {
  margin: 0 0 40px;
  font-size: 20px;
  line-height: 61px;
  font-weight: 400;
  opacity: .9;
}


.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


.proc-card {
  background: transparent;
}

.proc-card__img {
  overflow: hidden;

  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.proc-card__img img {
  display: block;
  width: 100%;
  height: 176px;
  object-fit: cover;
  transform: translateZ(0);
}

.proc-card__body {
  background: #ffffff;
  color: #0b2a2f;
  text-align: left;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .18);
}

.proc-card__title {
  margin: 0 0 6px;
  color: #0197B2;
  font-weight: 500;
  font-size: 20px;
}

.proc-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  text-align: justify;
  color: #4a4a4a;
}

@media (max-width:1100px) {
  .proc-inner {
    padding: 64px 20px;
  }

  .proc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .proc-card__img img {
    height: 180px;
  }
}

@media (max-width:720px) {
  .proc-title {
    font-size: 28px;
  }

  .proc-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .proc-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proc-card__img img {
    height: 190px;
  }

  .proc-wave {
    height: 64px;
  }
}

@media (max-width:420px) {
  .proc-card__img img {
    height: 180px;
  }

  .proc-title {
    font-size: 24px;
  }
}










.diff-wrap {
  padding: 56px 22px 72px;
}

.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
}


.diff-head {
  text-align: center;
  margin-bottom: 42px;
}

.diff-title {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 61px;
  color: #0b2a2f;
}

.diff-title span {
  color: #0197B2;
}

.diff-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;

  gap: 36px;
  align-items: center;
}


.diff-media {
  position: relative;
  margin: 0;
  min-height: 280px;
}

.diff-media img {
  display: block;
  width: 100%;
  height: 320px;

  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 2;

}




.diff-content {

  padding: 28px;

}

.diff-subtitle {
  margin: 0 0 14px;
  font-weight: 500;
  font-size: 40px;
  line-height: 61px;
  color: #000;
}

.diff-text {
  margin: 0;
  color: #24353a;
  line-height: 1.8;
  font-size: 16px;
}

.diff-row--reverse {
  grid-template-columns: 1.05fr 1fr;
}

.diff-row--reverse .diff-media {
  order: 2;
}

.diff-row--reverse .diff-content {
  order: 1;
}


@media (max-width: 1024px) {
  .diff-title {
    font-size: 32px;
  }

  .diff-media img {
    height: 300px;
  }
}

@media (max-width: 840px) {
  .diff-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .diff-media img {
    height: 260px;
  }

  .diff-content {
    padding: 22px;
  }

  .diff-subtitle {
    font-size: 26px;
    line-height: 41px;

  }
}

@media (max-width: 520px) {
  .diff-title {
    font-size: 26px;
    line-height: 41px;
  }

  .diff-media img {
    height: 220px;
  }

  .diff-teal {
    left: -6%;
    width: 78%;
    top: 10%;
    height: 60%;
  }
}









.testimonial-section {
  padding: 96px 0 110px;
  color: #fff;
}

.testimonial-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.testimonial-title {
  margin: 0 0 32px;
  text-align: center;
  color: #fff;
  font-weight: 500;

  line-height: 61px;
  font-size: 40px;

}


.testimonial-swiper {
  padding: 8px 8px 56px;
}


.testimonial-swiper .swiper-wrapper {
  align-items: stretch;

}


.swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  background: #fff;
  color: #111;
  border-radius: 22px;
  padding: 26px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  height: 100%;
  min-height: 320px;

}


.t-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: #FFB400;
  font-size: 18px;
  letter-spacing: 1px;
}

.quote-mark {
  color: #e9f3f8;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
}


.t-text {
  color: #333;
  font-size: 16px;
  line-height: 1.65;
  margin: 2px 0 8px;
  flex: 1 1 auto;

}

/* Footer */
.t-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9f3fb;
}

.t-name {
  font-weight: 700;
}

.t-city {
  font-size: 13px;
  color: #8a97a6;
}


.swiper-pagination {
  position: static;
  margin-top: 18px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, .55);
  opacity: 1;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background: #fff;
}


@media (min-width: 0px) {
  .testimonial-swiper .swiper-slide {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .testimonial-swiper .swiper-slide {
    width: calc(50% - 16px);
  }
}

@media (min-width: 1200px) {
  .testimonial-swiper .swiper-slide {
    width: calc(33.333% - 16px);
  }
}


@media (max-width:640px) {
  .testimonial-section {
    padding: 72px 0 90px;
  }

  .testimonial-title {
    margin-bottom: 24px;
    line-height: 41px;
  }

  .testimonial-card {
    border-radius: 18px;
    padding: 22px 20px 26px;
    min-height: 300px;
  }
}








/* ===== Certifications (unique classes) ===== */

.cert-band {
  background: #fff;
  padding: 64px 22px;
  margin-top: 5%;
}

.cert-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;

  gap: 48px;
  align-items: start;
}

.cert-media {
  position: relative;
  margin: 0;
  display: block;
  z-index: 0;

}

.cert-media::before {
  content: "";
  position: absolute;
  left: -70px;
  top: -50px;


  width: 220px;
  height: 115%;

  background: #0197B2 url('../img/certificate-line.webp') center/cover no-repeat;

  border-radius: 4px;
  z-index: -1;
}


.cert-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover !important;


  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
}


.cert-content {
  color: #0b2a2f;
  align-self: center;
}

.cert-title {
  margin: 0 0 18px;

  font-weight: 600;
  font-size: 40px;
  line-height: 61px;
}

.cert-emph {
  color: #0197B2;
}


.cert-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 48px;
  align-items: center;
}

.cert-guarantee {
  display: flex;
  flex-direction: column;

  align-items: center;

  text-align: center;

  gap: 14px;
}

.cert-guarantee__badge {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto;
}

.cert-guarantee__text {
  max-width: 640px;

}

.cert-h3 {
  margin: 6px 0 4px;
}


.cert-guarantee__text p {
  margin: 0;
  color: #333;
  line-height: 1.8;
}


.cert-h4 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  text-wrap: balance;
}

.cert-else {
  justify-self: end;
}

.cert-logos {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: flex-end;
}

.cert-logos img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width:1100px) {
  .cert-wrap {
    grid-template-columns: 460px 1fr;
    gap: 36px;
  }

  .cert-media::before {
    left: -56px;
    top: -56px;
    width: 200px;
  }

  .cert-logos img {
    height: 90px;
  }

  .cert-title {
    font-size: 34px;
    line-height: 1.25;
  }
}

@media (max-width:900px) {
  .cert-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    /* gap: 22px; */
  }

  .cert-media {
    width: 100%;

    max-width: none;
    padding: 20px;
  }

  .cert-media img {
    width: 100%;
    /* fill the column */
    height: auto;
    /* keep proportion */
  }

  /* .cert-media::before {
    left: -16px;
    top: -16px;
    width: 120px;
    height: 105%;
  } */

  .cert-media::before {
    display: none;
  }

  .cert-content {
    width: 100%;
    text-align: center;
  }

  .cert-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }


  .cert-else {
    justify-self: center;
  }

  .cert-logos {
    justify-content: center;
    flex-wrap: wrap;
    /* allow wrap */
    gap: 16px;
  }

  .cert-title {
    font-size: 30px;
    line-height: 1.25;
  }
}

@media (max-width:520px) {
  .cert-media::before {
    left: -18px;
    top: -18px;
    width: 120px;
    height: 106%;
    display: none;
  }

  .cert-band {
    padding: 40px 18px;
  }

  .cert-guarantee__badge {
    width: 96px;
    height: auto;
  }

  .cert-logos img {
    height: 78px;
  }

  .cert-title {
    font-size: 20px;
    line-height: 1.25;
  }
}






.map-band {
  padding: 56px 0 80px;
  background: #fff;
}

.map-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-title {
  margin: 0 0 22px;
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  line-height: 61px;
  color: #14181b;
}

.map-title span {
  color: #0197B2;
}

.map-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100%;
  padding: 0 0 80px;

}

.map-card {
  max-width: 1000px;
  height: 356px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .14);
}

.map-frame {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}


.map-open {
  position: absolute;
  right: 14px;
  bottom: 12px;
  background: rgba(255, 255, 255, .92);
  color: #0b2a2f;
  text-decoration: none;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.map-open:hover {
  background: #fff;
}

@media (max-width: 640px) {
  .map-card {
    border-radius: 10px;
  }
}







.cta-banner {
  /* background: url('../img/our-service-bg.png') center/cover no-repeat; */
  padding: 72px 20px;
  color: #0b2a2f;
  position: relative;

  overflow: hidden;

}

.cta-wrap {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;

  align-items: center;
  gap: 28px;
}

.cta-title {
  margin: 0 0 14px;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 61px;
  letter-spacing: .2px;
}

.cta-title span {
  color: #0197B2;
}

.cta-lead {
  margin: 0 0 24px;
  font-weight: 400;

  font-size: 16px;
  line-height: 31px;
  max-width: 680px;
  color: #2e2f33;
}

.cta-btn {
  display: inline-block;
  background: #FFC600;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px;
  min-width: 323px;
  min-height: 45px;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.cta-btn:hover {
  filter: brightness(.96);
}

.cta-figure {
  position: absolute;

  right: 0;
  bottom: 0;
  width: min(48vw, 560px);
  height: auto;
  display: block;
  pointer-events: none;
}

.cta-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;

  object-fit: contain;
}


.cta-wrap {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

  .cta-banner {
    padding: 56px 16px;
  }

  .cta-figure {
    width: min(56vw, 480px);
  }


  .cta-wrap {
    grid-template-columns: 1fr;
    /* stack */
    gap: 20px;
  }


  .cta-figure img {
    max-width: 480px;
  }
}

@media (max-width: 720px) {
  .cta-banner {
    padding: 48px 16px;
  }

  .cta-title {
    font-size: 32px;
    line-height: 41px;
  }

  .cta-lead {
    font-size: 15px;
  }

  .cta-figure {
    position: static;
    /* put image back into flow on small screens */
    width: 100%;
    margin: 12px auto 0;
    display: flex;
    justify-content: center;
  }

  .cta-figure img {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-figure img {
    max-width: 340px;
  }

  .cta-btn {
    width: 100%;
  }
}


.mattress-image {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}










/* Additional Services Section */
.additional-services {
  padding: 60px 20px;
  background: #fff;
}

.additional-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.additional-services h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 12px;
  color: #0d2d45;

}

.additional-services .lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #000;

  font-size: 16px;
  line-height: 1.6;
}

/* Responsive grid: 4 cols → 2 cols → 1 col */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* Individual service card */
.service-card {
  background: #fff;
  border: 2px solid #0098B2;
  /* pale ivory from your palette */
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(13, 45, 69, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none !important;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(13, 45, 69, 0.08);
}

/* Icon circle */
.service-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;


  color: #0098B2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.service-card h3 {
  margin-bottom: 14px;
  color: #000;
  /* dark navy */
  font-size: 20px;
  font-weight: 700;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  /* mid gray */
}

/* Adjustments for very small screens */
@media (max-width: 600px) {
  .additional-services h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}




.workflow-steps {
  padding: 60px 20px;
  background: #fff;
}

.workflow-steps .container {
  max-width: 1200px;
  margin: 0 auto;
}


.workflow-steps .workflow-lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Timeline bar */
.steps-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.steps-bar::before {
  content: "";
  position: absolute;
  top: 46px;
  /* aligns with circle centers */
  left: 0;
  right: 0;
  height: 2px;
  background: #0098B2;
  /* light gray connector line */
  z-index: 0;
}

/* Individual step */
.step-item {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  position: relative;
}

.step-circle {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #0098B2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.step-circle .step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  background: #0d2d45;
  /* dark navy */
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.step-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

/* Call-to-action */
.workflow-cta {
  text-align: center;
  margin-top: 32px;
}

.workflow-cta .btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #0d2d45;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.workflow-cta .btn-primary:hover {
  background: #0b2135;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .steps-bar {
    flex-wrap: wrap;
    gap: 30px;
  }

  .steps-bar::before {
    top: 44px;
  }

  .step-item {
    flex: 0 0 48%;
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .steps-bar {
    flex-direction: column;
    align-items: center;
  }

  .steps-bar::before {
    display: none;
  }

  .step-item {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto 40px;
  }
}









.features-zigzag {
  padding: 60px 20px;
  background: #fff;
  /* deep navy background */
  color: #000;
}

.features-zigzag .container {
  max-width: 1000px;
  margin: 0 auto;
}



/* Feature rows */
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* Left and right alignment */
.feature-item.left .icon {
  margin-right: 30px;
}

.feature-item.right {
  flex-direction: row-reverse;
}

.feature-item.right .icon {
  margin-left: 30px;
}

/* Icon circle */
.icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0098B2;
  /* coral accent */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* icon color */
  font-size: 28px;
  flex-shrink: 0;
}

/* Text styling */
.text h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: #0098B2;
}

.text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  /* light gray */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .icon {
    margin: 0 auto 16px;
  }

  .text h3 {
    font-size: 18px;
  }

  .text p {
    font-size: 14px;
  }
}