:root {
  --black: #0b0b0b;
  --white: #ffffff;
  --muted: #cfcfcf;
  --border: #e6e6e6;
  --navText: #2f2f2f;
  --navHover: #3a7d3e;
  --text: #202425;
  --gold: #b48a4a;
  --bg: #ffffff;
  --field: #f5f6f7;
  --line: rgba(255, 255, 255, 0.18);
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 14px;
}

/* =========================
   TOP BAR
========================= */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 15px;
}

.topbar-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar .center {
  justify-content: center;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.topbar i {
  color: #fff;
  opacity: 0.9;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

/* .topbar .divider { position: relative; } */

.topbar .divider:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}


.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.top-item-center {
  flex: 1;
  justify-content: center;
  text-align: center;
}

.top-item-end {
  justify-content: flex-end;
  text-align: right;
}

/* =========================
   MAIN HEADER
========================= */
.mainheader {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.mainheader .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 10px;
}

/* LOGO */
.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 110px;
  height: auto;
  display: block;
}

/* =========================
   NAV (WORKING MULTI-LEVEL)
   HTML: nav.nav > ul.menu > li > ul.submenu (level 1)
         ul.submenu > li.has-dropdown > ul.submenu (level 2)
========================= */
.nav {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
}

.nav-toggle,
.submenu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  background: #f2f6f1;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #18311f;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.menu>li {
  position: relative;
}

.menu>li.has-dropdown {
  display: flex;
  align-items: stretch;
}

.menu a {
  text-decoration: none;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  line-height: 1;
  white-space: nowrap;
  transition: 0.2s ease;
}

.menu>li.has-dropdown>a {
  padding-right: 10px;
}

/* active */
.menu a.active {
  background: #2f3136;
  color: #fff;
}

/* hover top-level */
.menu>li.has-dropdown>a:hover,
.menu>li.has-nodropdown>a:hover {
  background: #3a7d3e;
  color: #fff;
}

/* ---------- SUBMENU (LEVEL 1 + LEVEL 2 COMMON) ---------- */
.menu li>.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: #000;
  margin: 0;
  padding: 0px 0;
  display: none;
  z-index: 99999;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
}

/* show level 1 */
.menu>li.has-dropdown:hover>.submenu {
  display: block;
}

/* submenu item wrapper */
.menu li>.submenu>li {
  position: relative;
  /* needed for flyout positioning */
}

/* submenu link */
.menu li>.submenu>li>a {
  color: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.menu li>.submenu>li:last-child>a {
  border-bottom: none;
}

.menu li>.submenu>li>a:hover {
  /* background: #111; */
  background: #3a7d3e;
}

/* ---------- LEVEL 2 (FLYOUT RIGHT) ---------- */
.menu li>.submenu li.has-dropdown>.submenu {
  top: 0;
  left: 100%;
  display: none;
  min-width: 150px;
}

/* show level 2 */
.menu li>.submenu li.has-dropdown:hover>.submenu {
  display: block;
}

/* icon size */
.menu i {
  font-size: 12px;
  opacity: 0.95;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .topbar-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .top-item,
  .top-item-center,
  .top-item-end {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
  }

  .mainheader .row {
    min-height: 68px;
    padding: 8px 0;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 92px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    width: 100%;
    display: none;
    order: 3;
    margin-top: 10px;
    padding: 10px 0 4px;
    border-top: 1px solid #e7ede5;
  }

  .nav.is-open {
    display: block;
  }

  .menu {
    flex-direction: column;
    gap: 6px;
  }

  .menu>li,
  .menu>li.has-dropdown {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: start;
  }

  .menu>li:not(.has-dropdown) {
    grid-template-columns: 1fr;
  }

  .menu a {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fbf7;
    white-space: normal;
  }

  .menu>li.has-dropdown>a {
    padding-right: 16px;
  }

  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 3px 0 0 -6px;
    border-radius: 12px;
    color: #18311f;
  }

  .submenu-toggle i {
    transition: transform 0.2s ease;
  }

  .menu li.is-open>.submenu-toggle i {
    transform: rotate(180deg);
  }

  .menu li>.submenu li.is-open>.submenu-toggle i.fa-chevron-right {
    transform: rotate(90deg);
  }

  .menu li>.submenu {
    position: static;
    box-shadow: none;
    border-radius: 12px;
    min-width: 100%;
    margin-top: 6px;
    background: #101010;
  }

  .menu>li.has-dropdown:hover>.submenu,
  .menu li>.submenu li.has-dropdown:hover>.submenu {
    display: none;
  }

  .menu li.is-open>.submenu {
    display: block;
  }

  .menu li>.submenu>li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .menu li>.submenu>li:not(.has-dropdown) {
    grid-template-columns: 1fr;
  }

  .menu li>.submenu>li>a {
    padding: 12px 14px;
  }

  .menu li>.submenu li.has-dropdown>.submenu {
    left: 0;
    top: 0;
    margin-left: 14px;
    margin-top: 0;
  }

  .menu a.active {
    background: #2f3136;
  }
}

