

:root {
  --green: #083d2d;
  --olive: #4b5805;
  --gold: #b49745;
  --white: #fff;
  --dark: #151515;
}

* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--dark);
  margin: 0;
  background: #fff;
  font-family: "Manrope", sans-serif;
}

a {
  text-decoration: none
}

.logo
{
  width: 70%;
}


.site-nav {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-nav.nav-hidden {
  transform: translateY(-130%);
  opacity: 0;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../images/banner.jpg') center/cover no-repeat;
  overflow: hidden;
  padding: 38px 0 0
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .28), rgba(67, 67, 0, .18) 48%, rgba(0, 0, 0, .15));
  z-index: 1
}

.site-nav {
  padding: 0;
  top: 34px;
  z-index: 10;
  background: transparent;
  transition: .25s ease
}

.nav-shell {
  background: #fff;
  border-radius: 90px;
  padding: 10px 42px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, .08)
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111 !important;
  text-transform: uppercase;
  line-height: .86;
  font-family: Georgia, serif;
  font-size: 27px;
  letter-spacing: -.8px;
  margin: 0;
  min-width: 275px
}

.brand-emblem {
  width: 58px;
  height: 58px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 28px;
  line-height: 1
}

.navbar-nav {
  gap: 38px;
  align-items: center
}

.nav-link {
  color: #151515 !important;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0 !important;
  white-space: nowrap
}

/* Style for when a user hovers OR when the section is currently active */
.nav-link:hover,
.nav-link.active {
  color: #4c5805c7 !important;
  text-decoration: underline !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px
}

.whatsapp {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #000;
  font-size: 34px;
  font-weight: 900;
}

.btn-brand {
  background: var(--green);
  border: 0;
  color: #fff !important;
  border-radius: 35px;
  padding: 10;
  font-size: 16px;
  font-weight: 500;
  box-shadow: none;
  font-family: "Urbanist", sans-serif;
}

.btn-brand:hover {
  background: #062e22;
  color: #fff !important
}

.custom-toggler {
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  padding: 0;
  position: relative;
  box-shadow: none !important
}

.toggler-line {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: .25s ease
}

.toggler-line:nth-child(1) {
  top: 15px
}

.toggler-line:nth-child(2) {
  top: 22px
}

.toggler-line:nth-child(3) {
  top: 29px
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  top: 22px;
  transform: rotate(45deg)
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg)
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 245px;
  padding-bottom: 0
}

.hero-copy {
  color: #fff;
  padding-left: 58px
}

.hero-copy h1 {
  font-size: 56px;
  line-height: .99;
  font-weight: 900;
  letter-spacing: .2px;
  max-width: 720px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .18);
  font-family: "Urbanist", sans-serif;
}

.hero-copy p {
  font-size: 22px;
  line-height: 1.42;
  font-weight: 600;
  max-width: 660px;
  margin: 25px 0 32px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .24);
  font-family: "Urbanist", sans-serif;

}

.hero-badges {
  display: flex;
  gap: 10px;
  max-width: 650px
}

.hero-badges div {
  min-width: 190px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 16px;
  padding: 18px 20px;
  background: rgba(76, 88, 5, .78);
  box-shadow: inset 0 1px 18px rgba(255, 255, 255, .13), 0 12px 35px rgba(0, 0, 0, .18);
  backdrop-filter: blur(6px)
}

.hero-badges strong {
  font-weight: 900
}
.cta-btn{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.cta-btn .btn-main{width: 200px;}
.cta-btn .btn-outline{width: 200px;}

.enquiry-card {
  max-width: 520px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 31px;
  padding: 34px 34px 36px;
  background: rgba(78, 80, 19, .45);
  backdrop-filter: blur(11px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .2)
}

.enquiry-card h3 {
  text-align: center;
  color: #fff;
  font-size: 31px;
  font-weight: 900;
  margin-bottom: 28px;
  font-family: "Urbanist", sans-serif;
 text-transform: uppercase;
}

.enquiry-card label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 14px 0 8px;
  font-family: "Manrope", sans-serif;
  font-family: "Urbanist", sans-serif;
}

.enquiry-card label span {
  color: #e43b32
}

.enquiry-card .form-control {
  height: 51px;
  border: 0;
  border-radius: 50px;
  padding: 0 22px;
  font-size: 14px;
  background: #fff;
  color: #333;
  box-shadow: none
}

.enquiry-card .form-control::placeholder {
  color: #777
}
.error-text{
    display:block;
    color:#dc3545;
    font-size:13px;
    margin-top:4px;
    min-height:18px;
}

