:root {
  --brand: #0F3325;
  --sub: #1A503B;
  --body: #516171;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  --green-deep: #1F5E45;
  --green-lime: #78C850;
  --cream: #F8F7F2;
  --beige: #E8E1D5;
  --charcoal: #2C2C2C;
  --gray-bg: #F3F5F4;
  --orange: #F28C28;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(31, 94, 69, 0.10);
  --shadow-card: 0 4px 24px rgba(31, 94, 69, 0.12);
}


/* ── Fix 1: Header height offset for slider ── */
/* Measure your .top-strip + .main-header actual rendered height
   and set that value here. Typical: strip ~38px + header ~72px = 110px */

body {
  overflow-x: hidden;
  /* Fix horizontal overflow / bottom scroll bar */
}

.hero-slider {
  margin-top: 0 !important;
  /* Remove any top gap — header is NOT fixed in your layout */
}

#about {
  /* min-height: 100vh; */
  /* background: linear-gradient(135deg, #ffffff 0%, var(--cream) 50%, #ffffff 100%); */
  display: flex;
  align-items: center;
  padding-top: 10px;
  position: relative;
  overflow: hidden;
}

/* ── Fix 4: Prevent sections from creating extra horizontal scroll ── */
section,
.hero-slider,
.why-choose-us,
.testimonials-section,
#contact-faq,
#services,
#process,
#before-after {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Fix 5: Testimonials carousel overflow causing bottom scroll ── */
.carousel-wrapper {
  overflow: hidden;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════
   HERO SLIDER — Brand-mapped styles
   Requires your :root tokens already loaded.
   Add margin-top to match your header height.
═══════════════════════════════════════════════ */

:root {
  --slide-h: clamp(560px, 72vh, 760px);
  --transition: transform 0.72s cubic-bezier(0.77, 0, 0.175, 1);
}

/* ── Wrapper ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: var(--slide-h);
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--brand);
  margin-top: 0px;
  /* ← adjust to your header height */
}

/* ── Track ── */
.hs-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: var(--transition);
  will-change: transform;
}

/* ── Individual slide ── */
.hs-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* ── BG image + Ken-Burns ── */
.hs-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6.5s ease-out;
}

.hs-slide.is-active .hs-slide__bg {
  transform: scale(1);
}

/* ── Overlay — deep brand green ── */
.hs-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(15, 51, 37, 0.86) 0%,
      rgba(15, 51, 37, 0.50) 55%,
      rgba(15, 51, 37, 0.22) 100%);
}

/* ── Lime accent wash ── */
.hs-slide__accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right,
      rgba(120, 200, 80, 0.10) 0%,
      transparent 55%);
  pointer-events: none;
}

/* ── Content box ── */
.hs-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  max-width: 860px;
}

/* ── Badge ── */
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(120, 200, 80, 0.12);
  border: 1px solid rgba(120, 200, 80, 0.45);
  color: var(--green-lime);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s 0.1s ease, transform 0.55s 0.1s ease;
}

.hs-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-lime);
  flex-shrink: 0;
}

.is-active .hs-badge {
  opacity: 1;
  transform: translateY(0);
}

/* ── Heading — Outfit font ── */
.hs-heading {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin: 0 0 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s 0.25s ease, transform 0.65s 0.25s ease;
}

.hs-heading span {
  color: var(--green-lime);
}

.is-active .hs-heading {
  opacity: 1;
  transform: translateY(0);
}

/* ── Sub text — Poppins ── */
.hs-sub {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  font-weight: 300;
  color: rgba(248, 247, 242, 0.80);
  /* --cream at 80% */
  line-height: 1.75;
  max-width: 500px;
  margin: 0 0 34px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s 0.40s ease, transform 0.65s 0.40s ease;
}

.is-active .hs-sub {
  opacity: 1;
  transform: translateY(0);
}

/* ── CTA group ── */
.hs-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s 0.55s ease, transform 0.65s 0.55s ease;
}

.is-active .hs-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.26s ease;
  white-space: nowrap;
}

.hs-btn--primary {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.hs-btn--primary:hover {
  background: var(--brand);
  color: var(--gray-bg);
  border-color: var(--green-lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 94, 69, 0.45);
}

.hs-btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(248, 247, 242, 0.50);
}

.hs-btn--outline:hover {
  background: rgba(248, 247, 242, 0.10);
  border-color: var(--cream);
  color: var(--green-lime);
  transform: translateY(-2px);
}

.hs-btn svg {
  flex-shrink: 0;
}

/* ── Progress bar ── */
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
}

.hs-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-deep), var(--green-lime));
  width: 0%;
  transition: width linear;
}

