:root {
  /* Core palette */
  --primary: #2E6B2A;
  --deep: #1E1E1E;
  --secondary: #4E9B4A;
  --secondary-hover: #4f47e6;
  --accent: #00D4FF;
  --surface: #F6F9FC;
  --surface-low: #EEF3F8;
  --surface-card: #FFFFFF;
  --on-surface: #1A1F36;
  --on-surface-variant: #5A6478;
  --outline: #E6EBF1;
  --success: #2C694E;
  --success-light: #1ec885;
  --danger: #BA1A1A;
  --warning: #E0A100;

  /* Dark navy surfaces (used for hero cards / dark panels) */
  --navy: #0A2540;
  --navy-deep: #061a30;

  /* Typography */
  --font-display: 'Manrope', sans-serif;
  --font-body: "Roboto", sans-serif;
  ;

  /* Spacing & radius */
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  /* Elevation (ambient, tinted) */
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 8px 32px rgba(31, 38, 135, 0.07);
  --shadow-lg: 0 16px 48px rgba(10, 37, 64, 0.10);

  /* Layout */
  --max-width: 1200px;
  --header-height: 76px;

  --nav-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-duration: 0.35s;
}

.heading::before {
  content: "";
  position: absolute;
  bottom: -0.7vw;
  left: 46%;
  width: 7%;
  height: 0.2vw;
  background-color: var(--ej-primary);
}

.bnr-bg {
  background-image: url('../images/intro.jpg');
  background-size: cover;
  /* fill the area, cropping as needed */
  background-position: center;
  /* keep the focal point centered */
  background-repeat: no-repeat;
  /* don't tile it */
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body) !important;
  overflow-x: hidden !important;
}

html {

  overflow-x: hidden !important;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin-bottom: 0;
  margin-top: 0;
}