.input-error{
    border:1px solid #dc3545 !important;
}

.submit-btn:disabled{
    opacity:.8;
    cursor:not-allowed;
}
.submit-btn {
  display: block;
  margin: 28px auto 0;
  width: 176px !important;
  padding: 14px 24px !important;
  font-family: "Urbanist", sans-serif;
}

.hero-stats {
  /* width: min(1080px, 76%); */
  margin: 68px auto 0;
  background: var(--olive);
  border-radius: 44px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 17px 38px;
  gap: 0;
   position: relative;
  margin-bottom: 3%;
  width: 100%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
   font-family: "Urbanist", sans-serif;
   align-items: center;
   font-size: 18px;
   font-weight: 600;
}

.hero-stats div {
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.12;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, .78);
  font-family: "Urbanist", sans-serif;
  line-height: 22px;
}

.hero-stats div:last-child {
  border-right: 0
}

.hero-stats strong,
.hero-stats span {
  display: block
}

.section {
  padding: 110px 0 80px
}

.bg-soft {
  background: #f6f7f1
}

.section h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.12;
  font-family: "Urbanist", sans-serif;
}

.section p {
  font-size: 16px;
  line-height: 1.7;
  color: #3d3d3d;
  font-family: "Manrope", sans-serif;
  text-align: justify;
}

.image-card img{
  /* min-height: 300px;
  border-radius: 24px;
  background: url('../images/banner.jpg') center/cover no-repeat */
  border-radius: 50px;
  width: 100%;
}

.info-card {
  height: 100%;
  padding: 32px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .06)
}

.info-card h5 {
  font-weight: 900;
  color: var(--green)
}

.section-intro {
  max-width: 760px
}



.investment-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.investment-title,
.investment-card {
  min-height: 210px;
  padding: 42px 42px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
  transition: all 0.3s ease;
}

.investment-title {
  grid-column: span 2;
  display: flex;
  align-items: center;
}

.investment-title h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  font-family: "Urbanist", sans-serif;
}

.investment-card.active,
.investment-card:hover {
  background: #4b5905;
  color: #fff;
}

.investment-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
   font-family: "Manrope", sans-serif;
}

.investment-card p {
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
   font-family: "Manrope", sans-serif;
   /*text-align: justify;*/
}