@media (max-width: 640px) {
  .topbar {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }
}



.hero-slider {
  position: relative;
  height: 92vh;
  max-height: 580px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: flex-start;
  /* move content to left */
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-1 {
  background-image: url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.slide-2 {
  background-image: url('https://images.unsplash.com/photo-1628624747284-5ffd3d8b1b09?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.slide-3 {
  background-image: url('https://images.unsplash.com/photo-1635108201747-976f7d4ba453?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.55) 0%, rgba(26, 26, 26, 0.75) 100%);
}



.slider-dots {
  position: absolute;
  bottom: 25px;
  /* distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-slider .slider-dots .dot.active {
  background: #111;
}


/* ABOUT SECTION WRAPPER */
.about-section {
  background: #fff;
  padding: 60px 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT SIDE */
.about-left {
  flex: 1;
}

.txt-aboutus {
  margin: 0 0 18px;
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2f7d32;
  /* green heading */
}

.about-text p {
  margin: 0 0 14px;
  line-height: 1.8;
  color: #222;
  font-size: 14px;
  text-align: justify;
}

/* RIGHT SIDE */
.about-right {
  flex: 1;
  position: relative;
  min-height: 360px;
  display: flex;
  justify-content: center;
}


/* PILL CARD */
.stat-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 60px;
  padding: 18px 26px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .04);
}

.stat-num {
  font-size: 34px;
  font-weight: 800;
  color: #2f7d32;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.2;
}

/* POSITIONING LIKE SCREENSHOT */
.stat-top-right {
  top: 80px;
  right: 60px;
  width: 241px;
  justify-content: center;
}

.stat-mid-left {
  top: 163px;
  left: 10px;
  width: 241px;
  justify-content: center;
}

.stat-mid-right {
  top: 165px;
  right: 60px;
  width: 241px;
  justify-content: center;
}

.stat-bottom {
  bottom: 40px;
  right: 60px;
  width: 241px;
  justify-content: center;
}

.vm-section {
  background: #f5f5f5;
  /* light grey like image */
  padding: 80px 0;
}

.vm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

/* Card Styling */
.vm-card {
  background: #fff;
  flex: 1;
  padding: 40px 30px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #e6f4e8;
  box-shadow: 0 0 18px rgba(46, 204, 113, 0.25);
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(46, 204, 113, 0.35);
}

/* Heading */
.vm-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #2f7d32;
  /* green heading */
}

/* Paragraph */
.vm-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 320px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width:992px) {
  .vm-container {
    flex-direction: column;
    gap: 25px;
  }
}

.invest-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 500px;
  color: #fff;


  width: 100%;
  height: 200px;
  /* adjust as needed */
  background-image: url('https://images.unsplash.com/photo-1490318134124-34dadea1b8b2?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  /* fills section */
  background-position: center;
  /* center image */
  background-repeat: no-repeat;
}

.invest-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.invest-img p {
  position: relative;
  z-index: 2;
}

.invest-txt {
  text-align: center;
  font-family: "Lato", Sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
}

.sticky-header {
  width: 100%;
  background: #fff;
  z-index: 9999;
}

/* fixed state (added by JS) */
.sticky-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
}

/* this prevents page jump when header becomes fixed */
.sticky-spacer {
  height: 0;
}

.future-section {
  background: #f5f5f5;
  /* light grey like image */
  /* padding:70px 0; */
}

.future-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.future-title {
  font-size: 32px;
  font-weight: 600;
  color: #2f7d32;
  /* green heading */
  margin-bottom: 25px;
  font-family: "Lato", sans-serif;
}

.future-text {
  font-size: 17px;
  line-height: 1.9;
  color: #222;
  text-align: justify;
  font-family: "Lato", sans-serif;
}

/* green highlight word like image */
.highlight,
h3 {
  color: #2f7d32;
  font-weight: 500;
}

/* Responsive */
@media (max-width:768px) {
  .future-title {
    font-size: 26px;
  }

  .future-text {
    font-size: 16px;
  }
}




.triple-gallery {
  background: #f5f5f5;
  padding: 70px 0;
}

.tg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tg-title {
  text-align: center;
  color: #2f7d32;
  font-weight: 700;
  margin: 0 0 18px;
  font-size: 22px;
  font-family: "Lato", sans-serif;
}

/* Card */
.tg-card {
  background: #fff;
  border: 1px solid #e6f4e8;
  box-shadow: 0 0 18px rgba(46, 204, 113, 0.25);
  padding: 28px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Slider */
/* =========================
   TRIPLE GALLERY SLIDERS (Reusable)
========================= */
.tg-card {
  position: relative;
}

/* Works for .news-slides / .arch-slides / .media-slides */
.tg-card>div:first-child {
  position: relative;
  height: 100%;
  min-height: 360px;
  /* keeps card height stable */
}

/* Works for .news-slide / .arch-slide / .media-slide */
.tg-card [class$="-slide"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-card [class$="-slide"].active {
  opacity: 1;
}

/* Images inside all sliders */
.tg-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Dots */
.tg-card .dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.tg-card .dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfcfcf;
  border: none;
  cursor: pointer;
}

.tg-card .dots button.active {
  background: #111;
}

/* Responsive */
@media (max-width: 992px) {
  .tg-container {
    grid-template-columns: 1fr;
  }

  .tg-card>div:first-child {
    min-height: 320px;
  }

  .tg-card img {
    height: 320px;
  }
}


.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 999;

  /* Soft outer glow like image */
  box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.15);

  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

/* Hover effect */
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 14px rgba(37, 211, 102, 0.25);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* contact form */

.enquiry-section {
  /* background: #121212; */
  padding: 60px 18px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

.enquiry-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

/* LEFT */
.enquiry-left {
  padding: 54px 48px;
  /* background: #242424; */
}

.mini-title {
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 700;
}

.big-title {
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}

.big-title span {
  color: var(--gold);
}

.gold-line {
  width: 54px;
  height: 4px;
  background: var(--gold);
  margin: 18px 0 22px;
}



.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
}

.contact-list i {
  color: var(--gold);
  margin-top: 3px;
  width: 18px;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* RIGHT */
.enquiry-right {
  padding: 44px 48px 54px;
  /* background: #2b2b2b; */
  position: relative;
}

.top-gold {
  height: 4px;
  width: 92%;
  background: var(--gold);
  margin: 6px 0 28px auto;
}

.form-title {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}



.enquiry-form {
  display: grid;
  gap: 14px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  background: var(--field);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 2px;
  color: var(--text);
  outline: none;
  font-size: 14.5px;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #9f9f9f;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
}

.btn-send {
  margin-top: 14px;
  width: 100%;
  background: #3a7d3e;
  border: none;
  padding: 16px 18px;
  border-radius: 2px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-send:hover {
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 980px) {
  .enquiry-wrap {
    grid-template-columns: 1fr;
  }

  .enquiry-left,
  .enquiry-right {
    padding: 34px 22px;
  }

  .big-title {
    font-size: 42px;
  }
}

/* footer  section */
.motia-footer {
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.footer-bg {
  background:
    linear-gradient(rgba(30, 35, 40, .92), rgba(30, 35, 40, .92)),
    url("city-bg.jpg");
  /* put your footer bg image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* TOP GRID */
.footer-top {
  padding: 55px 0 35px;
  display: grid;
  grid-template-columns: 240px repeat(5, 1fr);
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  width: 160px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .4));
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.4;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* CONTACT STRIP */
.footer-strip {
  display: grid;
  grid-template-columns: 1fr auto 2.4fr auto 1.2fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
}

.strip-item i {
  color: #fff;
  opacity: .9;
}

.strip-item a {
  color: #fff;
  text-decoration: none;
}

.strip-item a:hover {
  text-decoration: underline;
}

.strip-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.strip-social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.strip-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  opacity: .95;
}

.strip-social a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  text-align: center;
}

.footer-copy {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 220px repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .strip-divider {
    display: none;
  }

  .strip-social {
    justify-content: flex-start;
  }
}


/* our client section */

.logo-slider {
  background: #fff;
  padding: 28px 0;
}

.logo-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 14px;
}

.logo-viewport {
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 80px;
  align-items: center;
  will-change: transform;
  transform: translateX(0);
}

.logo-item {
  flex: 0 0 calc((100% - 240px) / 4);
  /* 4 visible */
  min-width: 220px;
  height: 120px;
  display: grid;
  place-items: center;
}

.logo-item img {
  height: 100px;
  width: 210px;
  object-fit: contain;
  display: block;
}

/* green round arrows */
.nav-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: #1f7a3b;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
  transition: transform .15s ease, filter .15s ease;
}