/* ===================== TOP BAR MARQUEE (topbar-* = unique, no overlap) ===================== */
.topbar-section {
  background: linear-gradient(135deg, #2E6B2A, #4E9B4A);
  color: #fff;
  overflow: hidden;
  /* hides the off-screen part of the track */
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
}

/* The moving track holds two identical groups side by side */
.topbar-track {
  display: inline-flex;
  width: max-content;
  animation: topbarScroll 28s linear infinite;
}

.topbar-section:hover .topbar-track {
  animation-play-state: paused;
}

/* Each group is one full set of messages */
.topbar-group {
  display: inline-flex;
  align-items: center;
}

/* Individual message */
.topbar-group span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

/* Small divider dot between messages */
.topbar-group span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.topbar-group span i {
  font-size: 13px;
  opacity: 0.9;
}

.topbar-group a {
  color: #fff;
  transition: opacity 0.3s ease;
}

.topbar-group a:hover {
  opacity: 0.8;
}

.navbar.sticky-top {
  transition: box-shadow 0.3s ease;
}

.navbar.sticky-top.is-stuck {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Move exactly one group's width to the left, then loop seamlessly */
@keyframes topbarScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Slightly faster on small screens so it doesn't feel slow */
@media (max-width: 575.98px) {
  .topbar-track {
    animation-duration: 20s;
  }

  .topbar-group span {
    padding: 0 18px;
    font-size: 13px;
  }
}

.navbar-brand img {
  width: 60%;
}

.navbar {
  background: #e4fff3;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(10, 37, 64, .08);
}

.offcanvas .nav-link {
  color: #000000 !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Active Link */
.offcanvas .nav-link.active {
  color: #2E6B2A !important;
  font-weight: 600;
}

/* Hover Effect */
.offcanvas .nav-link:hover {
  color: #2E6B2A !important;
  padding-left: 8px;
}


.book-service-btn {
  background: linear-gradient(135deg, #4E9B4A, #2E6B2A);
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 12px 28px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 8px 20px rgba(46, 107, 42, 0.25);
  transition: all 0.3s ease !important;
}

.book-service-btn:hover {
  background: linear-gradient(135deg, #2E6B2A, #1F4D1B);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(46, 107, 42, 0.35);
}

.book-service-btn:focus,
.book-service-btn:active {
  color: #fff;
  outline: none;
}

.hero-banner {
  position: relative;
  min-height: 750px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.78) 30%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.30) 100%);
}

/* Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  max-width: 650px;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-badge i {
  color: #4E9B4A;
  font-size: 10px;
}

/* Heading */
.hero-content h1 {
  color: #fff;
  font-size: 72px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 25px;
}


.section-title span {
  background: linear-gradient(135deg, #A8FF78, #78D64B, #2E6B2A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: 0 0 20px rgba(126, 217, 87, 0.3);
}

.hero-content h1 span{
  color: #72b647;
}





/* Description */
.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg,
      #4E9B4A,
      #2E6B2A);
  color: #fff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(78, 155, 74, .35);
}

.hero-btn:hover {
  background: linear-gradient(135deg,
      #2E6B2A,
      #1F4D1B);
  color: #fff;
  transform: translateY(-3px);
}

/* Floating Service Cards */
.services-overlap {
  position: relative;
  margin-top: -100px;
  z-index: 10;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
  border-bottom: 4px solid #4E9B4A;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.icon-box {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6DBF5E, #2E6B2A);
  color: #fff;
  font-size: 28px;
}

.service-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Center Featured Card */
.featured {
  background: linear-gradient(135deg, #2E6B2A, #4E9B4A);
  transform: translateY(-20px);
  border: none;
}

.featured .icon-box {
  background: #fff;
  color: #2E6B2A;
}

.featured h4,
.featured p {
  color: #fff;
}

.featured:hover {
  transform: translateY(-28px);
}



.why-choose {
  background: #fff;
}

.section-tag {
  color: #4E9B4A;
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #1d1d1d;
  margin-bottom: 20px;
}

.section-desc {
  color: #6c757d;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.feature-box {
  display: flex;
  gap: 15px;
}

.feature-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(78, 155, 74, .12);
  color: #4E9B4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-box h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.feature-box p {
  margin: 0;
  color: #6c757d;
  line-height: 1.7;
}

.why-bottom {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 25px;
}

.choose-btn {
  background: linear-gradient(135deg, #2E6B2A, #4E9B4A);
  color: #fff;
  padding: 14px 34px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.choose-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

.experience-box span {
  font-size: 32px;
  font-weight: 700;
  color: #2E6B2A;
}

.experience-box p {
  margin: 0;
  color: #666;
}

.image-wrapper {
  position: relative;
  padding: 30px;
}

.green-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  background: #4E9B4A;
  border-radius: 20px;
}

.image-wrapper img {
  position: relative;
  width: 100%;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.experience-card {
  position: absolute;
  bottom: 0;
  left: 40px;
  background: #fff;
  padding: 20px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  z-index: 3;
}

.experience-card span {
  font-size: 48px;
  font-weight: 700;
  color: #4E9B4A;
  line-height: 1;
}

.experience-card p {
  margin: 0;
  color: #666;
  font-weight: 500;
}

.why-choose {
  background: #fff;
}

.section-tag {
  color: #4E9B4A;
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: #1d1d1d;
  margin-bottom: 20px;
}

.section-desc {
  color: #6c757d;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.feature-box {
  display: flex;
  gap: 15px;
}

.feature-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(78, 155, 74, .12);
  color: #4E9B4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-box h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.feature-box p {
  margin: 0;
  color: #6c757d;
  line-height: 1.7;
}

.why-bottom {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 25px;
}

.choose-btn {
  background: linear-gradient(135deg, #2E6B2A, #4E9B4A);
  color: #fff;
  padding: 14px 34px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.choose-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

.experience-box span {
  font-size: 32px;
  font-weight: 700;
  color: #2E6B2A;
}

.experience-box p {
  margin: 0;
  color: #666;
}

.image-wrapper {
  position: relative;
  padding: 30px;
}

.green-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  background: #4E9B4A;
  border-radius: 20px;
}

.image-wrapper img {
  position: relative;
  width: 100%;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.experience-card {
  position: absolute;
  bottom: 0;
  left: 40px;
  background: #fff;
  padding: 20px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  z-index: 3;
}

.experience-card span {
  font-size: 48px;
  font-weight: 700;
  color: #4E9B4A;
  line-height: 1;
}

.experience-card p {
  margin: 0;
  color: #666;
  font-weight: 500;
}


.care-box-main {
  padding: 16px 16px 0 16px;
}

.care-box {
  cursor: pointer;
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  /* FIX: anchor image to card bottom */
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: .4s ease;
}

.care-box:hover {
  transform: translateY(-8px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #edf7ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E6B2A;
  font-size: 24px;
}

.service-number {
  font-size: 30px;
  font-weight: 700;
  color: #2E6B2A;
}

.care-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.care-box p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}

.care-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  /* FIX: flush bottom; .care-box clips the corners */
  margin-top: auto;
  border: 1px solid #93f993;
  /* now works (parent is flex) -> pins image to bottom */
}

.card-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2E6B2A, #4E9B4A);
  color: #fff;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: .45s ease;
}

.card-hover h4 {
  color: #fff;
  margin-bottom: 20px;
}

.card-hover p {
  color: #fff;
  line-height: 1.8;
}

.care-box:hover .card-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-section {
  background: #ebffeb;
}


.counter-section {
  padding: 50px 0;
  background: linear-gradient(135deg,
      #1c4d1a 0%,
      #2E6B2A 35%,
      #4E9B4A 70%,
      #6CC56A 100%);
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -250px;
  left: -150px;
}

.counter-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -180px;
  right: -120px;
}

.counter-wrap {
  position: relative;
  z-index: 2;
}

.counter-item {
  text-align: center;
  padding: 35px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: .4s ease;
  height: 100%;
}

.counter-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
}

.counter-item h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1;
}

.counter-item p {
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}


/* ===================== GALLERY SECTION (gallery-* = unique, no overlap) ===================== */
.gallery-section {
  background: #f4fbf4;
}

/* --- Tab switcher --- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #2E6B2A;
  background: #fff;
  border: 2px solid #cdebcd;
  transition: all 0.3s ease;
}

.gallery-tab i {
  font-size: 14px;
}

.gallery-tab:hover {
  border-color: #4E9B4A;
  transform: translateY(-2px);
}

.gallery-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #4E9B4A, #2E6B2A);
  box-shadow: 0 8px 20px rgba(46, 107, 42, 0.25);
}

/* --- Panels (only the active one shows) --- */
.gallery-panel {
  display: none;
}

.gallery-panel.is-active {
  display: block;
  animation: galleryFade 0.4s ease;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

/* --- Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- Cards (photo + video share the look) --- */
.gallery-item,
.gallery-video {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.gallery-item img,
.gallery-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover,
.gallery-video:hover {
  transform: translateY(-8px);
}

.gallery-item:hover img,
.gallery-video:hover img {
  transform: scale(1.08);
}

/* Photo hover overlay */
.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: rgba(46, 107, 42, 0.45);
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

/* Video tint + play button */
.gallery-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  color: #2E6B2A;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.gallery-video:hover .gallery-play {
  transform: translate(-50%, -50%) scale(1.12);
  color: #fff;
  background: linear-gradient(135deg, #4E9B4A, #2E6B2A);
}

/* --- Lightbox --- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.9);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lb-stage {
  max-width: 1000px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lb-stage img,
.gallery-lb-stage video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  display: block;
}

.gallery-lb-close {
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.gallery-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 30px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-lb-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-lb-prev {
  left: 24px;
}

.gallery-lb-next {
  right: 24px;
}




/* ===================== TESTIMONIAL SECTION (testi-* = unique, no overlap) ===================== */
.testi-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  /* REPLACE testi-bg.jpg with your themed background image */
  background: #e9f7e9 url('../images/testi-bg.jpg') center/cover no-repeat;
}

/* Theme-green wash: strong on the left (card readability), fades right so the bg shows */
.testi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(233, 247, 233, 0.97) 0%,
      rgba(233, 247, 233, 0.85) 38%,
      rgba(233, 247, 233, 0.30) 70%,
      rgba(233, 247, 233, 0) 100%);
}

.testi-section .container {
  position: relative;
  z-index: 2;
}

/* Card */
.testi-card {
  background: #fff;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.12);
  border-bottom: 4px solid #4E9B4A;
}

.testi-quote-icon {
  display: block;
  font-size: 34px;
  color: #4E9B4A;
  opacity: 0.25;
  margin-bottom: 14px;
}

.testi-text {
  color: #333;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 26px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4E9B4A;
  flex-shrink: 0;
}

.testi-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #1b1b1b;
}

