
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
  font-family: "DM Sans", sans-serif;
}

/* NAVBAR */
.custom-nav{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.custom-navbar {
  background: #fff;
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 20px auto;
  max-width: 70%;
}

.nav-link {
  font-weight: 500;
  color: #000 !important;
}
a.btn.btn-success.px-4 {
  background: linear-gradient(90deg, #166534 0%, #16A34A 100%);
}
/* HERO */
.hero-slider,
.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}

/* REQUIRED FIX */
.hero-slider,
.carousel,
.carousel-inner {
  position: relative;
  overflow: visible !important;
}

.carousel-item {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* OVERLAY FIX */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;                 /* FIX */
  pointer-events: none;       /* FIX */
}

/* CONTENT ABOVE OVERLAY */
.carousel-item .container {
  position: relative;
  z-index: 2;                 /* FIX */
}

/* BUTTON CLICK FIX */
.carousel-item a,
.carousel-item button {
  position: relative;
  z-index: 3;                 /* FIX */
  pointer-events: auto;
}

/* TEXT */
.carousel h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
}
.carousel p{
  font-size: 20px;
  font-weight: 400;
}
.small-text {
  font-size: 14px;
  opacity: 0.9;
}

/* RIGHT CENTER DOTS */
.custom-indicators {
  position: absolute;
  right: 40px !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%);
  flex-direction: column;
  margin: 0;
  width: auto;
  BORDER: 1PX SOLID #FFF;
  padding: 5px;
  height: 130px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;                /* FIX */
  pointer-events: auto;       /* FIX */
}

.carousel-indicators.custom-indicators {
  justify-content: center;
  align-items: center;
}

.custom-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  margin: 0px;
  border: none;
}

.custom-indicators .active {
  width: 6px !important;
  height: 20px !important;
  border-radius: 35%;
  opacity: 1;
  transform: scale(1.4);
}

.carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .carousel h1 {
    font-size: 36px;
  }
  .custom-indicators {
    right: 15px;
  }

  /* MOBILE SAFETY FIX */
  .hero-slider,
  .carousel,
  .carousel-item {
    min-height: 100svh;
  }

  .overlay {
    background: rgba(0,0,0,0.45);
  }
}

/* Disable touch capture on slide */
.carousel-item {
  pointer-events: none;
}

/* Re-enable touch ONLY on content */
.carousel-item .container,
.carousel-item .container * {
  pointer-events: auto;
}

/* Ensure buttons always clickable */
.carousel-item a,
.carousel-item button {
  pointer-events: auto !important;
}

/* Kill Android transform touch bug */
.carousel-inner {
  transform: none !important;
}


/* LEFT IMAGE GRID */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.about-images .img {
  background: #e0e0e0;
  border-radius: 30px;
}

.about-images .tall {
  grid-row: span 2;
  height: 250px;
}

.about-images .top,
.about-images .bottom {
  height: 230px;
}

/* TEXT */
.section-label {
  font-size: 14px;
  color: #000;
}

.about-title , .heading{
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.2;
}

.about-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
}

/* FEATURES */
.feature-icon {
  width: 48px;
  height: 48px;
  background: #e0e0e0;
  border-radius: 50%;
  margin-right: 15px;
}

/* STATS */
.stats-row {
  margin-top: 40px;
}

.stat-card {
  background: #f3fbf5;
  border: 1px solid #bfe6c8;
  border-radius: 20px;
  padding: 25px 10px;
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 14px;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 30px;
  }

  .about-images .tall {
    height: 320px;
  }
}
/* FULL WIDTH BACKGROUND */
.why-choose-full {
  position: relative;
  min-height: 100vh;
  background: 
    linear-gradient(
      to right,
      rgba(0,0,0,0.15),
      rgba(26,143,75,0.85)
    ),
    url("./assets/company/farm-land.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* RIGHT WHITE BOX */
.why-box {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* TEXT */
.why-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-box p {
  font-size: 15px;
  color: #333;
}

/* ITEMS */
.why-item {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: #e0e0e0;
  border-radius: 50%;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-choose-full {
    background: 
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(26,143,75,0.85)
      ),
      url("images/why-bg.jpg") center/cover no-repeat;
  }

  .why-box {
    margin: 20px;
  }
}

/* TESTIMONIALS */
.testimonial-image-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.testimonial-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* NAV WRAPPER */
.testimonial-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 12px;
}

/* BUTTON STYLE */
.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SWIPER ICON SIZE */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
  color: #000;
}