.nav-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.nav-btn:active {
  transform: translateY(0) scale(.98);
}

@media (max-width: 1024px) {
  .logo-track {
    gap: 44px;
  }

  .logo-item {
    flex-basis: calc((100% - 132px) / 3);
    min-width: 200px;
  }
}

@media (max-width: 700px) {
  .logo-wrap {
    grid-template-columns: 54px 1fr 54px;
  }

  .logo-item {
    flex-basis: calc((100% - 44px) / 2);
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .logo-item {
    flex-basis: 100%;
    min-width: 220px;
  }
}



/* Model Popup */


/* ===== MODAL OVERLAY ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 9999;
}

/* Active State */
.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ===== MODAL BOX ===== */
.modal-box {
  background: #ffffff;
  width: 95%;
  max-width: 420px;
  padding: 30px 28px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.35s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #777;
  transition: 0.3s;
}

.modal-close:hover {
  color: #000;
}

/* Heading */
.modal-box h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  color: #2f7d32;
}

.modal-box p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.modal-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #3a7d3e;
}

.contact-modal-box {
  max-width: 440px;
  border-radius: 18px;
}

.contact-modal-copy {
  line-height: 1.6;
}

.contact-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: min(320px, calc(100vw - 48px));
  padding: 22px 20px 18px;
  background: linear-gradient(150deg, #163521 0%, #285c36 100%);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 22px 45px rgba(10, 27, 16, 0.28);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.contact-widget.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-widget.is-hidden {
  display: none;
}