/* ── Nav arrows ── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(248, 247, 242, 0.28);
  background: rgba(15, 51, 37, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.hs-arrow:hover {
  background: var(--green-deep);
  border-color: var(--green-lime);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(31, 94, 69, 0.5);
}

.hs-arrow--prev {
  left: clamp(12px, 3vw, 36px);
}

.hs-arrow--next {
  right: clamp(12px, 3vw, 36px);
}

.hs-arrow svg {
  pointer-events: none;
}

/* ── Dot bullets ── */
.hs-bullets {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hs-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(248, 247, 242, 0.32);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.30s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

.hs-bullet:hover {
  background: rgba(248, 247, 242, 0.60);
}

.hs-bullet.is-active {
  background: var(--green-lime);
  border-color: var(--green-lime);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(120, 200, 80, 0.45);
}

/* ── Slide counter ── */
.hs-counter {
  position: absolute;
  bottom: 36px;
  right: clamp(16px, 4vw, 48px);
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: rgba(248, 247, 242, 0.55);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.hs-counter__cur {
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* ── Side service tags (desktop only) ── */
.hs-service-tag {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.hs-stag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 247, 242, 0.40);
  transition: color 0.25s;
  cursor: default;
  white-space: nowrap;
}

.hs-stag::after {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(248, 247, 242, 0.20);
  transition: width 0.3s, background 0.3s;
}

.hs-stag.is-current {
  color: var(--green-lime);
}

.hs-stag.is-current::after {
  width: 36px;
  background: var(--green-lime);
}

/* ═══════════ Responsive ═══════════ */

/* Sticky-header variant: if your header is fixed,
   use margin-top on .hero-slider instead of padding-top on body */

@media (max-width: 1024px) {
  .hs-service-tag {
    display: none;
  }

  .hs-counter {
    right: 16px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    margin-top: 0px;
  }

  /* smaller header on mobile */
  :root {
    --slide-h: clamp(480px, 92vw, 620px);
  }

  .hs-arrow {
    width: 42px;
    height: 42px;
  }

  .hs-slide__content {
    padding: 0 5vw;
    max-width: 100%;
  }

  .hs-heading {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .hs-sub {
    font-size: 0.875rem;
    max-width: 100%;
  }

  .hs-btn {
    padding: 11px 20px;
    font-size: 0.82rem;
  }

  .hs-counter {
    bottom: 68px;
  }
}

@media (max-width: 480px) {
  .hs-arrow--prev {
    left: 8px;
  }

  .hs-arrow--next {
    right: 8px;
  }

  .hs-badge {
    font-size: 0.64rem;
    padding: 5px 12px;
  }

  .hs-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hs-btn {
    width: fit-content;
  }
}

@media (min-width: 1440px) {
  :root {
    --slide-h: 840px;
  }

  .hs-slide__content {
    padding: 0 8vw;
  }
}

/* =========================================
   WHY CHOOSE US SECTION
========================================= */

.why-choose-us {
  position: relative;

  overflow: hidden;

  padding: 110px 0;

  background-image:
    linear-gradient(rgba(5, 35, 15, 0.637),
      rgba(3, 20, 10, 0.548)),
    url('../img/image-4/why\ choose\ backgrpund.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


/* =========================================
   OVERLAY
========================================= */

.why-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.12);

  z-index: 1;
}


/* =========================================
   FLOATING SHAPES
========================================= */

.shape {
  position: absolute;

  border-radius: 50%;

  backdrop-filter: blur(3px);

  z-index: 1;
}


/* =========================================
   SHAPE 1
========================================= */

.shape-1 {
  width: 220px;
  height: 220px;

  top: 8%;
  left: -60px;

  background: rgba(255, 255, 255, 0.04);

  animation: floatOne 12s infinite ease-in-out;
}


/* =========================================
   SHAPE 2
========================================= */

.shape-2 {
  width: 120px;
  height: 120px;

  top: 18%;
  right: 8%;

  background: rgba(47, 158, 68, 0.10);

  animation: floatTwo 10s infinite ease-in-out;
}


/* =========================================
   SHAPE 3
========================================= */

.shape-3 {
  width: 180px;
  height: 180px;

  bottom: 12%;
  left: 10%;

  background: rgba(255, 255, 255, 0.03);

  animation: floatThree 14s infinite ease-in-out;
}


/* =========================================
   SHAPE 4
========================================= */

.shape-4 {
  width: 90px;
  height: 90px;

  top: 55%;
  right: 18%;

  background: rgba(255, 255, 255, 0.05);

  animation: floatFour 9s infinite ease-in-out;
}


/* =========================================
   SHAPE 5
========================================= */

.shape-5 {
  width: 140px;
  height: 140px;

  bottom: 5%;
  right: -30px;

  background: rgba(47, 158, 68, 0.08);

  animation: floatFive 13s infinite ease-in-out;
}


/* =========================================
   SHAPE 6
========================================= */

.shape-6 {
  width: 70px;
  height: 70px;

  top: 40%;
  left: 42%;

  background: rgba(255, 255, 255, 0.04);

  animation: floatSix 11s infinite ease-in-out;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes floatOne {

  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-35px) rotate(8deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }

}

@keyframes floatTwo {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(25px);
  }

  100% {
    transform: translateY(0px);
  }

}

@keyframes floatThree {

  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(25px);
  }

  100% {
    transform: translateX(0px);
  }

}

@keyframes floatFour {

  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.08);
  }

  100% {
    transform: translateY(0px) scale(1);
  }

}