.testi-role {
  font-size: 14px;
  color: #4E9B4A;
  font-weight: 600;
}

/* --- Owl nav + dots (scoped to .review-slider so other sliders aren't affected) --- */
.review-slider .owl-nav {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.review-slider .owl-nav button.owl-prev,
.review-slider .owl-nav button.owl-next {
  width: 46px;
  height: 46px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  color: #2E6B2A !important;
  background: #fff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.review-slider .owl-nav button.owl-prev:hover,
.review-slider .owl-nav button.owl-next:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #4E9B4A, #2E6B2A) !important;
}

.review-slider .owl-dots {
  margin-top: 18px;
  display: flex;
  gap: 8px;
}

.review-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0;
  background: #cdebcd;
  border-radius: 50%;
  transition: 0.3s ease;
}

.review-slider .owl-dots .owl-dot.active span {
  width: 26px;
  border-radius: 6px;
  background: #2E6B2A;
}

/* ===================== CONTACT SECTION (contact-* = unique, no overlap) ===================== */
.contact-section {
  background: #f4fbf4;
}

.contact-info {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
  border-bottom: 4px solid #4E9B4A;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #eef3ee;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, #4E9B4A, #2E6B2A);
  box-shadow: 0 8px 18px rgba(46, 107, 42, 0.25);
}