.contact-widget-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.contact-widget-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-widget h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.contact-widget-copy {
  margin: 10px 0 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.contact-widget-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #173120;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 18px;
  cursor: pointer;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
}

/* Textarea */
.form-group textarea {
  resize: none;
  min-height: 80px;
}

/* Button */
.btn-submit {
  width: 100%;
  padding: 12px;
  background: #3a7d3e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #333;
}

/* Prevent Scroll When Modal Open */
body.modal-open {
  overflow: hidden;
}

/* Contact page */
.contact-page {
  background:
    radial-gradient(circle at top left, rgba(105, 179, 108, 0.12), transparent 32%),
    linear-gradient(180deg, #f4f7f3 0%, #ffffff 100%);
  padding: 56px 18px 68px;
}

.contact-page-shell {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 22px;
  align-items: start;
}

.contact-page-intro,
.contact-page-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(24, 39, 27, 0.07);
}

.contact-page-intro {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.contact-page-intro::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 125, 62, 0.14) 0%, rgba(58, 125, 62, 0) 70%);
  pointer-events: none;
}

.contact-page-kicker,
.contact-form-kicker {
  margin: 0 0 10px;
  color: #3a7d3e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-page-intro h1,
.contact-page-form-card h2 {
  margin: 0;
  color: #18311f;
  line-height: 1.15;
}

.contact-page-intro h1 {
  font-size: 22px;
}

.contact-page-lead,
.contact-form-copy {
  margin: 14px 0 0;
  color: #56605a;
  line-height: 1.6;
  font-size: 14px;
}

.contact-info-grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.contact-info-card {
  padding: 16px 18px;
  border: 1px solid #e3eadf;
  border-radius: 16px;
  background: #fbfcfb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: #c7dbc1;
  box-shadow: 0 18px 34px rgba(27, 58, 31, 0.08);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #eaf3e7;
  color: #2f7d3e;
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.contact-info-card p,
.contact-info-card a {
  margin: 0;
  color: #56605a;
  text-decoration: none;
  line-height: 1.55;
  font-size: 14px;
}

.contact-page-form-wrap {
  display: flex;
}

.contact-page-form-card {
  padding: 26px;
  width: 100%;
  border: 1px solid #e6efe1;
}

.contact-page-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dce7d8;
  border-radius: 12px;
  background: #f7faf6;
  color: #173120;
  font-size: 14px;
  outline: none;
}

.contact-page-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  border-color: #3a7d3e;
  box-shadow: 0 0 0 4px rgba(58, 125, 62, 0.12);
}