/* REMOVE DEFAULT POSITIONS */
.swiper-button-prev,
.swiper-button-next {
  position: static;
}
/* let */
.cta-img {
  max-height: 180px;   /* reduce size */
  width: auto;
}

@media (max-width: 768px) {
  .cta-img {
    max-height: 140px;
  }
}

.cta-box {
  background: linear-gradient(90deg, #c8ecd4, #e8f7ee);
  border-radius: 20px;
  padding: 30px;
  max-width: 650px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 28px;
  font-weight: 700;
}

.cta-box p {
  max-width: 520px;
  margin: 15px 0 25px;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box {
    text-align: center;
  }
  a.btn.btn-outline-success.px-4.py-3.text-black.w-100.aos-init.aos-animate {
    width: 50% !important;
  }

  .cta-img {
    margin-top: 20px;
  }
}
/* amenities */
.amenity-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.amenities-overlay h2.heading {
    color: #222;
}
.amenities-overlay p {
    color: #171717;
}
.amenity-card:hover {
  transform: translateY(-6px);
}

.amenity-icon {
  width: 50px;
  height: 50px;
  background: #e8f7ee;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
}
.amenities-section {
  background: url("./assets/amenities.png") center/cover no-repeat;
  position: relative;
  padding: 80px 0;
}
.amenity-card {
  background: rgba(255, 255, 255, 0.95);
}



.amenities-section::before {
  content: "";
  position: absolute;
  inset: 0;
    background: linear-gradient(to bottom, rgb(255 255 255 / 15%) 0%, rgb(51 50 50 / 95%) 100%);
  z-index: 1;
}

/* Keep content above overlay */
.amenities-section > * {
  position: relative;
  z-index: 2;
}


/* property cards */
/* FILTER TAGS */
.filter-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #2e9e5b;
  color: #2e9e5b;
  margin: 5px;
  font-size: 14px;
  cursor: pointer;
}

.filter-tag.active {
  background: #2e9e5b;
  color: #fff;
}

/* PROPERTY CARD */
.property-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.property-img {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.property-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
}

/* TOP BADGE */
.badge-top {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 12px;
}

/* BOTTOM OVERLAY */
.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* CONTENT */
.property-content {
  padding: 12px 5px;
}

.property-content small {
  color: #222;
}

.property-content h5 {
  font-weight: 600;
  margin: 5px 0;
}

.property-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
/* feature */
.features-section {
  background: #F6F6F6;
}

.features-section h2 {
  font-weight: 700;
}

.features-section p {
  max-width: 600px;
  margin: auto;
  color: #666;
}

/* CARD */
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