@keyframes floatFive {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-28px);
  }

  100% {
    transform: translateY(0px);
  }

}

@keyframes floatSix {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(18px);
  }

  100% {
    transform: translateY(0px);
  }

}


/* =========================================
   CONTAINER
========================================= */

.why-choose-us .container {
  position: relative;

  z-index: 2;
}


/* =========================================
   SECTION HEADER
========================================= */

.why-header {
  text-align: center;

  max-width: 760px;

  margin: 0 auto 70px;
}

.section-head {
  display: inline-block;

  background: rgba(120, 200, 80, 0.15);

  color: #fff;

  padding: 8px 18px;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 18px;
}

.why-header h2 {
  color: #fff;

  font-size: 46px;
  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 20px;
}

.why-header h2 span {
  color: #d7ffd5;
}

.why-header p {
  color: rgba(255, 255, 255, 0.82);

  font-size: 17px;

  line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.why-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}


/* =========================================
   CARD
========================================= */

.why-card {
  position: relative;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  padding: 40px 30px;

  border-radius: 24px;

  transition: 0.4s ease;

  overflow: hidden;
}


/* Hover */

.why-card:hover {
  transform: translateY(-10px);

  background: rgba(255, 255, 255, 0.12);
}


/* =========================================
   ICON
========================================= */

.why-icon {
  width: 70px;
  height: 70px;

  border-radius: 18px;

  background: #2f9e44;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;
}

.why-icon i {
  color: #fff;

  font-size: 28px;
}


/* =========================================
   CONTENT
========================================= */

.why-card h3 {
  color: #fff;

  font-size: 24px;
  font-weight: 600;

  margin-bottom: 16px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.82);

  line-height: 1.8;

  font-size: 15px;
}


/* =========================================
   TABLET
========================================= */

@media only screen and (max-width:991px) {

  .why-choose-us {
    padding: 90px 0px;

    background-attachment: scroll;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-header h2 {
    font-size: 38px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width:767px) {

  .why-choose-us {
    padding: 60px 20px;
  }

  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .why-header {
    margin-bottom: 50px;
  }

  .why-header h2 {
    font-size: 30px;
  }

  .why-header p {
    font-size: 15px;
  }

  .why-card {
    padding: 30px 24px;
  }

  .shape-1 {
    width: 140px;
    height: 140px;
  }

  .shape-2 {
    width: 90px;
    height: 90px;
  }

  .shape-3 {
    width: 120px;
    height: 120px;
  }

  .shape-4,
  .shape-5,
  .shape-6 {
    display: none;
  }

}


/* =========================================
   CONTACT + FAQ SECTION
========================================= */

#contact-faq {
  padding: 50px 24px;

  /* background: var(--gray-bg); */
}


/* =========================================
   CONTAINER
========================================= */

.contact-faq-inner {
  max-width: 1250px;

  margin: 0 auto;
}


/* =========================================
   TOP CONTACT GRID
========================================= */

.contact-top-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  margin-bottom: 70px;
}


/* =========================================
   CONTACT CARD
========================================= */

.contact-card {
  background: #fff;

  border-radius: 20px;

  padding: 28px;

  border: 1px solid rgba(120, 200, 80, 0.18);

  box-shadow: 0 4px 20px rgba(31, 94, 69, 0.06);

  display: flex;

  align-items: flex-start;

  gap: 18px;

  transition: 0.3s ease;
}


/* Hover */

.contact-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 10px 25px rgba(31, 94, 69, 0.10);
}


/* =========================================
   ICON
========================================= */