.contact-page-submit {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4f2d 0%, #3b8545 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 18px;
  cursor: pointer;
}

.contact-page-submit:hover,
.contact-widget-btn:hover {
  filter: brightness(1.04);
}

@media (max-width: 980px) {
  .contact-page-shell {
    grid-template-columns: 1fr;
  }

  .contact-page-intro,
  .contact-page-form-card {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-widget {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .wa-float {
    bottom: 160px;
    right: 18px;
  }
}


/* Testimonial Section */

.t-section{
  padding: 70px 0;
  background: #fff;
}

.t-container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.t-title{
  text-align:center;
  margin: 0 0 50px;
  letter-spacing: 2px;
  font-size: 34px;
  font-weight: 500;
  color: #2f7a3f; /* green like screenshot */
}

.t-card{
  background:#fafafa;
  border-radius: 2px;
  padding: 55px 70px 40px;
  box-shadow: 0 0 0 1px #eee inset;
}

.t-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 35px;
  margin-bottom: 28px;
}

.t-avatar{
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow:hidden;
  flex: 0 0 170px;
  background:#eee;
}

.t-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.t-meta h3{
  margin:0;
  font-size: 28px;
  font-weight: 500;
  color:#2f7a3f;
}

.t-meta p{
  margin: 6px 0 0;
  font-size: 18px;
  color:#2f7a3f;
  opacity: .9;
}

.t-quote{
  max-width: 860px;
  margin: 0 auto;
  background:#f3f3f3;
  padding: 26px 34px;
  border-radius: 2px;
}

.t-quote p{
  margin:0;
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color:#1f1f1f;
  text-align:center;
}

.t-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  margin-top: 28px;
}

.t-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background:#a8a8a8;
  border: none;
  cursor:pointer;
  padding:0;
  transition: transform .2s ease, background .2s ease;
}

.t-dot.active{
  background:#6f6f6f;
  transform: scale(1.25);
}

/* Responsive */
@media (max-width: 860px){
  .t-card{ padding: 40px 18px 30px; }
  .t-top{ flex-direction: column; gap: 16px; }
  .t-meta{ text-align:center; }
  .t-quote{ padding: 18px 16px; }
  .t-meta h3{ font-size: 24px; }
}


/* Video Section */

/* WRAP */
/* MAIN SECTION WIDTH CONTROL */
.vslider {
    padding: 70px 20px;
    background: #f7f7f7;
}

.vslider-container {
    max-width: 1100px;   /* change this if you want wider */
    margin: auto;
}

/* WRAP */
.vslider-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* STAGE */
.vstage {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

/* EACH SLIDE */
.vslide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

/* VIDEO SIZE CONTROL */
.vslide iframe {
    width: 100%;
    max-width: 1000px;   /* control actual video width */
    aspect-ratio: 16 / 9;  /* maintains perfect ratio */
    border: none;
    border-radius: 10px;
}

/* NAVIGATION */
.vnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.vnav.prev { left: 15px; }
.vnav.next { right: 15px; }

.vnav:hover {
    background: #333;
}

/* DOTS */
.vdots {
    text-align: center;
    margin-top: 25px;
}

.vdots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    background: #ccc;
    cursor: pointer;
}

.vdots button.active {
    background: #111;
}

/* RESPONSIVE CONTROL */
@media (max-width: 992px) {
    .vslider-container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .vslide iframe {
        max-width: 100%;
    }

    .vnav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

h2{
  color: #3a7d3e !important;
  text-decoration: none !important;
}

.acquirelink {
    color: #0b8f8a;
    text-decoration-line: blink;
}:root {
  --hero-h: 500px;
  --text-bg: rgba(0, 0, 0, .28);
  --btn-bg: #2f7d3b;
}

.hero-zoom {
  position: relative;
  height: var(--hero-h);
  width: 100%;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/index1-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transform: scale(1);
  will-change: transform;
}

.hero-zoom.is-loaded .hero-media {
  animation: zoomInOnce 4s ease-in-out forwards;
}

@keyframes zoomInOnce {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.hero-zoom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .18) 55%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px;
}

.hero-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 44px);
  line-height: 1.1;
  padding: 14px 18px;
  background: var(--text-bg);
  border-radius: 8px;
}

.hero-btn {
  border: 0;
  cursor: pointer;
  background: var(--btn-bg);
  color: #fff;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

@media (max-width: 900px) {
  :root {
    --hero-h: 360px;
  }

  .hero-content {
    padding: 0 18px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