/* ICON */
.feature-icon {
  width: 60px;
  height: 60px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #777;
}
/* gallery */
 :root {
      --primary-color: #198754;
      --dark-color: #333;
      --light-color: #f8f9fa;
  }

  .gallery-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      min-height: 100vh;
      padding: 80px 0;
  }
  .gallery-box {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      border: 1px solid transparent;
  }

  .gallery-box:hover {
      transform: translateY(-5px) scale(1.01);
      box-shadow: 0 15px 30px rgba(25, 135, 84, 0.2);
  }

  /* Lightbox Styles */
  .lightbox-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
      display: block;
      opacity: 1;
  }

  .lightbox-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 1000px;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .lightbox-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 8px;
      animation: fadeIn 0.5s ease;
  }

  @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
  }

  /* Navigation Buttons */
  .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
  }

  .lightbox-nav:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-50%) scale(1.1);
  }

  .lightbox-prev {
      left: 20px;
  }

  .lightbox-next {
      right: 20px;
  }

  .lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
  }

  .lightbox-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(90deg);
  }

  /* Counter */
  .lightbox-counter {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 18px;
      background: rgba(0, 0, 0, 0.5);
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 500;
  }

  /* Caption */
  .lightbox-caption {
      position: absolute;
      bottom: 60px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      text-align: center;
      max-width: 80%;
      font-size: 16px;
      background: rgba(0, 0, 0, 0.5);
      padding: 10px 20px;
      border-radius: 8px;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
      .gallery-box {
          height: 200px;
      }
      
      .lightbox-nav {
          width: 50px;
          height: 50px;
          font-size: 20px;
      }
      
      .lightbox-prev {
          left: 10px;
      }
      
      .lightbox-next {
          right: 10px;
      }
      
      .lightbox-close {
          top: 10px;
          right: 10px;
          width: 40px;
          height: 40px;
          font-size: 20px;
      }
      
      .lightbox-counter {
          font-size: 16px;
          bottom: 10px;
      }
      
      .lightbox-caption {
          font-size: 14px;
          bottom: 50px;
      }
  }

  @media (max-width: 576px) {
      .gallery-box {
          height: 180px;
      }
      
      .lightbox-nav {
          width: 40px;
          height: 40px;
          font-size: 18px;
      }
      
      .lightbox-container {
          width: 95%;
          height: 70vh;
      }
  }

/* Responsive height */
@media (max-width: 768px) {
  .gallery-box {
    height: 180px;
  }
}
/* contact */
.contact-wrapper {
  position: relative;
}