@media (max-width: 991px) {
  .investment-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .investment-title {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .investment-section {
    grid-template-columns: 1fr;
  }

  .investment-title {
    grid-column: span 1;
  }
}



/* video */

.farmland-works-section {
  padding: 90px 0;
  background: #fff;
  font-family: "Urbanist", sans-serif;
}

.farmland-works-section h2 {
  max-width: 620px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  color: #111;
  margin-bottom: 16px;
}

.works-subtext {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.5;
  color: #222;
  margin-bottom: 26px;
}

.works-video {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.works-video img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.works-timeline {
    position: relative;
    padding-left: 40px;
}

/* Vertical line */
.works-timeline::before {
    content: "";
    position: absolute;
    left: 9px;           /* center of the dot */
    top: 10px;           /* start exactly after first dot */
    bottom: 65px;        /* stop before last dot */
    width: 1px;
    background: #bcbcbc;
    z-index: 1;
    display: none;
}

/* Timeline item */
.timeline-item {
    position: relative;
    min-height: 90px;
    padding-bottom: 40px;
    opacity: .35;
    transition: all .4s ease;
}

/* Active text */
.timeline-item.active {
    opacity: 1;
}

/* Grey dots */
.timeline-dot {
    position: absolute;
    left: -39px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #dedede;
    border-radius: 50%;
    z-index: 2;
    transition: .4s;
     z-index: 100;
}

/* Active red dot */
.timeline-item.active .timeline-dot {
    background: #ff2a2a;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #e2e2e2;
}

.timeline-item h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.works-video {
  position: relative;
  overflow: hidden;
}

.works-video img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.play-btn {
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.video-modal .modal-content {
  background: transparent;
  border: 0;
}

.video-modal .modal-body {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.video-modal video {
  width: 100%;
  display: block;
}
.modal-body h2{
  font-family: "Urbanist", sans-serif;
}
.video-close {
  position: absolute;
  right: -14px;
  top: -18px;
  z-index: 9;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 56px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #d9d9d9;
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.active .timeline-dot {
  background: #ff1d16;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #d9d9d9;
  animation: pulseRed 1.4s infinite;
}

.timeline-item h4 {
  font-size: 16px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.45;
  color: #222;
  margin: 0;
}

@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 2px #d9d9d9, 0 0 0 0 rgba(255, 29, 22, 0.45);
  }
  70% {
    box-shadow: 0 0 0 2px #d9d9d9, 0 0 0 13px rgba(255, 29, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 2px #d9d9d9, 0 0 0 0 rgba(255, 29, 22, 0);
  }
}

@media (max-width: 991px) {
  .farmland-works-section {
    padding: 70px 0;
  }

  .farmland-works-section h2 {
    font-size: 30px;
  }

  .works-video img {
    height: 360px;
  }

  .works-timeline {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .farmland-works-section {
    padding: 55px 0;
  }

  .farmland-works-section h2 {
    font-size: 25px;
  }

  .works-subtext,
  .timeline-item p {
    font-size: 16px;
  }

  .works-video img {
    height: 260px;
  }

  .play-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .timeline-item {
    padding-bottom: 38px;
  }
}

@media (max-width: 767px) {

    .works-timeline {
        padding-left: 35px;
    }

    .works-timeline::before {
        left: 8px;
        top: 10px;
        bottom: 55px;
    }

    .timeline-dot {
        left: -34px;
        width: 18px;
        height: 18px;
    }

    .timeline-item {
        min-height: 80px;
        padding-bottom: 35px;
    }

    .timeline-item h4 {
        font-size: 16px;
    }

    .timeline-item p {
        font-size: 16px;
    }
}

/* end */



.owning-section {
  background: #fff;
  font-family: "Urbanist", sans-serif;
}

.owning-banner {
  position: relative;
  min-height: 360px;
  padding: 75px 0 65px;
  background: linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .18)),
    url("../images/bannd.jpg") center/cover no-repeat;
  text-align: center;
  color: #fff;
}

.owning-banner h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 18px;
}

.owning-banner p {
  max-width: 1150px;
  margin: 0 auto 18px;
  font-size: 16px;
  line-height: 1.45;
   font-family: "Manrope", sans-serif;
}

.owning-banner strong {
  display: block;
  font-size: 15px;
  margin-top: 18px;
  margin-bottom: 28px;
}

.owning-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 42px;
  background: #fff;
  color: #111;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
}

.owning-investment {
  display: grid;
  grid-template-columns: 30.5% 39% 30.5%;
  align-items: stretch;
}

.owning-img {
  min-height: 470px;
  overflow: hidden;
}

.owning-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left-img {
  border-bottom-right-radius: 70px;
}

.right-img {
  border-bottom-left-radius: 70px;
}

.owning-content {
  padding: 70px 70px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owning-content h3 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 26px;
}

.owning-content p {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 10px;
  padding: 0px 20px 0px 20px;
}

@media (max-width: 991px) {
  .owning-banner {
    padding: 65px 0 55px;
  }

  .owning-banner h2 {
    font-size: 28px;
  }

  .owning-investment {
    grid-template-columns: 1fr;
  }

  .owning-img {
    min-height: 320px;
  }

  .left-img,
  .right-img {
    border-radius: 0;
  }

  .owning-content {
    padding: 45px 24px;
  }

  .owning-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .owning-banner {
    min-height: auto;
    padding: 48px 0;
  }

  .owning-banner h2 {
    font-size: 24px;
  }

  .owning-banner p,
  .owning-banner strong,
  .owning-content p {
    font-size: 14px;
  }

  .owning-img {
    min-height: 250px;
  }

  .owning-content h3 {
    font-size: 23px;
  }
}




.amenities-section {
  padding: 85px 0;
  background: #fff;
  font-family: "Urbanist", sans-serif;
}

.amenities-head {
  text-align: center;
  margin-bottom: 34px;
}

.amenities-head h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 22px;
  color: #111;
}

.amenities-head p {
  max-width: 880px;
  margin: auto;
  font-size: 16px;
  line-height: 1.45;
  color: #222;
}

.amenities-tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.amenities-tabs li {
  position: relative;
}

.amenities-tabs li + li {
  border-left: 1px solid #111;
}

.amenities-tabs button {
  border: 0;
  background: transparent;
  padding: 0 26px 8px;
  font-size: 16px;
  color: #999;
  position: relative;
}

.amenities-tabs button.active {
  color: #111;
  font-weight: 600;
   font-size: 16px;
}

.amenities-tabs button.active::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 1px;
  background: #4b5905;
}