.contact-item h5 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1b1b1b;
}

.contact-item p {
  margin: 0;
  color: #666;
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-item a {
  color: #666;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #2E6B2A;
}

/* Map */
.contact-map {
  height: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ===================== FAQ SECTION (faq-* = unique, no overlap) ===================== */
.faq-section {
  background: #fff;
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #f4fbf4;
  border: 1px solid #e0f0e0;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.is-open {
  border-color: #4E9B4A;
  box-shadow: 0 12px 30px rgba(46, 107, 42, 0.12);
}

/* Question row (the clickable button) */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #1b1b1b;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item.is-open .faq-question {
  color: #2E6B2A;
}

/* Circle chevron icon */
.faq-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: #2E6B2A;
  background: #fff;
  border: 1px solid #cdebcd;
  transition: 0.35s ease;
}

.faq-item.is-open .faq-icon {
  color: #fff;
  background: linear-gradient(135deg, #4E9B4A, #2E6B2A);
  border-color: transparent;
  transform: rotate(180deg);
}

/* Answer: animated open/close via max-height */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: #5a6478;
  font-size: 16px;
  line-height: 1.8;
}

/* ===================== FINAL CTA SECTION (cta-* = unique, no overlap) ===================== */
.cta-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  /* REPLACE cta-bg.jpg with your background image */
  background: #0f3d12 url('../images/cta-bg.jpg') center/cover no-repeat;
}

