:root{
  --green:#0b5d3b;
  --yellow:#f9b233;
}
a{ color:#0a5234; text-decoration:none;}
a:hover{color:#fff;}
/* TOP BAR */
.top-bar{
  background:var(--green);
  color:#fff;
  font-size:14px;
}
.top-bar a{
  color:#fff;
  text-decoration:none;
  margin-left:15px;
}

/* NAVBAR */
.navbar{
  background:linear-gradient(90deg, #0b5d3b, #1b7a4d);
}
.navbar-nav .nav-link{
  color:#fff !important;
  font-weight:500;
  margin:0 10px;
}
.navbar-nav .nav-link:hover{
  color:var(--yellow) !important;
}
:root {
  --green-dark: #0b5d3b;
  --green-light: #1f8f5f;
  --gold: #f2b705;
  --gold-light: #ffd45c;
  --white: #ffffff;
  --text-dark: #1a1a1a;
}

.hero-section {
  background: linear-gradient(135deg, #f2b705, #ffd45c);
  padding: 70px 0;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.hero-left h1 {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  margin-bottom: 25px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hero-points li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.hero-points li::before {
  content: "✔";
  color: var(--green-dark);
  position: absolute;
  left: 0;
}
/* MOBILE VIEW */
@media (max-width: 768px) {

  .hero-section {
    padding: 40px 0;
  }

  .hero-container {
    width: 95%;
    grid-template-columns: 1fr; /* stack left & right */
    gap: 30px;
    text-align: center;
  }

  /* LEFT CONTENT */
  .hero-left h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .hero-points {
    margin-bottom: 25px;
  }

  .hero-points li {
    font-size: 15px;
    text-align: left; /* keeps bullets readable */
    padding-left: 28px;
    margin-bottom: 12px;
  }

  .hero-points li::before {
    left: 0;
    top: 2px;
    font-size: 14px;
  }

}
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 24px;
  }

  .hero-points li {
    font-size: 14px;
  }
}

.call-btn {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
/* FORM CONTAINER */
.hero-form {
  background: #fff8e6;
  border-radius: 16px;
  padding: 18px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 0 0 2px #f2d07a;
  position: relative;
}

/* GREEN FORM HEADER */
.hero-form h3 {
  background: linear-gradient(135deg, #0b5d3b, #147d53);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 14px 10px;
  border-radius: 12px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 15px rgba(11, 93, 59, 0.35);
}

/* FORM WRAPPER */
.hero-form form {
  padding: 8px;
}

/* INPUT FIELDS */
.hero-form input {
  width: 100%;
  height: 46px;
  border-radius: 25px;
  border: 1px solid #e1c468;
  padding: 0 18px;
  font-size: 14px;
  margin-bottom: 12px;
  background: #ffffff;
  color: #333;
  box-shadow:
    inset 0 2px 5px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

/* INPUT PLACEHOLDER */
.hero-form input::placeholder {
  color: #888;
  font-weight: 500;
}

/* INPUT FOCUS */
.hero-form input:focus {
  outline: none;
  border-color: #0b5d3b;
  box-shadow:
    0 0 0 2px rgba(11,93,59,0.15),
    inset 0 2px 5px rgba(0,0,0,0.08);
}

/* SUBMIT BUTTON */
.hero-form button {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  background: linear-gradient(135deg, #0b5d3b, #1f8f5f);
  border: none;
  border-radius: 26px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow:
    0 8px 20px rgba(11,93,59,0.4);
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.hero-form button:hover {
  background: linear-gradient(135deg, #147d53, #0b5d3b);
  transform: translateY(-1px);
  box-shadow:
    0 12px 25px rgba(11,93,59,0.5);
}

/* BUTTON ACTIVE */
.hero-form button:active {
  transform: translateY(0);
  box-shadow:
    0 6px 15px rgba(11,93,59,0.35);
}
.features-section {
  background: #ffffff;
  padding: 50px 0;
}

.features-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px #eeeeee;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12);
}

.feature-card img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b5d3b;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #333333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .features-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}
.reviews-section {
  background: linear-gradient(135deg, #0b5d3b, #f2b705);
  padding: 60px 0;
}

.reviews-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 120px 20px 20px 120px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

/* IMAGE */
.reviews-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENT */
.reviews-content {
  padding: 40px 45px;
}

.reviews-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0b5d3b;
  margin-bottom: 18px;
  line-height: 1.3;
}

.reviews-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .reviews-container {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .reviews-content {
    padding: 30px;
  }

  .reviews-content h2 {
    font-size: 24px;
  }
}
.cta-stats-section {
  font-family: Arial, sans-serif;
}

/* CTA BAR */
.cta-bar {
  background: linear-gradient(135deg, #0b5d3b, #f2b705);
  text-align: center;
  padding: 55px 20px 70px;
  color: #ffffff;
  position: relative;
}

.cta-bar h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-bar p {
  font-size: 15px;
  margin-bottom: 20px;
}

.cta-btn {
  background: #0b5d3b;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* STATS STRIP */
.stats-strip {
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  margin-top: -45px;
  padding: 50px 20px;
  text-align: center;
  border-radius: 60px 60px 0 0;
}

.stats-strip h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0b5d3b;
  margin-bottom: 40px;
}

.stats-strip h3 span {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  align-items: center;
}

/* CIRCLES */
.stat-circle {
  width: 160px;
  height: 160px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b5d3b, #1f8f5f);
  color: #ffffff;
  box-shadow: inset 0 0 0 6px #f2b705;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
}

.stat-circle p {
  font-size: 13px;
}

/* CENTER */
.stat-center img {
  width: 70px;
  margin-bottom: 8px;
}

.stat-center p {
  font-weight: 700;
  color: #333;
}

.stars {
  color: #f2b705;
  font-size: 20px;
  letter-spacing: 3px;
}

/* INTRO CONTENT */
.intro-content {
  background: #ffffff;
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.intro-content h3 {
  font-size: 26px;
  color: #0b5d3b;
  font-weight: 800;
  margin-bottom: 25px;
}

.intro-content ul {
  list-style: none;
  padding: 0;
}

.intro-content li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333;
}

.intro-content li::before {
  content: "✔";
  color: #6abf4b;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-circle {
    margin-bottom: 20px;
  }
}
.site-footer {
  background: linear-gradient(135deg, #0b5d3b, #083d28);
  color: #ffffff;
  font-family: Arial, sans-serif;
}

/* FOOTER GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* FOOTER BOX */
.footer-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: #f2b705;
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* LINKS */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #f2b705;
  padding-left: 5px;
}

/* CONTACT LINKS */
.footer-box a {
  color: #ffffff;
  text-decoration: none;
}

.footer-box a:hover {
  color: #f2b705;
}

/* BOTTOM */
.footer-bottom {
  background: #052b1c;
  text-align: center;
  padding: 15px 20px;
  font-size: 13px;
  color: #cccccc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ==============================
   WHY CHOOSE
============================== */
.why-choose {
  background: #ffffff;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
  font-size: 16px;
}

.features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f2b705;
  font-weight: bold;
}

/* ==============================
   KEY FEATURES
============================== */
.key-features {
  background: linear-gradient(135deg, #f8faf9, #ffffff);
}

.feature-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.feature-block:hover {
  transform: translateY(-6px);
}

.feature-block ul {
  padding-left: 20px;
}

.feature-block ul li {
  margin-bottom: 10px;
}

/* ==============================
   BEST IN BUSINESS
============================== */
.best-business {
  background: linear-gradient(135deg, #0b5d3b, #083d28);
  color: #ffffff; padding:30px 0 30px 0;
}

.best-business h2 {
  color: #f2b705;
}

.highlight-points {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.highlight-points li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
}

.highlight-points li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #f2b705;
}

/* ==============================
   HOW IT WORKS
============================== */
.how-it-works {
  background: #ffffff;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  background: #f8faf9;
  padding: 20px 20px 20px 60px;
  border-radius: 12px;
  margin-bottom: 15px;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #0b5d3b;
  color: #ffffff;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
}

/* ==============================
   MISSION & VISION
============================== */
.mission-vision {
  background: linear-gradient(135deg, #fefefe, #f4f6f5);
}

.mission-vision .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission,
.vision {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ==============================
   CITIES
============================== */
.cities {
  background: #ffffff;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.city-list li {
  background: #f8faf9;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  color: #0b5d3b;
  transition: 0.3s;
}

.city-list li:hover {
  background: #0b5d3b;
  color: #ffffff;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 992px) {
  .highlight-points {
    grid-template-columns: 1fr;
  }

  .mission-vision .container {
    grid-template-columns: 1fr;
  }

  .city-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 28px;
  }

  .container {
    padding: 40px 15px;
  }

  .city-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==============================
   STICKY CALL & WHATSAPP
============================== */
.sticky-buttons {
  position: fixed;
  right: 20px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* COMMON BUTTON */
.sticky-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  position: relative;
}

/* ICON CENTER FIX */
.sticky-btn i {
  line-height: 1;
}

/* LABEL */
.sticky-btn span {
  position: absolute;
  right: 65px;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s;
}

/* SHOW LABEL */
.sticky-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* WHATSAPP */
.sticky-btn.whatsapp {
  background: #25D366;
}

/* CALL */
.sticky-btn.call {
  background: #0b5d3b;
}

/* HOVER */
.sticky-btn:hover {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 600px) {
  .sticky-btn span {
    display: none;
  }
}
 /* Square thumbnail wrapper */
    .thumb {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1; /* force square */
      overflow: hidden;
      cursor: pointer;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* crops portrait/vertical images nicely */
      transition: transform 0.3s ease;
    }

    .thumb:hover img {
      transform: scale(1.08);
    }

    /* Lightbox image zoom */
    .lightbox-img {
      max-width: 100%;
      max-height: 80vh;
      transition: transform 0.3s ease;
      cursor: zoom-in;
    }

    .lightbox-img.zoomed {
      transform: scale(1.6);
      cursor: zoom-out;
    }
.text-justify{text-align:justify;}
/* Parent container (wrap all .vs-column divs inside it) */
.vs-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Individual column */
.vs-column {
  border: 1px solid #e5e5e5;
  padding: 15px;
  text-align: center;
  background: #fff;
}

/* Image responsive */
.vs-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text */
.vs-text p {
  font-size: 16px;
  line-height: 1.6;
}

/* Button */
.vs-button-wrap {
  margin-top: 10px;
}

.vs-button {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Tablet */
@media (max-width: 1023px) {
  .vs-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .vs-container {
    grid-template-columns: 1fr;
  }
}