.amenities-box {
  max-width: 760px;
  margin: auto;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 22px 22px 28px 28px;
}

.amenities-box.active {
  display: grid;
}

.amenity-card {
  min-height: 190px;
  background: #fff;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.amenity-card:nth-child(3n) {
  border-right: 0;
}

.amenity-card:nth-child(n+4) {
  border-bottom: 0;
}

.amenity-card.green{ background: #4b5805; color: #fff;}
.amenity-card.green:hover{background: #7e960a; color: #fff;}
.amenity-card:hover {
  background: #7e960a;
  color: #000;
}

.amenity-card span {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 14px;
}
.amenity-card p {
  font-size: 16px;
  margin: 0;
}

@media (max-width: 767px) {
  .amenities-section {
    padding: 60px 0;
  }

  .amenities-head h2 {
    font-size: 25px;
  }

  .amenities-tabs {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .amenities-tabs li + li {
    border-left: 0;
  }

  .amenities-tabs button {
    padding: 0 0 8px;
  }

  .amenities-tabs button.active::after {
    left: 0;
    right: 0;
  }

  .amenities-box {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .amenity-card {
    min-height: 150px;
  }

  .amenity-card:nth-child(3n) {
    border-right: 1px solid #e5e5e5;
  }

  .amenity-card:nth-child(2n) {
    border-right: 0;
  }

  .amenity-card:nth-child(n+4) {
    border-bottom: 1px solid #e5e5e5;
  }

  .amenity-card:nth-child(n+5) {
    border-bottom: 0;
  }
}


.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 850px;
  margin: 30px auto 0
}

.amenity-grid span {
  padding: 22px;
  border-radius: 8px;
  background: var(--olive);
  color: #fff;
  font-weight: 700
}

.location-table {
  background: #fff !important;
  border-radius: 18px;
  overflow: hidden;
  /* box-shadow: 0 16px 40px rgba(0, 0, 0, .06) */
}
.loc-item {
  margin-bottom: 10px;
}

.loc-btn {
  width: 100%;
  height: 49px;
  border: 1px solid #dedede;
  background: #fff;
  border-radius: 18px;
  padding: 0 20px;
  text-align: left;
  font-size: 15px;
  color: #333;
  position: relative;
  box-shadow: none;
}

.loc-btn::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #6b2d5c;
}

.loc-btn.collapsed::after {
  transform: translateY(-50%) rotate(0deg);
}

.loc-body {
  padding: 12px 20px 5px;
  font-size: 12px;
  line-height: 1.65;
  color: #555;
}
.loc-body p{margin: 0;}
.location-table td {
  padding: 18px 24px;
  font-weight: 600
}

.accordion-item {
  border: 0;
  margin-bottom: 12px;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05)
}

.accordion-button {
  font-weight: 800
}

.accordion-button:not(.collapsed) {
  background: #f3f5e8;
  color: #14270d
}

.site-footer {
  background: var(--olive);
  color: #fff;
  padding: 26px 0;
  font-size: 14px
}
.site-footer a{text-decoration: none; color: #fff;}
.site-footer p{margin-top: 20px; text-align: center;}
@media(max-width:1399px) {
  .nav-shell {
    padding: 18px 34px
  }

  .navbar-brand {
    min-width: 230px;
    font-size: 23px
  }

  .navbar-nav {
    gap: 24px
  }

  .nav-link {
    font-size: 15px
  }

  .hero-copy h1 {
    font-size: 50px
  }

  .hero-content {
    padding-top: 220px
  }

  .hero-copy {
    padding-left: 35px
  }
}

@media(max-width:1199px) {
  .nav-shell {
    border-radius: 34px
  }

  .navbar-collapse {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee
  }

  .navbar-nav {
    align-items: flex-start;
    gap: 8px
  }

  .nav-actions {
    justify-content: space-between
  }

  .hero-content {
    padding-top: 160px
  }

  .hero-copy {
    /* padding-left: 0 */
  }

  .hero-copy h1 {
    font-size: 44px
  }

  .hero-badges div {
    min-width: 0;
    flex: 1;
    font-family: "Manrope", sans-serif;
  }

  .hero-stats {
    width: 92%;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 28px;
    gap: 18px
  }

  .hero-stats div:nth-child(2) {
    border-right: 0
  }

  .hero-stats div {
    font-size: 16px
  }
}

@media(max-width:767px) {
  .hero-section {
    min-height: auto;
    padding-top: 16px;
    background-position: center top
  }

  .site-nav {
    top: 14px;
    padding: 0 12px
  }

  .nav-shell {
    border-radius: 26px;
    padding: 12px 14px
  }

  .navbar-brand {
    min-width: auto;
    font-size: 18px;
    gap: 8px
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
    font-size: 20px
  }

  .navbar-collapse {
    background: #fff;
    border-radius: 20px;
    margin-top: 12px;
    padding: 16px
  }

  .nav-link {
    font-size: 16px
  }

  .nav-actions {
    gap: 12px;
    align-items: center
  }

  .whatsapp {
    font-size: 28px
  }

  .btn-brand {
    padding: 13px 25px
  }

  .hero-content {
    padding-top: 125px;
    padding-bottom: 34px
  }

  .hero-copy h1 {
    font-size: 35px;
    line-height: 1.04
  }

  .hero-copy p {
    font-size: 16px;
    margin: 18px 0 22px
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
  }

  .hero-badges div {
    font-size: 16px;
    padding: 14px
  }

  .enquiry-card {
    margin: 8px auto 0;
    padding: 24px 18px;
    border-radius: 24px
  }

  .enquiry-card h3 {
    font-size: 25px;
     font-family: "Urbanist", sans-serif;
  }

  .hero-stats {
    position: relative;
    transform: none;
    margin: 30px auto 0;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 24px;
    gap: 0
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding: 15px;
    font-size: 16px
  }

  .hero-stats div:last-child {
    border-bottom: 0
  }

  .section {
    padding: 60px 0
  }

  .section h2 {
    font-size: 28px
  }

  .amenity-grid {
    grid-template-columns: 1fr
  }

  /* .custom-toggler {
    width: 42px;
    height: 42px
  } */
}

@media(max-width:420px) {
  .hero-copy h1 {
    font-size: 31px
  }

  .navbar-brand {
    font-size: 16px
  }

  .btn-brand {
    padding: 12px 20px
  }

  .enquiry-card .form-control {
    height: 48px
  }
}


/* location */
.location-section {
  padding: 60px 0;
  background: #fff;
  font-family: "Urbanist", sans-serif;
}

.location-section h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 24px;
  color: #111;
}

.location-section p {
  font-size: 15px;
  line-height: 1.45;
  color: #111;
  margin-bottom: 5px;
}

.location-table {
  margin-top: 34px;
  border-radius: 14px;
  overflow: hidden;
  background: #fafafa;
}

.map-box {
  width: 100%;
  height: 610px;
  overflow: hidden;
  border-radius: 0 0 40px 0;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 20px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr 100px;
}

.table-head {
  border-bottom: 1px solid #333;
}

.table-head span {
  padding: 16px 22px;
  font-size: 15px;
  text-align: center;
}

.table-head span:first-child,
.table-row span:first-child {
  border-right: 1px solid #333;
}

.table-row span {
  padding: 11px 22px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.table-row span:last-child {
  justify-content: center;
}

.map-box {
  width: 100%;
  height: 610px;
  overflow: hidden;
  border-radius: 0 0 40px 0;
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .location-section {
    padding: 60px 0;
  }

  .location-section h2 {
    font-size: 28px;
  }

  .map-box {
    height: 420px;
  }
}

@media (max-width: 575px) {
  .location-section h2 {
    font-size: 24px;
  }

  .location-section p {
    font-size: 14px;
  }

  .table-head,
  .table-row {
    grid-template-columns: 1fr 80px;
  }

  .table-head span,
  .table-row span {
    padding: 10px 12px;
    font-size: 13px;
  }

  .map-box {
    height: 300px;
    border-radius: 0 0 24px 0;
  }
}

/* end */


.villa-faq-section {
  padding: 80px 0;
  background: #fff;
  font-family: "Urbanist", sans-serif;
}

.villa-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 90px;
  align-items: center;
}

.villa-text h2,
.site-visit-card h2,
.faq-card h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 24px;
  color: #111;
}