/* LEFT CARD */
.contact-info-card {
  background: linear-gradient(90deg, #c9ecd8, #dff4e8);
  border-radius: 30px;
  padding: 40px;
  height: 100%;
}

.contact-info-card h3 {
  font-weight: 700;
  margin-bottom: 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 15px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-item h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 14px;
  margin: 0;
}

.whatsapp-btn {
  margin-top: 30px;
  background: linear-gradient(180deg, #166534 0%, rgba(22,163,74,0.95) 100%);
  color: #fff !important;
  border-radius: 12px;
  padding: 12px 20px;
}
.whatsapp-btn:hover{
  color: #fff !important;
}

/* RIGHT FORM CARD */
.contact-form-card {
  background: linear-gradient(180deg, #166534 0%, #16A34A 100%);
  border-radius: 30px;
  padding: 50px;
  min-height: 520px;
  color: #fff;
  border: 5px solid #2bcd66;
}


.contact-form-card label {
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form-card .form-control {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 12px;
  padding: 12px;
}

.contact-form-card .form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  background: #e6f3ec;
  color: #000;
  border-radius: 12px;
  padding: 12px 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* LEFT CARD - SMALL HEIGHT */
.small-card {
  padding: 35px;
  height: auto;           /* content based */
}

/* RIGHT CARD - BIG HEIGHT */
.big-card {
  padding: 50px;
  min-height: 520px;      /* ðŸ”¥ taller card */
}

/* MERGE LOOK */
.contact-merge {
  position: relative;
  align-items: center;
  justify-content: center;
}

.contact-form-card {
  margin-left: -40px;
  z-index: 2;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .contact-form-card {
    margin-left: 0;
    min-height: auto;
  }
}
.contact-info-heading {
    color: #111;
    font-size: 35px;
}
.site-footer {
  background: linear-gradient(180deg, #1b1c26, #12131a);
  color: #d1d1d1;
  padding: 60px 0 30px;
  font-size: 14px;
}

/* LOGO */
.footer-logo {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

/* TEXT */
.footer-text {
  max-width: 320px;
  margin-bottom: 20px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social span {
  width: 38px;
  height: 38px;
  background: #e6e6e6;
  border-radius: 50%;
}

/* TITLES */
.site-footer h6 {
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1d1d1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #16A34A;
}

/* CONTACT */
.footer-contact {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact span {
  width: 38px;
  height: 38px;
  background: #e6e6e6;
  border-radius: 50%;
  flex-shrink: 0;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-text {
    max-width: 100%;
  }

  .footer-social {
    margin-bottom: 20px;
  }
}
.site-footer {
  background: linear-gradient(180deg, #1b1c26, #12131a);
  color: #d1d1d1;
  padding: 60px 0 30px;
  font-size: 14px;
}

/* LOGO */
.footer-logo {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

/* TEXT */
.footer-text {
  max-width: 320px;
  margin-bottom: 20px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social span {
  width: 38px;
  height: 38px;
  background: #e6e6e6;
  border-radius: 50%;
}

/* TITLES */
.site-footer h6 {
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1d1d1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #16A34A;
}

/* CONTACT */
.footer-contact {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact span {
  width: 38px;
  height: 38px;
  background: #e6e6e6;
  border-radius: 50%;
  flex-shrink: 0;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-text {
    max-width: 100%;
  }

  .footer-social {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .custom-navbar{
    max-width: 90%;
  }
  .hero-slider, .carousel, .carousel-inner, .carousel-item {
    height: 500px;
    width: 100%;
  }
  .about-images {
    display: flex;
    flex-wrap: wrap;
  }
  .about-images .tall{
    height: 200px;
    flex: 1 1 100%;
  }
  .property-img img{
    width: 100%;
    height: 200px;
    flex: 1 1 100%;
  }
  .cta-img{
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1300px) {
  .custom-navbar{
    max-width: 80%;
    padding: 10px;
  }
  .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    margin-right: 1px;
    margin-left: 1px;
  }
  .custom-indicators {
    height: 100px !important;
  }
  a.btn.btn-success.px-4 {
    padding: 10px 20px !important;
  }
  .carousel-item h1 {
    font-size: 50px;
    font-weight: 700;
  } 
  .about-title, .heading {
    font-size: 40px;
    font-weight: 700;
  }
  .about-images .top, .about-images .bottom {
    height: 200px !important;
  }
  .about-images .tall {
    height: 220px !important;
  }
  .why-choose-full{
    min-height: 140vh !important;
  }
  .why-box{
    padding: 25px !important;
  }
  .why-choose-full .col-lg-6{
    width: 40% !important;
  }
  .form-control{
    padding: 5px !important;
  }
  label.form-label{
    font-size: 15px !important;
    font-weight: 400 !important;
    margin-bottom: 5px !important;
  }
  #consultationForm .mb-3{
    margin-bottom: 8px !important;
  }
  .form-title{
    font-size: 20px !important;
    font-weight: 600 !important;
  }
}
@media screen and (min-width: 350px) and (max-width: 780px) {
  .carousel-indicators.custom-indicators{
    display: none;
  }
  .about-images .tall {
    display: none;
  }
  .info-icon{
    margin: 0px;
  }
  .custom-navbar{
    margin: 5px auto !important;
    position: absolute !important;
  }
  .testimonial-image-card img {
    width: 100%;
    height: 410px;
    object-fit: contain;
  }
  .about-title, .heading {
    font-size: 35px;
    font-weight: 700;
  }
  .gallery-box {
    height: 250px;
  }
  .navbar-toggler{
    border: none !important;
  }
  .navbar-toggler:hover{
    border: none !important;
  }
  .navbar-toggler:focus{
    box-shadow: none !important;
    border: none !important;
  }
  a.btn.btn-success.px-4{
    padding: 10px !important;
    width: auto !important;
  }
 .modal-content{
  min-height: 60vh !important;
 }
}

/* responsive */
/* ============================================= */
/* MOBILE NAVBAR FIXES - MENU NOT CLOSING ISSUE */
/* ============================================= */

@media (max-width: 991px) {
  /* Fix for navbar on mobile */
  .custom-navbar {
    max-width: 95% !important;
    margin: 10px auto !important;
    padding: 10px 20px !important;
  }
  
  /* Fix for mobile menu not closing */
  .navbar-collapse {
    position: fixed !important;
    top: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    background: white !important;
    border-radius: 15px !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    z-index: 9999 !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    transition: all 0.3s ease !important;
  }
  
  .navbar-nav {
    flex-direction: column !important;
    text-align: center !important;
    margin: 0 !important;
  }
  
  .nav-item {
    width: 100% !important;
  }
  
  .nav-link {
    padding: 12px !important;
    border-radius: 10px !important;
    display: block !important;
  }
  
  .nav-link:hover {
    background: #f8f9fa !important;
  }
  
  /* Fix for the button in mobile menu */
  .navbar-collapse .btn-success {
    width: 100% !important;
    margin-top: 10px !important;
    justify-content: center !important;
  }
  
  /* Toggler button fixes */
  .navbar-toggler {
    padding: 8px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }
  
  /* When menu is open, hide content behind */
  body.menu-open {
    overflow: hidden !important;
  }
}

/* ============================================= */
/* MOBILE ALIGNMENT FIXES - ALL SECTIONS */
/* ============================================= */

@media (max-width: 768px) {
  /* General container fixes */
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* Hero section fixes */
  .carousel-item .container {
    padding-top: 60px !important;
  }
  
  .carousel h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }
  
  .carousel p {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }
  
  .hero-slider .btn {
    width: 100% !important;
    justify-content: center !important;
    margin-bottom: 10px !important;
  }
  
  /* Hide indicators on mobile */
  .custom-indicators {
    display: none !important;
  }
  
  /* About section fixes */
  .about-section {
    text-align: left !important;
  }
  
  .about-images {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
  }
  
  .about-images .img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
  }
  
  .about-title {
    font-size: 28px !important;
    text-align: left !important;
    margin-bottom: 15px !important;
  }
  
  .about-text {
    text-align: left !important;
    margin-bottom: 20px !important;
  }
  
  .feature-list {
    justify-content: center !important;
    margin-bottom: 20px !important;
  }
  
  .feature-list .col-md-6 {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 15px !important;
  }
  
  .stats-row {
    gap: 15px !important;
  }
  
  .stat-card {
    padding: 20px 10px !important;
    margin-bottom: 15px !important;
  }
  
  /* Why Choose Us fixes */
  .why-choose-full {
    min-height: auto !important;
    padding: 40px 0 !important;
    background-position: center !important;
  }
  
  .why-box {
    width: 90% !important;
    margin: 0 auto !important;
    padding: 25px !important;
  }
  
  .why-box h2 {
    font-size: 24px !important;
    text-align: center !important;
  }
  
  .why-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }
  
  .why-icon {
    margin: 0 auto 10px !important;
  }
  
  /* Testimonials fixes */
  .testimonials-section {
    text-align: center !important;
  }
  
  .testimonial-title {
    font-size: 24px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }
  
  .testimonial-image-card {
    margin-bottom: 30px !important;
  }
  
  .testimonial-image-card img {
    border-radius: 15px !important;
  }
  .testimonial-text{
    text-align: left !important;
  }
  .testimonial-nav {
    position: relative !important;
    justify-content: center !important;
    margin-top: 20px !important;
    gap: 20px !important;
  }
  
  /* CTA section fixes */
  .cta-box {
    text-align: center !important;
    padding: 30px 20px !important;
  }
  
  .cta-box h2 {
    font-size: 24px !important;
  }
  
      .cta-buttons {
        flex-direction: row;
        gap: 15px !important;
        display: flex;
    }
  
  .cta-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  /* Amenities fixes */
  .amenities-section {
    text-align: center !important;
    padding: 40px 0 !important;
  }
  
  .amenity-card {
    padding: 20px 10px !important;
    margin-bottom: 15px !important;
  }
  
  .amenity-icon {
    margin: 0 auto 10px !important;
  }
  
  /* Property section fixes */
  .property-section {
    text-align: center !important;
  }
  
  .filter-tag {
    display: block !important;
    margin: 5px auto !important;
    width: 80% !important;
  }
  
  .property-card {
    margin-bottom: 20px !important;
  }
  
  /* Features fixes */
  .features-section {
    text-align: center !important;
  }
  
  .feature-card {
    margin-bottom: 20px !important;
    padding: 20px !important;
  }
  
  .feature-icon {
    margin: 0 auto 15px !important;
  }
  
  /* Gallery fixes */
  .gallery-section {
    text-align: center !important;
  }
  
  .gallery-box {
    height: 200px !important;
    margin-bottom: 15px !important;
  }
  
  /* Contact section fixes */
  .contact-section {
    text-align: center !important;
  }
  
  .contact-merge {
    flex-direction: column !important;
  }
  
  .contact-info-card,
  .contact-form-card {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 25px !important;
  }
  
  .info-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .info-item {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .whatsapp-btn,
  .submit-btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  /* Footer fixes */
  .site-footer {
    text-align: center !important;
  }
  
  .footer-text {
    max-width: 100% !important;
    margin: 0 auto 20px !important;
  }
  
  .footer-social {
    justify-content: center !important;
    margin-bottom: 20px !important;
  }
  
  .footer-contact {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
  }
  
  .footer-contact span {
    margin: 0 auto !important;
  }
}

/* ============================================= */
/* SMALL MOBILE FIXES (350px - 480px) */
/* ============================================= */

@media (max-width: 480px) {
  /* Even smaller text for very small screens */
  .carousel h1 {
    font-size: 26px !important;
  }
  
  .about-title, .heading {
    font-size: 22px !important;
  }
  
  .carousel p,
  .about-text,
  .why-box p,
  .cta-box p {
    font-size: 14px !important;
  }
  
  /* Smaller buttons */
  .btn {
    padding: 10px 15px !important;
    font-size: 14px !important;
  }
  
  /* Gallery images smaller */
  .gallery-box {
    height: 250px !important;
  }
  
  /* Property cards smaller */
  .property-img img {
    height: 180px !important;
  }
  
  /* Stats in a single column */
  .stats-row {
    grid-template-columns: 1fr !important;
  }
  
  .stat-card {
    margin-bottom: 10px !important;
  }
}

/* ============================================= */
/* TAP TARGET SIZES FOR MOBILE ACCESSIBILITY */
/* ============================================= */

@media (max-width: 768px) {
  /* Ensure minimum tap target size */
  .nav-link,
  .filter-tag,
  .btn,
  .swiper-button-prev,
  .swiper-button-next,
  .lightbox-nav,
  .lightbox-close {
    min-height: 44px !important;
    min-width: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Form inputs easier to tap */
  .form-control,
  .form-select {
    height: 44px !important;
    font-size: 16px !important; /* Prevents iOS zoom */
  }
  
  /* Prevent horizontal scrolling */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
  }
  
  /* Images don't overflow */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* ============================================= */
/* LANDSCAPE MODE FIXES */
/* ============================================= */

@media (max-width: 991px) and (orientation: landscape) {
  .hero-slider,
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 100vh !important;
    min-height: 400px !important;
  }
  
  .navbar-collapse {
    max-height: 60vh !important;
    top: 70px !important;
  }
}

/* ============================================= */
/* JAVASCRIPT FIX FOR MENU CLOSING */
/* ============================================= */

/* Add this style for JavaScript to work with */
.menu-open {
  overflow: hidden !important;
}

.navbar-collapse.show {
  display: block !important;
}

.navbar-collapse.collapsing {
  height: 0 !important;
  overflow: hidden !important;
  transition: height 0.35s ease !important;
}
/* modal */

    /* Button to trigger modal */
    .consultation-btn {
        background: linear-gradient(135deg, #198754 0%, #146c43 100%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2);
    }

    .consultation-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(25, 135, 84, 0.3);
    }

    /* Desktop Modal */
    .modal-dialog {
        max-width:850px;
        width: 67%;
        margin: auto;
    }

    .modal-content {
        min-height: 78vh;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .modal-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .submit-btn {
        background: linear-gradient(135deg, #198754 0%, #146c43 100%);
        color: #fff;
        border-radius: 50px;
        padding: 14px 40px;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
        width: 100%;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(25, 135, 84, 0.2);
    }

    .form-control {
        border-radius: 12px;
        padding: 14px 18px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: #198754;
        box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.15);
    }

    .form-label {
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

    /* Tablet Optimization */
    @media (max-width: 992px) {
        .modal-dialog {
            max-width: 700px;
            width: 65%;
        }
        
        .modal-content {
            min-height: auto;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .modal-body {
            padding: 20px !important;
        }
    }

    /* Mobile Landscape */
    @media (max-width: 768px) and (orientation: landscape) {
        .modal-dialog {
            max-height: 90vh;
            margin: 5vh auto;
        }
        
        .modal-content {
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .form-section {
            padding: 20px !important;
        }
    }

    /* Mobile Portrait */
    @media (max-width: 576px) {
      
        
        .modal-dialog {
            margin: 0;
            max-width: 100%;
            width: 100%;
            height: 100%;
        }
        
        .modal-content {
            min-height: 100vh;
            border-radius: 0;
            margin: 0;
            max-height: 100vh;
            overflow-y: auto;
        }
        
        .modal-body {
            padding: 15px !important;
        }
        
        .form-section {
            padding: 20px 15px !important;
        }
        
        .d-flex.justify-content-between {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .d-flex.justify-content-between .btn-close {
            align-self: flex-end;
            margin-top: -40px;
            margin-bottom: 20px;
        }
        
        h4 {
            font-size: 1.4rem;
            margin-bottom: 20px !important;
            padding-right: 40px;
        }
        
        .form-control {
            padding: 12px 15px !important;
        }
        
        .submit-btn {
            padding: 12px 30px;
        }
        
        /* Ensure content doesn't get hidden behind keyboard on mobile */
        .modal-content {
            -webkit-overflow-scrolling: touch;
        }
    }

    /* Extra Small Devices */
    @media (max-width: 375px) {
        .form-section {
            padding: 15px 12px !important;
        }
        
        h4 {
            font-size: 1.3rem;
        }
        
        .form-label {
            font-size: 0.9rem;
        }
        
        .form-control::placeholder {
            font-size: 0.9rem;
        }
    }

    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Demo button styling */
    .demo-container {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 300px;
        flex-direction: column;
        gap: 20px;
    }

    .demo-container h2 {
        color: #333;
        margin-bottom: 20px;
    }

/* inner baner */
/* =========================
   ABOUT / BANNER SECTION
========================= */

.abt-banner {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background: url("./assets/Frame.png") center / cover no-repeat;
  display: flex;
  align-items: center;
   padding-top: 120px; /* ✅ space for fixed navbar */
}

/* BLACK OVERLAY */
.abt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* CONTENT LAYER */
.abt-content {
  position: relative;
  z-index: 2;
}

/* TEXT */
.abt-subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.abt-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
}

.abt-desc {
  font-size: 18px;
  max-width: 520px;
  opacity: 0.9;
}

/* BUTTON */
.abt-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #28a745;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.abt-btn:hover {
  background: #1e7e34;
  color: #fff;
}
/* TABLET */
@media (max-width: 991px) {
  .abt-title {
    font-size: 42px;
  }

  .abt-desc {
    font-size: 16px;
  }
  
    .abt-banner {
    padding-top: 130px; /* slightly taller navbar */
  }
  
}

/* MOBILE */
@media (max-width: 576px) {
  .abt-banner {
    min-height: 50vh;
    text-align: center;
    padding-top: 120px; /* mobile navbar height */
       padding-bottom: 50px; /* space below Enquiry button */

  }

  .abt-title {
    font-size: 30px;
  }

  .abt-desc {
    font-size: 15px;
    margin: auto;
  }
  .abt-content a.btn.btn-success.px-4{
    width: 40% !important;
    margin: 0 auto !important;
  }
  .abt-btn {
    padding: 12px 26px;
    font-size: 14px;
    
  }
}

/* Property link */
.property-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* icon style */
  
    .info-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 18px;
  color: #1b6f3b; /* match your green brand */
  line-height: 1;
}

    
.info-item:hover .info-icon {
  background: #25D366; /* WhatsApp green or brand color */
    color:fff;
}
    
.info-item:hover .info-icon i {
  color: #ffffff !important;
}


/* WHY CHOOSE US - ICON STYLES */
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.why-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: #f1f3f6; /* default background */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-icon i {
  font-size: 22px;
  color: #25D366; /* default icon color */
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.why-item:hover .why-icon {
  background-color: #25D366; /* brand primary color */
}

.why-item:hover .why-icon i {
  color: #ffffff;
}

/* Optional subtle lift effect */
.why-item:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

    