.contact-icon {
  width: 58px;
  height: 58px;

  min-width: 58px;

  border-radius: 16px;

  background: rgba(120, 200, 80, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: var(--green-deep);

  font-size: 22px;
}


/* =========================================
   CONTENT
========================================= */

.contact-content h4 {
  margin-bottom: 12px;

  color: var(--charcoal);

  font-size: 18px;

  font-weight: 700;
}

.contact-content a,
.contact-content p {
  display: block;

  color: #6a7a74;

  text-decoration: none;

  line-height: 1.8;

  margin-bottom: 5px;
}

.contact-content a:hover {
  color: var(--green-deep);
}


/* =========================================
   FAQ + MAP WRAPPER
========================================= */

.faq-map-wrapper {
  display: grid;
  padding-bottom: 40px;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: stretch;
}


/* =========================================
   FAQ AREA
========================================= */

.faq-area {
  width: 100%;
}


/* =========================================
   MAP AREA
========================================= */

.map-area {
  width: 100%;

  min-height: 100%;

  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.map-area iframe {
  width: 100%;

  height: 100%;

  min-height: 650px;

  border: 0;
}


/* =========================================
   LEFT ALIGN
========================================= */

.left-align {
  text-align: left;

  margin-bottom: 35px;
}


/* =========================================
   TABLET
========================================= */

@media only screen and (max-width:991px) {

  .contact-top-grid {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 50px;
  }

  .faq-map-wrapper {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .map-area iframe {
    min-height: 420px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width:767px) {

  #contact-faq {
    padding: 10px 20px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .map-area {
    border-radius: 18px;
  }

  .map-area iframe {
    min-height: 320px;
  }

}

/* =========================================
   MAJOR SEGMENTS SECTION
========================================= */

.major-segments {
  position: relative;

  padding: 50px 50px;

  background: #f8fbf8;

  overflow: hidden;
}


/* =========================================
   SECTION HEADER
========================================= */

.segments-header {
  position: relative;

  z-index: 2;

  text-align: center;

  max-width: 760px;

  margin: 0 auto 70px;
}

.section-tag {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  background: rgba(47, 158, 68, 0.10);

  color: #2f9e44;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 18px;
}

.segments-header h2 {
  font-size: 46px;

  font-weight: 700;

  line-height: 1.3;

  color: #111;

  margin-bottom: 18px;
}

.segments-header h2 span {
  color: #2f9e44;
}

.segments-header p {
  font-size: 16px;

  line-height: 1.9;

  color: #667085;
}


/* =========================================
   GRID
========================================= */

.segments-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}


/* =========================================
   CARD
========================================= */

.segment-card {
  background: #fff;

  border-radius: 22px;

  padding: 35px 25px;

  text-align: center;

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

  transition: 0.35s ease;
}


/* Hover */

.segment-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}


/* =========================================
   ICON
========================================= */

.segment-icon {
  width: 78px;
  height: 78px;

  margin: 0 auto 22px;

  border-radius: 20px;

  background: rgba(47, 158, 68, 0.10);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.35s ease;
}

.segment-card:hover .segment-icon {
  background: #2f9e44;

  transform: rotateY(180deg);
}

.segment-icon i {
  font-size: 32px;

  color: #2f9e44;

  transition: 0.35s ease;
}

.segment-card:hover .segment-icon i {
  color: #fff;
}


/* =========================================
   TITLE
========================================= */

.segment-card h3 {
  font-size: 18px;

  font-weight: 600;

  color: #111;

  line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media only screen and (max-width:991px) {

  .major-segments {
    padding: 90px 0;
  }

  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments-header h2 {
    font-size: 38px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width:767px) {

  .major-segments {
    padding: 20px 20px;
  }

  .segments-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    align-items: stretch;
  }

  .segments-header {
    margin-bottom: 40px;

    text-align: center;
  }

  .segments-header h2 {
    font-size: 30px;
  }

  .segments-header p {
    font-size: 15px;
  }

  .segment-card {
    padding: 24px 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    min-height: 180px;
  }

  .segment-icon {
    width: 60px;
    height: 60px;

    margin-bottom: 16px;
  }

  .segment-icon i {
    font-size: 24px;
  }

  .segment-card h3 {
    font-size: 15px;

    line-height: 1.5;
  }

}



.clients-section {
  padding: 100px 0 90px;
  background: var(--white, #ffffff);
  overflow: hidden;
  position: relative;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-deep, #1F5E45), var(--green-lime, #78C850), var(--green-deep, #1F5E45));
}

.clients-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.clients-header {
  text-align: center;
  margin-bottom: 68px;
}

/* .clients-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--green-deep, #1F5E45);
  margin-bottom: 18px;
}

.clients-eyebrow::before,
.clients-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--green-lime, #78C850);
} */

.clients-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--charcoal, #2C2C2C);
  line-height: 1.2;
  margin: 0 0 14px;
}

.clients-title span {
  color: var(--green-deep, #1F5E45);
  position: relative;
  display: inline-block;
}

.clients-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-lime, #78C850), transparent);
  border-radius: 2px;
}

.clients-sub {
  font-family: "Poppins", sans-serif;
  font-size: 0.97rem;
  color: #707070;
  font-weight: 400;
  line-height: 26px;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Stats bar ── */
.clients-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  border: 1px solid rgba(38, 90, 69, 0.24);
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-bg, #F3F5F4);
}

.clients-stat {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
  position: relative;
}

.clients-stat+.clients-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(31, 94, 69, 0.12);
}

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep, #1F5E45);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #707070;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Grid ── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(31, 94, 69, 0.08);
  border: 1px solid rgba(31, 94, 69, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.client-item {
  background: var(--white, #ffffff);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.22s ease, transform 0.22s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.client-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 94, 69, 0.04), rgba(120, 200, 80, 0.06));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.client-item:hover {
  background: var(--gray-bg, #F3F5F4);
  transform: scale(1.02);
  z-index: 2;
}

.client-item:hover::before {
  opacity: 1;
}

.client-item:hover .client-name {
  color: var(--green-deep, #1F5E45);
}

.client-name {
  /* font-family: "Plus Jakarta Sans", sans-serif; */
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal, #2C2C2C);
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: color 0.22s ease;
  position: relative;
  z-index: 1;
}

/* ── Sector categories ── */
.clients-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
  background: rgba(31, 94, 69, 0.06);
  color: var(--green-deep, #1F5E45);
  border: 1px solid rgba(31, 94, 69, 0.14);
  letter-spacing: 0.02em;
}

.cat-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-lime, #78C850);
  flex-shrink: 0;
}

/* ── Bottom note ── */
/* .clients-footer-note {
    text-align: center;
    margin-top: 48px;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    color: #9a9a9a;
    font-weight: 400;
    line-height: 26px;
  }
 
  .clients-footer-note strong {
    color: var(--green-deep, #1F5E45);
    font-weight: 600;
  } */

/* ── Responsive ── */
@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .clients-section {
    padding: 80px 0 70px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-stats {
    flex-wrap: wrap;
  }

  .clients-stat {
    flex: 1 1 30%;
  }
}

@media (max-width: 640px) {
  .clients-section {
    padding: 64px 0 56px;
  }

  .clients-header {
    margin-bottom: 48px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
  }

  .clients-stats {
    flex-direction: column;
    border-radius: 10px;
  }

  .clients-stat+.clients-stat::before {
    top: 0;
    bottom: auto;
    left: 20%;
    right: 20%;
    width: auto;
    height: 1px;
  }

  .clients-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .clients-sub {
    font-size: 0.88rem;
  }

  .clients-footer-note {
    font-size: 0.8rem;
  }

  .client-item {
    padding: 18px 12px;
  }

  .client-name {
    font-size: 0.72rem;
  }

  .stat-number {
    font-size: 1.65rem;
  }
}

@media (max-width: 380px) {
  .clients-container {
    padding: 0 16px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
}

/* ── Entrance animation ── */
.clients-section .clients-header,
.clients-section .clients-stats,
.clients-section .clients-categories,
.clients-section .clients-grid,
.clients-section .clients-footer-note {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.clients-section.is-visible .clients-header {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.clients-section.is-visible .clients-stats {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.clients-section.is-visible .clients-categories {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}

.clients-section.is-visible .clients-grid {
  opacity: 1;
  transform: none;
  transition-delay: 0.26s;
}

.clients-section.is-visible .clients-footer-note {
  opacity: 1;
  transform: none;
  transition-delay: 0.38s;
}

/* staggered items */
.client-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.22s ease, scale 0.22s ease;
}

.client-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   CERTIFICATES & MEMBERSHIP SECTION
════════════════════════════════════════ */

.cert-section {
  padding: 100px 0 90px;

  background: var(--gray-bg, #F3F5F4);

  position: relative;

  overflow: hidden;
}

.cert-section::before {
  content: '';

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg,
      var(--green-deep, #1F5E45),
      var(--green-lime, #78C850),
      var(--green-deep, #1F5E45));
}


/* =========================================
   BACKGROUND BLOBS
========================================= */

.cert-blob {
  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  opacity: 0.07;

  pointer-events: none;
}

.cert-blob-1 {
  width: 420px;
  height: 420px;

  background: var(--green-lime, #78C850);

  top: -80px;
  right: -100px;
}

.cert-blob-2 {
  width: 300px;
  height: 300px;

  background: var(--green-deep, #1F5E45);

  bottom: -60px;
  left: -80px;
}


/* =========================================
   CONTAINER
========================================= */

.cert-container {
  max-width: 1260px;

  margin: 0 auto;

  padding: 0 24px;

  position: relative;

  z-index: 2;
}


/* =========================================
   HEADER
========================================= */

.cert-header {
  text-align: center;

  margin-bottom: 60px;

  opacity: 0;

  transform: translateY(24px);

  transition: 0.65s ease;
}

.cert-section.is-visible .cert-header {
  opacity: 1;

  transform: translateY(0);
}

.cert-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.20em;

  text-transform: uppercase;

  color: var(--green-deep, #1F5E45);

  margin-bottom: 16px;
}

.cert-eyebrow::before,
.cert-eyebrow::after {
  content: '';

  width: 36px;
  height: 1.5px;

  background: var(--green-lime, #78C850);
}

.cert-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);

  font-weight: 700;

  color: var(--charcoal, #2C2C2C);

  line-height: 1.2;

  margin-bottom: 14px;
}

.cert-title span {
  color: var(--green-deep, #1F5E45);

  position: relative;
}

.cert-title span::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg,
      var(--green-lime, #78C850),
      transparent);
}

.cert-subtitle {
  max-width: 550px;

  margin: 0 auto;

  font-size: 0.97rem;

  line-height: 26px;

  color: #707070;
}


/* =========================================
   GALLERY GRID
========================================= */

.cert-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;

  opacity: 0;

  transform: translateY(28px);

  transition: 0.65s ease;
}

.cert-section.is-visible .cert-grid {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================
   CARD
========================================= */

.cert-item {
  position: relative;

  height: 400px;

  border-radius: 14px;

  overflow: hidden;

  cursor: pointer;

  background: #e0e4e2;

  border: 1.5px solid rgba(31, 94, 69, 0.08);

  box-shadow: 0 4px 20px rgba(31, 94, 69, 0.06);

  transition: 0.35s ease;

  opacity: 0;

  transform: translateY(20px) scale(0.97);
}

.cert-item.in-view {
  opacity: 1;

  transform: translateY(0) scale(1);
}

.cert-item:hover {
  transform: translateY(-5px) scale(1.015);

  box-shadow: 0 16px 40px rgba(31, 94, 69, 0.18);

  border-color: rgba(120, 200, 80, 0.45);
}


/* =========================================
   IMAGE
========================================= */

.cert-img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  display: block;

  transition: transform 0.55s ease;
}

.cert-item:hover .cert-img {
  transform: scale(1.06);
}


/* =========================================
   OVERLAY
========================================= */

.cert-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top,
      rgba(15, 51, 37, 0.92) 0%,
      rgba(15, 51, 37, 0.55) 45%,
      rgba(15, 51, 37, 0.00) 75%);

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 22px 20px;

  pointer-events: none;
}

.cert-badge {
  display: inline-flex;

  align-items: center;

  width: fit-content;

  padding: 4px 10px;

  margin-bottom: 8px;

  border-radius: 2px;

  background: rgba(120, 200, 80, 0.20);

  border: 1px solid rgba(120, 200, 80, 0.55);

  color: var(--green-lime, #78C850);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.cert-name {
  font-size: 1rem;
  font-weight: 600;

  color: #fff;

  line-height: 1.35;

  margin: 0;
}


/* ===== LIGHTBOX ===== */

.cert-lightbox {
  position: fixed;
  inset: 0;

  background: rgba(10, 26, 16, 0.92);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;
}

.cert-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}


/* ===== INNER ===== */

.lb-inner {
  position: relative;

  width: 100%;
  max-width: 900px;

  border-radius: 18px;

  overflow: hidden;

  background: #0d1f14;

  transform: scale(0.9);

  transition: 0.35s ease;
}

.cert-lightbox.is-open .lb-inner {
  transform: scale(1);
}


/* ===== IMAGE ===== */

.lb-img {
  width: 100%;
  max-height: 82vh;

  object-fit: contain;

  display: block;

  background: #0d1f14;
}


/* ===== INFO ===== */

.lb-info {
  padding: 18px 24px;

  background: #10261b;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.lb-name {
  color: #fff;

  font-size: 1rem;
  font-weight: 600;

  margin: 0;
}

.lb-type {
  color: #78C850;

  font-size: 0.75rem;
  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-top: 4px;
}


/* ===== CLOSE BUTTON ===== */

.lb-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  border: none;

  background: rgba(0, 0, 0, 0.55);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 99999;

  font-size: 18px;

  transition: 0.3s ease;
}

.lb-close:hover {
  background: #1F5E45;
}


/* ===== ARROW BUTTONS ===== */

.lb-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border-radius: 50%;

  border: none;

  background: rgba(0, 0, 0, 0.55);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 99999;

  font-size: 20px;

  transition: 0.3s ease;
}

.lb-arrow:hover {
  background: #1F5E45;
  transform: translateY(-50%) scale(1.08);
}

.lb-arrow--prev {
  left: 18px;
}

.lb-arrow--next {
  right: 18px;
}


/* ===== FIX IMAGE LAYER ===== */

.lb-inner {
  position: relative;

  z-index: 1;
}

.lb-img {
  position: relative;

  z-index: 1;
}


/* ===== MOBILE ===== */

@media(max-width:768px) {

  .lb-arrow {
    width: 42px;
    height: 42px;

    font-size: 15px;
  }

  .lb-close {
    width: 38px;
    height: 38px;

    font-size: 15px;
  }

  .lb-arrow--prev {
    left: 10px;
  }

  .lb-arrow--next {
    right: 10px;
  }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:1024px) {

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-item {
    height: 320px;
  }

}

@media (max-width:640px) {

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
  }

  .cert-item {
    height: 220px;
  }

  .cert-overlay {
    padding: 14px;
  }

  .cert-name {
    font-size: 0.82rem;
  }

}

@media (max-width:420px) {

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-item {
    height: 240px;
  }

}

/* <----service-page--> */

.service-hero {
  padding: 120px 0 90px;
  background: linear-gradient(135deg,
      var(--brand),
      var(--green-deep));
}

/* ====================================
FLOATING IMAGE GALLERY
==================================== */

.floating-gallery {
  position: relative;
  min-height: 550px;
  max-width: 560px;
  margin: auto;
}

/* Main Image */

.main-image {
  position: relative;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, .12);
}

.main-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Floating Images */

.float-image {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  padding: 8px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, .10);
}

.float-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Top Image */

.float-top {
  width: 220px;
  height: 160px;

  right: -40px;
  top: 40px;

  animation: floatOne 4s ease-in-out infinite;
}

/* Bottom Image */

.float-bottom {
  width: 240px;
  height: 170px;

  right: -60px;
  bottom: 70px;

  animation: floatTwo 5s ease-in-out infinite;
}

/* Experience Badge */

.experience-badge {
  position: absolute;

  left: -30px;
  bottom: 60px;

  width: 130px;
  height: 130px;

  background: var(--green-deep);
  gap: 5px;
  text-align: center;
  color: #fff;

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;

  box-shadow:
    0 15px 35px rgba(31, 94, 69, .25);

  z-index: 5;
}

.experience-badge span {
  display: block;
  font-size: 36px;
  text-transform: uppercase !important;
  line-height: 1;
  font-weight: 700;
}

/* Decorative Circle */

.floating-gallery::before {
  content: '';

  position: absolute;

  width: 220px;
  height: 220px;

  background:
    linear-gradient(135deg,
      rgba(120, 200, 80, .15),
      rgba(31, 94, 69, .12));

  border-radius: 50%;

  top: -40px;
  left: -50px;

  z-index: -1;
}

.floating-gallery::after {
  content: '';

  position: absolute;

  width: 160px;
  height: 160px;

  border: 2px dashed rgba(120, 200, 80, .4);

  border-radius: 50%;

  right: -40px;
  bottom: -20px;

  z-index: -1;
}

/* Floating Animation */

@keyframes floatOne {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

}

@keyframes floatTwo {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(15px);
  }

}

/* Mobile */

@media(max-width:991px) {

  .floating-gallery {
    min-height: auto;
    padding-bottom: 0px;
  }

  .main-image {
    max-width: 100%;
  }

  .main-image img {
    height: 450px;
  }

  .float-top {
    width: 170px;
    height: 120px;
    right: 0;
    top: 20px;
  }

  .float-bottom {
    width: 180px;
    height: 130px;
    right: 0;
    bottom: 20px;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
    left: 10px;
    bottom: 30px;
  }

  .experience-badge span {
    font-size: 28px;
  }
}

@media(max-width:576px) {

  .main-image img {
    height: auto;
  }

  .float-top {
    width: 130px;
    height: 95px;
  }

  .float-bottom {
    width: 140px;
    height: 100px;
  }

  .experience-badge {
    width: 95px;
    height: 95px;
    font-size: 12px;
  }

  .experience-badge span {
    font-size: 24px;
  }
}

.service-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  margin-bottom: 20px;
}

.service-hero h1 {
  color: #fff;
  font-size: 60px;
  margin-bottom: 20px;
}

.service-hero h1 span {
  color: var(--green-lime);
}

.service-hero p {
  color: rgba(255, 255, 255, .8);
}

.hero-btn-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-main {
  background: var(--green-lime);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: .3s;
}

.btn-main:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}

.service-about,
.why-choose,
.highlight-service,
.pests-covered,
.service-navigation {
  padding: 100px 0;
}

.section-heading h2 {
  margin: 15px 0;
}

.section-heading p {
  text-transform: uppercase !important;
}

.feature-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
  height: 100%;
  transition: .4s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 45px;
  color: var(--green-deep);
  margin-bottom: 20px;
}

/* ==========================
ABOUT SERVICE
========================== */

.service-about {
  padding: 100px 0;
  background: var(--gray-bg);
}

/* IMAGE */

.about-image-wrap {
  position: relative;
}

.main-about-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  transition: .4s ease;
}

.about-image-wrap:hover .main-about-img {
  transform: scale(1.02);
}

/* EXPERIENCE BADGE */

.experience-badge {
  position: absolute;
  bottom: 45px;
  right: -20px;

  background: var(--brand);

  color: #fff;

  padding: 20px 25px;

  border-radius: 18px;

  text-align: center;

  box-shadow: var(--shadow-card);
}

.experience-badge h3 {
  color: #fff;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.experience-badge span {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* FEATURES */

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  background: #fff;

  padding: 22px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

  transition: .35s ease;
}

.about-feature:hover {
  transform: translateX(10px);

  box-shadow:
    0 15px 35px rgba(31, 94, 69, .12);
}

/* ICON */

.feature-icon {
  width: 60px;
  height: 60px;

  min-width: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(120, 200, 80, .15);

  color: var(--brand);

  font-size: 22px;

  transition: .35s ease;
}

.about-feature:hover .feature-icon {
  background: var(--brand);
  color: #fff;
}

/* TEXT */

.about-feature h5 {
  margin-bottom: 8px;
  font-weight: 700;
}

.about-feature p {
  margin: 0;
  line-height: 1.7;
}

/* MOBILE */

@media(max-width:991px) {

  .experience-badge {
    right: 15px;
    bottom: 15px;
  }

  .section-heading {
    text-align: center;
  }
}

@media(max-width:576px) {

  .about-feature {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: auto;
  }
}

/* ===================================
WHY CHOOSE US - PREMIUM PARALLAX
=================================== */

.why-fixed {
  position: relative;
  padding: 120px 0;
  background: url(../img/image-4/service-img-3.jpg) center center/cover fixed;
  overflow: hidden;
}

.why-fixed .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 2, 1, 0.699),
      rgba(26, 78, 57, 0.74));
}

