/* Section */

.highlight-section {
  background: #f4f4f4;
  overflow: hidden;
}

/* Left Content */

.highlight-content span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
}

.highlight-content h2 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  color: #111;
  margin: 20px 0;
}

.highlight-content ul > li {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 500px;
  margin-top: 30px;
  border-bottom: 1px solid #384f30;
}

.enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

/* Slider Cards */

.highlight-carousel .item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  height: 650px;
  cursor: pointer;
}

.highlight-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.highlight-carousel .item:hover img {
  transform: scale(1.08);
}



/* Content */

.card-content {
  position: absolute;
  bottom: 40px;
  left: 35px;
  right: 35px;
  z-index: 2;
}

.card-content h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.card-content p {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0px;
}

/* Owl */

.highlight-carousel .owl-stage {
  display: flex;
}

.highlight-carousel .owl-item {
  transition: 0.5s;
}

.highlight-carousel .owl-item.active.center {
  transform: scale(1);
}

.highlight-carousel .owl-item:not(.center) {
  transform: scale(0.92);
  opacity: 0.85;
}

/* Navigation */

.highlight-carousel .owl-nav {
  margin-top: 40px;
  text-align: left;
}

.highlight-carousel .owl-nav button {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-right: 15px;
}

.highlight-carousel .owl-nav span {
  font-size: 28px;
}

.highlight-section .row {
  display: flex;
  align-items: center;
}

.highlight-content {
  position: relative;
  z-index: 10;
}

.highlight-carousel {
  width: 100%;
}

/* aminities-section */

.amenities-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 30px 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.amenities-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.amenities-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: 0.5s;
  z-index: 2;
}

.amenities-item img,
.amenities-item h3 {
  position: relative;
  z-index: 3;
  transition: 0.4s;
}

.amenities-item:hover::before,
.amenities-item:hover::after {
  opacity: 1;
}

.amenities-item:hover h3 {
  color: #fff;
}

.amenities-item:hover img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

.amenities-item:hover {
  transform: translateY(-8px);
}

.amenities-item:hover img {
  display: none;
}

/* Concierge */
.amenities .col-lg-3:nth-child(1) .amenities-item::before {
  background-image: url("../img/amenities/bg1.webp");
}

/* Security */
.amenities .col-lg-3:nth-child(2) .amenities-item::before {
  background-image: url("../img/amenities/bg2.webp");
}

/* Spa */
.amenities .col-lg-3:nth-child(3) .amenities-item::before {
  background-image: url("../img/amenities/bg3.webp");
}

/* Garden */
.amenities .col-lg-3:nth-child(4) .amenities-item::before {
  background-image: url("../img/amenities/bg4.webp");
}

/* Kids Play */
.amenities .col-lg-3:nth-child(5) .amenities-item::before {
  background-image: url("../img/amenities/bg5.webp");
}

/* Lounge */
.amenities .col-lg-3:nth-child(6) .amenities-item::before {
  background-image: url("../img/amenities/bg6.webp");
}

/* Architecture */
.amenities .col-lg-3:nth-child(7) .amenities-item::before {
  background-image: url("../img/amenities/bg7.webp");
}

/* Pool */
.amenities .col-lg-3:nth-child(8) .amenities-item::before {
  background-image: url("../img/amenities/bg8.webp");
}

/* floor-plan-section */

.floor_plan .tab-content {
  display: block;
  animation: fade 0.3s ease;
}
.floor-tabs {
  border: none;
  justify-content: space-between;
  margin-bottom: 50px;
  width: 80%;
  margin: 0 auto;
}

.floor-tabs .nav-link {
  border: none !important;
  background: #fef9eb;
  color: #000;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 500;
}

.floor-tabs .nav-link.active {
  background: #fef9eb !important;
  border-top: 3px solid #384f30 !important;
  color: #000 !important;
}

.floor-card {
  background: #fef9eb;
  border: 1px solid #333;
  border-radius: 25px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  max-width: 950px;
  margin: auto;
}

.floor-image {
  width: 50%;
}

.floor-image img {
  width: 100%;
  background: #fff;
  padding: 10px;
}

.floor-info {
  width: 50%;
}

.floor-info h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

.floor-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.meta-box {
  background: #ced8e1;
  border-radius: 10px;
  padding: 15px;
  min-width: 45%;
}

.meta-box span {
  display: block;
  color: #000;
  font-size: 14px;
}

.meta-box h4 {
  margin-top: 5px;
  font-weight: 700;
  font-size: 20px;
}

.enquire-link {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block !important;
}
.floor-btn {
  position: static;
  transform: unset;
}

/* gallery-img */

.gallery-slider .item {
  padding: 10px;
}

.gallery-slider .single-gallery {
  overflow: hidden;
  border-radius: 25px;
  position: relative;
  margin-bottom: 0;
}
.gallery-slider a {
  width: 100%;
}
.gallery-slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  transition: 0.8s;
}

.gallery-slider .single-gallery:hover img {
  transform: scale(1.08);
}

/* Center Slide Effect */

.gallery-slider .owl-item {
  transition: 0.5s;
}

.gallery-slider .owl-item.active.center {
  transform: scale(1);
}

.gallery-slider .owl-item:not(.center) {
  transform: scale(0.9);
  opacity: 0.7;
}

/* Navigation */

.gallery-slider .owl-nav {
  margin-top: 15px;
  text-align: center;
}

.gallery-slider .owl-nav button {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
}

.gallery-slider .owl-nav span {
  font-size: 30px;
}


#customLightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    z-index:99999;
    display:none;
    justify-content:center;
    align-items:center;
}

#customLightbox.active{
    display:flex;
}

.lightbox-content{
    width:90%;
    max-width:1100px;
    text-align:center;
}

#lightboxImage{
    width:100%;
    max-height:75vh;
    object-fit:contain;
    border-radius:20px;
}

.lightbox-info{
    color:#fff;
    margin-top:20px;
}

#lightboxTitle{
    font-size:32px;
    margin-bottom:10px;
}

#lightboxDescription{
    color:#cfcfcf;
    max-width:700px;
    margin:auto;
}

#imageCounter{
    display:block;
    color:#999;
    margin-bottom:10px;
}

.close-lightbox{
    position:absolute;
    top:20px;
    right:35px;
    font-size:50px;
    color:#fff;
    cursor:pointer;
}

.lightbox-prev,
.lightbox-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    transition:.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover{
    background:rgba(255,255,255,.3);
}

.lightbox-prev{
    left:30px;
}

.lightbox-next{
    right:30px;
}

@media(max-width:768px){

    .lightbox-prev,
    .lightbox-next{
        width:45px;
        height:45px;
        font-size:20px;
    }

    #lightboxTitle{
        font-size:24px;
    }

    #lightboxDescription{
        font-size:14px;
    }

}

@media (max-width: 768px) {
  .floor-card {
    flex-direction: column;
    text-align: center;
  }

  .floor-image,
  .floor-info {
    width: 100%;
  }

  .floor-meta {
    flex-direction: column;
  }

  .floor-info h2 {
    font-size: 25px;
  }

  .floor-tabs {
    gap: 10px;
    justify-content: center;
  }
}