.villa-text p,
.site-visit-card p {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 18px;
  color: #111;
  text-align: justify;
}

.villa-img {
  overflow: hidden;
  border-radius:40px;
}

.villa-img.top-img {
  border-radius: 40px 40px 40px 40px;
}

.villa-img img,
.site-visit-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.site-visit-card img {
  /* height: 250px; */
  border-radius: 16px;
  margin-top: 20px;
}

.site-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-main,
.btn-outline {
  min-width: 145px;
  height: 42px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}

.btn-main {
  background: #003f2d;
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.faq-card {
  align-self: start;
}

.accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: 28px !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.accordion-button {
  min-height: 58px;
  /*border-radius: 28px !important;*/
  font-size: 16px;
  font-weight: 800;
  color: #111;
  background: #fff;
  box-shadow: none !important;
  padding: 16px 24px;
}

.accordion-button:not(.collapsed) {
  background: #f4f4f4;
  color: #111;
}

.accordion-button::after {
  filter: invert(25%) sepia(40%) saturate(700%) hue-rotate(45deg);
}

.accordion-body {
  background: #f4f4f4;
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 991px) {
  .villa-faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .villa-img,
  .villa-img.top-img {
    border-radius: 28px;
  }

  .villa-text h2,
  .site-visit-card h2,
  .faq-card h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .villa-faq-section {
    padding: 55px 0;
  }

  .villa-img img,
  .site-visit-card img {
    height: 220px;
  }

  .site-actions {
    flex-direction: column;
  }

  .btn-main,
  .btn-outline {
    width: 100%;
  }
}


.site-footer {
  background: #4b5905;
  padding: 48px 0 32px;
  font-family: "Urbanist", sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 40px;
}

.footer-brand {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.footer-brand img {
  max-height: 70px;
  width: auto;
}

.footer-address {
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.footer-address p {
  margin: 0;
  font-size: 14px;
}
.footer-address h4{text-align: center; font-size: 16px; font-weight: 800; margin-top: 20px;}
.social-icons {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.footer-partner {
  text-align: center;
}

.footer-partner img {
  max-height: 70px;
  width: auto;
}

.footer-line {
  height: 2px;
  background: #fff;
  margin-top: 34px;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-brand {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-partner {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding: 38px 0 26px;
  }

  .footer-brand {
    gap: 20px;
  }

  .footer-brand img {
    max-height: 58px;
  }

  .footer-partner img {
    max-height: 70px;
  }

  .footer-address {
    font-size: 13px;
  }
}

    

/* ===== Responsive Fixes + Popup + Fixed CTA ===== */
html, body { width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
.container {
    width: 100%;
    max-width: 1360px;
    margin: auto;
}

@media (max-width: 1440px) {
    .container {
        max-width: 1240px;
    }
}

@media (max-width: 1366px) {
    .container {
        max-width: 1160px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}
.navbar-brand img.logo { width: min(150px, 100%); }
.whatsapp img.logo { width: 34px; max-width: 34px; }
.hero-stats div { min-height: 62px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.investment-section { width: 100%; }
.amenity-card span img { width: 42px; height: 42px; object-fit: contain; }
.amenity-card.green span img { filter: brightness(0) invert(1); }
.works-timeline .moving-red-dot { display: none; }
.timeline-item { opacity: .35; transition: opacity .35s ease; }
.timeline-item.active { opacity: 1; }
.works-timeline { padding-left: 44px; }
.works-timeline::before { left: 10px; top: 20px; bottom: 95px; }
.timeline-dot { left: -43px; top: 0; width: 20px; height: 20px; }
.timeline-item.active .timeline-dot { background: #ff1b16; border: 4px solid #fff; box-shadow: 0 0 0 3px #d9d9d9; animation: pulseRed 1.2s infinite; }

.enquiry-modal .modal-content { border: 0; border-radius: 28px; overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.enquiry-modal .modal-body { padding: 34px; background: linear-gradient(135deg, #fff 0%, #f7f8ef 100%); }
.enquiry-modal h3 { font-family: "Urbanist", sans-serif; font-weight: 900; font-size: 32px; margin: 0 0 8px; color: #111; text-align: center; }
.enquiry-modal h2 { font-family: "Urbanist", sans-serif; font-weight: 900; font-size: 32px; margin: 0 0 8px; color: #111; text-align: center; }
.enquiry-modal p { text-align: center; margin: 0 0 24px; color: #444; font-size: 14px; }
.enquiry-modal .form-control { min-height: 52px; border-radius: 16px;font-size: 14px; border: 1px solid #ddd; box-shadow: none; padding: 12px 16px; }
.enquiry-modal .form-control:focus { border-color: var(--olive); }
.enquiry-close { position: absolute; right: 16px; top: 16px; z-index: 2; background-color: #fff; border-radius: 50%; opacity: 1; 
  /* box-shadow: 0 8px 22px rgba(0,0,0,.14);  */
}
.fixed-mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 12px; background: rgba(255,255,255,.96); box-shadow: 0 -10px 30px rgba(0,0,0,.15); z-index: 1050; }
.fixed-mobile-cta a, .fixed-mobile-cta button { font-family: "Urbanist", sans-serif; height: 46px; border-radius: 50px; border: 0; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; text-decoration: none; }
.fixed-mobile-cta button { background: var(--green); color: #fff; }
.fixed-mobile-cta a { background: var(--olive); color: #fff; }

@media (max-width: 1199px) {
  .nav-shell { max-width: calc(100% - 24px); padding: 12px 18px; }
  .navbar-collapse { max-height: calc(100vh - 130px); overflow-y: auto; }
  .hero-content { padding-top: 150px; }
  .hero-copy {
     /* padding-left: 0; */
     }
  .hero-copy h1 { font-size: clamp(38px, 5vw, 50px); }
  .hero-badges { flex-wrap: wrap; }
  .investment-title, .investment-card { padding: 34px 26px; }
  .owning-content { padding: 50px 30px; }
  .villa-faq-grid { gap: 45px; }
}

@media (max-width: 991px) {
  body { padding-bottom: 72px; }
  .fixed-mobile-cta { display: grid; }
  .site-nav { top: 12px; }
  .nav-shell { border-radius: 28px; }
  .navbar-brand { min-width: 0; }
  .navbar-brand img.logo { width: 190px; }
  .navbar-collapse { margin-top: 12px; padding: 14px; border-top: 1px solid #eee; background: #fff; border-radius: 22px; }
  .navbar-nav { gap: 4px; }
  .nav-actions { width: 100%; justify-content: space-between; padding-top: 8px; }
  .hero-section { min-height: auto; padding-bottom: 40px;   background: url('../images/mob-banner.jpg') center/cover no-repeat;}
  .hero-content { padding-top: 135px; }
  .hero-copy h1 { font-size: clamp(34px, 8vw, 46px); }
  .hero-copy p { font-size: 18px; }
  .enquiry-card { max-width: 100%; margin-top: 10px; }
  .hero-stats { width: 100%; grid-template-columns: repeat(2, 1fr); margin-top: 34px; padding: 18px; border-radius: 28px; }
  .hero-stats div { border-right: 0; }
  .hero-stats div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.55); }
  .hero-stats div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.55); }
  .section { padding: 70px 0; }
  .section h2, .investment-title h2, .location-section h2, .villa-text h2, .site-visit-card h2, .faq-card h2 { font-size: 28px; }
  .investment-section { grid-template-columns: repeat(2, 1fr); }
  .farmland-works-section { padding: 65px 0; }
  .works-video img { height: 340px; }
  .owning-investment { grid-template-columns: 1fr; }
  .owning-img { min-height: 300px; }
  .owning-content { order: 2; }
  .owning-img.left-img { order: 1; }
  .owning-img.right-img { order: 3; }
  .left-img, .right-img { border-radius: 0; }
  .amenities-box { max-width: 100%; }
  .map-box { height: 420px; }
  .villa-faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-partner { justify-content: center; text-align: center; }
  .gallery-header {flex-direction: column; align-items: flex-start !important; margin-bottom: 2px !important;}
  .gallery-grid {gap: 2px !important;}
  .gallery-item {border-radius: 0 !important;}
  .gallery-item:hover{  transform: none !important;}
  .gallery-header p {max-width: 100% !important; text-align: justify;}
  .gallery-header h2 {max-width: 100% !important;}

}

@media (max-width: 767px) {
  .hero-section { background-position: center top; }
  .nav-shell { max-width: calc(100% - 16px); padding: 10px 12px; }
  .navbar-brand img.logo { width: 158px; }
  .custom-toggler {
     /* width: 42px; height: 42px;  */
    /* flex: 0 0 42px; */
   }
  .hero-content { padding-top: 115px; }
  .hero-copy h1 { font-size: 34px; line-height: 1.05; }
  .hero-badges { display: grid; grid-template-columns: 1fr; }
  .hero-badges div { min-width: 100%; }
  .enquiry-card { padding: 24px 18px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div, .hero-stats div:nth-child(odd) { border-right: 0; }
  .hero-stats div { border-bottom: 1px solid rgba(255,255,255,.55); padding: 16px 10px; }
  .hero-stats div:last-child { border-bottom: 0; }
  .investment-section { grid-template-columns: 1fr; border-left: 0; }
  .investment-title { grid-column: span 1; }
  .investment-title, .investment-card { min-height: auto; padding: 30px 20px; }
  .works-video img { height: 260px; }
  .timeline-item { padding-bottom: 36px; }
  .owning-banner { padding: 48px 0; }
  .owning-banner h2, .amenities-head h2 { font-size: 24px; }
  .owning-banner p, .owning-banner strong, .owning-content p, .section p, .location-section p, .villa-text p, .site-visit-card p { font-size: 16px; text-align: left; }
  .owning-content { padding: 38px 18px; }
  .owning-content h3 { font-size: 24px; }
  .amenities-tabs { flex-direction: row; align-items: center; gap: 10px; }
  .amenities-tabs li + li { border-left: 0; }
  .amenities-box { grid-template-columns: 1fr 1fr; border-radius: 20px; }
  .amenity-card { min-height: 145px; padding: 15px; text-align: center; }
  .amenity-card span img {width: 35px; height: 35px;}
  .amenity-card p { font-size: 14px; }
  .location-section { padding: 55px 0; }
  .table-head, .table-row { grid-template-columns: 1fr 74px; }
  .table-head span, .table-row span { padding: 10px; font-size: 12px; }
  .map-box { height: 300px; border-radius: 18px; }
  .villa-faq-section { padding: 55px 0; }
  .villa-img, .villa-img.top-img, .site-visit-card img { border-radius: 22px; }
  .villa-img img, .site-visit-card img { height: auto; min-height: 220px; object-fit: cover; }
  .site-actions { flex-direction: column; }
  .btn-main, .btn-outline { width: 100%; }
  .accordion-button { font-size: 16px; padding: 14px 18px; }
  .footer-brand { gap: 18px; flex-wrap: wrap; }
  .footer-brand img { max-height: 56px; }
  .footer-partner img { max-height: 64px; }
  .enquiry-modal .modal-dialog { margin: 12px; }
  .enquiry-modal .modal-body { padding: 30px 18px 22px; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: 30px; }
  .hero-copy p { font-size: 16px; }
  .btn-brand { padding: 12px 18px; }
  .amenities-box { grid-template-columns: repeat(3, 1fr); }
  .amenity-card, .amenity-card:nth-child(2n), .amenity-card:nth-child(3n) { border-right: 0; border-bottom: 1px solid #e5e5e5; }
  .amenity-card:last-child { border-bottom: 0; }
}


@media (max-width: 575px) {
  .investment-section {
    overflow: hidden;
  }

  .investment-title,
  .investment-card {
    width: 100%;
    min-height: auto;
    padding: 28px 22px;
  }

  .investment-card h4 {
    font-size: 17px;
    line-height: 1.25;
    word-break: normal;
  }

  .investment-card p {
    font-size: 15px;
    line-height: 1.55;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

.gallery-section {
  margin: 0 auto;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 34px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -1px;
  color: var(--dark);
  font-family: "Urbanist", sans-serif;
  max-width: 35%;
}

.gallery-header p {
  font-size: 16px;
  line-height: 1.45;
  padding-bottom: 8px;
   font-family: "Urbanist", sans-serif;
   max-width: 50%;
}

/* THE EXACT 5-GRID SYSTEM MATCHING THE MOCKUP */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr; /* Asymmetric balance */
  gap: 24px;
}

/* Explicit scaling positions based on image_060ecd.jpg */
.box-1 {
  grid-column: 1 / 3; /* Spans across 2 columns horizontally */
  aspect-ratio: 2 / 1;
}

.box-2 {
  grid-column: 3 / 4; /* Top Right Portrait */

}

.box-3 {
  grid-column: 1 / 2; /* Bottom Left Portrait */
}

.box-4 {
  grid-column: 2 / 3; /* Bottom Center Squareish */
}
.box-5 {
  grid-column: 3 / 3; /* Bottom Center Squareish */
}
/* CAROUSEL LOGIC */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
}
.gallery-item:hover{  transform: scale(1.05);}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Pure CSS Carousel Animation on Hover */
/* Slides horizontally based on total image steps */
.gallery-item:hover .carousel-track {
  animation: hoverCarousel 6s steps(1, end) infinite;
}

@keyframes hoverCarousel {
  10%, 100% { transform: translateX(0%); }
  35%      { transform: translateX(-100%); }
  70%      { transform: translateX(-200%); }
  /* 75%      { transform: translateX(-300%); } */
}

/* 1. Word by Word Base Styles */
.animate-words .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

/* 2. Letter by Letter Base Styles */
.animate-letters .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px) rotate(5deg);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

/* Active states triggered by JavaScript when scrolled into view */
.animate-words.active .word,
.animate-letters.active .letter {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}