.why-subtitle {
  display: inline-block;
  color: var(--green-lime);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 14px;
}

.why-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-desc {
  color: rgba(255, 255, 255, .75);
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
}

/* Cards */

.why-card {
  height: 100%;
  padding: 35px 30px;
  text-align: center;

  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, .12);

  border-radius: 20px;

  transition: .4s ease;

  position: relative;

  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--green-lime);
  transform: scaleX(0);
  transition: .4s;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, .12);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: auto auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(120, 200, 80, .15);

  border: 1px solid rgba(120, 200, 80, .4);

  color: var(--green-lime);

  font-size: 32px;

  transition: .4s;
}

.why-card:hover .why-icon {
  transform: rotateY(180deg);
}

.why-card h5 {
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-card p {
  color: rgba(255, 255, 255, .70);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Responsive */

@media(max-width:991px) {

  .why-fixed {
    background-attachment: scroll;
    padding: 90px 0;
  }

  .why-title {
    font-size: 38px;
  }
}

@media(max-width:767px) {

  .why-title {
    font-size: 30px;
  }

  .why-card {
    padding: 25px;
  }

  .why-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }
}

/* .highlight-service {
  background: var(--cream);
} */

.service-label {
  color: var(--orange);
  font-family: "Geneva";
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
}

.pest-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.pest-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pest-item {
  background: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-card);

  display: flex;
  align-items: center;
  gap: 10px;

  transition: .3s ease;
}