/* Green-tinted dark overlay so text stays readable on any background */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(15, 45, 18, 0.92) 0%,
      rgba(30, 77, 27, 0.82) 45%,
      rgba(46, 107, 42, 0.55) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cta-title {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cta-title span {
  background: linear-gradient(135deg, #A8FF78, #78D64B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Feature highlights */
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 38px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 40%;
}

.cta-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-feature h6 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.cta-feature p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Buttons */
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #4E9B4A, #2E6B2A);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.cta-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.cta-btn-whatsapp {
  color: #fff;
  background: #25D366;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.3);
}

.cta-btn-whatsapp:hover {
  color: #fff;
  background: #1ebe5b;
  transform: translateY(-3px);
}



/* ===================== FOOTER (footer-* = unique, no overlap) ===================== */
.footer-section {
  background: #1b3a1b;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}

/* Brand column */
.footer-logo {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}

.footer-logo span {
  color: #6CC56A;
}

.footer-tagline {
  font-size: 15px;
  font-weight: 600;
  color: #6CC56A;
  margin-bottom: 4px;
  margin-top: 15px;
}

.footer-about {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #4E9B4A, #2E6B2A);
  border-color: transparent;
  transform: translateY(-3px);
  color: #fff !important;
}

/* Column headings */
.footer-heading {
  font-size: 19px;
  font-weight: 700;
  color: #6CC56A;
  margin-bottom: 22px;
}

/* Link lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact li i {
  color: #6CC56A;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease;
}

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

/* Bottom bar: single centered line */
.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom p a {
  text-decoration: none;
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* ===================== PAGE BANNER (pagebanner-* = unique, no overlap) ===================== */
.pagebanner-section {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  text-align: center;
  /* REPLACE contact-banner.jpg with your image */
  background: #0f3d12 url('../images/contact-banner.jpg') center/cover no-repeat;
}

/* Green-tinted dark overlay so text stays readable */
.pagebanner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(137 248 148 / 90%) 0%, rgba(30, 77, 27, 0.78) 50%, rgba(46, 107, 42, 0.60) 100%);
}

.pagebanner-content {
  position: relative;
  z-index: 2;
}

.pagebanner-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.pagebanner-title span {
  background: linear-gradient(135deg, #A8FF78, #78D64B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Breadcrumb */
.pagebanner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.pagebanner-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.pagebanner-breadcrumb a:hover {
  color: #6CC56A;
}

.pagebanner-breadcrumb i {
  font-size: 12px;
  color: #6CC56A;
}

.pagebanner-breadcrumb span {
  color: #6CC56A;
}




























































/* Force the offcanvas to render inline on desktop, like a normal navbar */
@media (min-width: 992px) {
  #mobileMenu.offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }

  #mobileMenu .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
  }

  .custom-toggler {
    display: none;
  }

  /* hide hamburger on desktop */
}



.custom-toggler,
.custom-toggler:hover,
.custom-toggler:focus,
.custom-toggler:active {
  border: none;
  /* removes the gray box outline */
  box-shadow: none;
  /* removes the focus ring Bootstrap adds on click/tap */
  outline: none;
  /* removes the browser's default outline */
}


.custom-toggler:focus-visible {
  outline: 2px solid #0d6efd;
  outline-offset: 3px;
  border-radius: 6px;
}


.custom-toggler {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1060;
}

.custom-toggler:focus {
  box-shadow: none;
  outline: none;
}

.custom-toggler:focus-visible {
  outline: 2px solid #0d6efd;
  outline-offset: 3px;
  border-radius: 6px;
}

.custom-toggler .toggler-bar {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition:
    transform var(--nav-duration) var(--nav-ease),
    opacity var(--nav-duration) var(--nav-ease),
    top var(--nav-duration) var(--nav-ease);
}

.custom-toggler .toggler-bar:nth-child(1) {
  top: 13px;
}

.custom-toggler .toggler-bar:nth-child(2) {
  top: 19px;
}

.custom-toggler .toggler-bar:nth-child(3) {
  top: 25px;
}

/* OPEN state (X) — driven by JS-added `.is-open` */
.custom-toggler.is-open .toggler-bar:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.custom-toggler.is-open .toggler-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.custom-toggler.is-open .toggler-bar:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}


@media (max-width: 991.98px) {

  .contact-info {
    padding: 30px;
  }

  .contact-map {
    min-height: 320px;
    margin-top: 8px;
  }


  /* FIX (mobile menu slide bug):
         The navbar's `backdrop-filter` made .navbar the containing block for the
         position:fixed offcanvas, trapping the drawer inside the navbar box so it
         couldn't slide in from the right. Neutralizing it on mobile re-anchors the
         offcanvas to the viewport. No visual change — the navbar bg is solid. */
  .navbar {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  #mobileMenu.offcanvas-end {
    width: min(320px, 85vw);
    transition: transform var(--nav-duration) var(--nav-ease);
  }

  #mobileMenu .nav-item,
  #mobileMenu .d-flex {
    opacity: 0;
    transform: translateX(18px);
    transition:
      opacity var(--nav-duration) var(--nav-ease),
      transform var(--nav-duration) var(--nav-ease);
  }

  #mobileMenu.items-in .nav-item,
  #mobileMenu.items-in .d-flex {
    opacity: 1;
    transform: translateX(0);
  }

  #mobileMenu.items-in .nav-item:nth-child(1) {
    transition-delay: 0.10s;
  }

  #mobileMenu.items-in .nav-item:nth-child(2) {
    transition-delay: 0.15s;
  }

  #mobileMenu.items-in .nav-item:nth-child(3) {
    transition-delay: 0.20s;
  }

  #mobileMenu.items-in .nav-item:nth-child(4) {
    transition-delay: 0.25s;
  }

  #mobileMenu.items-in .nav-item:nth-child(5) {
    transition-delay: 0.30s;
  }

  #mobileMenu.items-in .d-flex {
    transition-delay: 0.35s;
  }
}


@media (prefers-reduced-motion: reduce) {

  .custom-toggler .toggler-bar,
  #mobileMenu,
  #mobileMenu .nav-item,
  #mobileMenu .d-flex {
    transition: none !important;
  }
}

/* Mobile */
@media(max-width:768px) {
  .pagebanner-section {
    padding: 70px 0 55px;
  }

  .pagebanner-title {
    font-size: 36px;
  }

  .cta-feature {
    width: 100%;
  }

  .featured {
    transform: translateY(0px);
  }

  .section-title {
    font-size: 30px;
  }

  .footer-section {
    padding-top: 50px;
  }

  .footer-heading {
    margin-bottom: 16px;
  }

  .cta-section {
    padding: 60px 0;
    text-align: center;
  }

  .cta-title {
    font-size: 34px;
  }

  .cta-features {
    justify-content: center;
  }

  .cta-feature {
    justify-content: center;
    text-align: left;
  }

  .cta-btns {
    justify-content: center;
  }

  .hero-banner,
  .hero-img {
    height: 650px;
    min-height: auto;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 575px) {
  .hero-content {
    position: absolute;
    top: 40%;
  }

  .section-title {
    font-size: 25px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h1,
  .hero-content p {
    margin-bottom: 10px;
  }

  .hero-btn {
    padding: 11px 21px;
    font-size: 13px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 18px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-lb-nav {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .gallery-lb-close {
    top: 14px;
    right: 18px;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 34px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}