      .swiper {
        width: 100%;
        height: 100%;
      }

      .swiper-slide {
        text-align: center;
        background: #fff;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
      }

      .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .disclaimer-content {
            display: none;
        }
        .read-more-btn {
            color: #000000;
            cursor: pointer;
            text-decoration: underline;
        }

    .pro_head a {
  text-decoration: none;
}
.cnt_side span.Under_con {
    border-left: 4px solid var(--colorPrimary);
    color: var(--colorPrimary);
    padding: 2px 10px;
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 19px;
    font-weight: 700;
}

.product_price .details_btn_pro {
    border-radius: 4px;
    background: var(--colorPrimary);
    border: none;
    padding: 9px 30px;
    color: #fff;
    font-weight: 600;
    transition: all 0.5s ease;
}
.newamenitybox {
    padding-top: 20px;
}

.newamenitybox h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e1e1e;
}
.product_price .details_btn_pro:hover {
    background: var(--colorSecondary);
}
/* IMAGE */
.main_bannerImg {
  position: relative;
}

.main_bannerImg img {
  position: relative;
  z-index: 0;
}

/* OVERLAY */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
  z-index: 1;
}

/* CAPTION */
.carousel-caption {
  position: absolute;
  left: 8%;
  right: auto;
  bottom: 10%;
  text-align: left;
  z-index: 2;
  display: block !important;
}

/* HEADING */
.banner_heading {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

/* LOCATION */
.banner-location {
  font-size: 16px;
  color: #f1f1f1;
  margin-bottom: 18px;
}

.banner-location i {
  color: #ffc107;
  margin-right: 6px;
}

/* CTA WRAPPER */
.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

/* PRICE BADGE */
.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffc107;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.hero-price span {
  font-size: 14px;
}

.hero-price strong {
  font-size: 18px;
}

/* BUTTON */
.btn-enquire {
  background: #ffffff;
  color: #1e40af;
  border: 2px solid #1e40af;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-enquire:hover {
  background: #1e40af;
  color: #ffffff;
}

/* ðŸ”¥ MOBILE FIX (MOST IMPORTANT) */
@media (max-width: 767px) {

  .carousel-caption {
    left: 0;
    right: 0;
    bottom: 18%;
    padding: 0 16px;
    text-align: center;
  }

  .banner_heading {
    font-size: 26px;
    line-height: 1.3;
    display: block;
    visibility: visible;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-buttons {
    width: 100%;
  }

  .btn-enquire {
    width: 100%;
    text-align: center;
  }
}
/* ===============================
   MOBILE FIX – LEFT ALIGN CTA
   DESKTOP REMAINS UNCHANGED
================================ */
@media (max-width: 767px) {

  /* Caption positioning – mobile only */
  .carousel-caption {
    left: 16px;
    right: 16px;
    text-align: left;
  }

  /* Stack price + button and align LEFT */
  .hero-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Keep price badge left */
  .hero-price {
    justify-content: flex-start;
  }

  /* Button sizing */
  .hero-cta-buttons {
    width: auto;
  }

  .btn-enquire {
    width: auto;
    padding: 10px 22px;
  }
}