.pest-item i {
  color: var(--green-lime);
  font-size: 14px;
}

.pest-item:hover {
  transform: translateY(-3px);
}

.service-navigation {
  background: var(--gray-bg);
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.service-buttons a {
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  background: #fff;
  color: var(--brand);
  font-weight: 600;
  box-shadow: var(--shadow-card);
  transition: .3s;
}

.service-buttons a:hover {
  background: var(--green-deep);
  color: #fff;
  transform: translateY(-4px);
}

.service-cta {
  padding: 80px 0;
  background: var(--brand);
}

.service-cta h2 {
  color: #fff;
  padding-bottom: 8px;
}

.service-cta p {
  color: rgba(255, 255, 255, .8);
}

.cta-btn {
  display: inline-block;
  background: var(--green-lime);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
}

@media(max-width:768px) {

  .service-hero {
    padding: 90px 0 70px;
    text-align: center;
  }

  .service-hero h1 {
    font-size: 42px;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .service-buttons a {
    width: 100%;
    text-align: center;
  }
}



/* PESTS */
.pests-section {
  background: var(--cream);
  padding: 80px 0;
}

.pest-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid #dde5d8;
  border-radius: 40px;
  padding: 10px 20px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: background .2s, border-color .2s, color .2s;
  margin: 6px;
  white-space: nowrap;
  cursor: default;
}

.pest-chip:hover {
  background: var(--green-lime);
  border-color: var(--green-deep);
  color: var(--charcoal);
}

.pest-chip .dot {
  width: 8px;
  height: 8px;
  background: var(--green-lime);
  border-radius: 50%;
  flex-shrink: 0;
}