    .video-wrap {
      position: relative;
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      background-color: #000;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .youtube-player {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .video-controls {
      position: absolute;
      bottom: 15px;
      left: 15px;
      display: flex;
      gap: 8px;
      z-index: 5;
    }

    .control-btn {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: rgba(0, 0, 0, 0.6);
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .control-btn:hover {
      transform: scale(1.05);
      background: rgba(0, 0, 0, 0.75);
    }

    .control-btn .icon {
      fill: #fff;
    }

    @media (max-width: 992px) {
      .video-wrap {
        margin-top: 30px;
        height: 350px;
      }
    }
 
    /* Equal height cards */
.service-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  min-height: 380px; /* Ensures all boxes have same height */
}

/* Icon styling */
.icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #b18c68;
  color: #b18c68;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

/* Hover effects */
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff, #f8f4f0);
}

.service-box:hover .icon-wrapper {
  background: #b18c68;
  color: #fff;
  transform: rotate(10deg);
}

/* Responsive */
@media (max-width: 991px) {
  .service-box {
    min-height: auto;
  }
}

    /* Section Styling */
    .amenities-section {
      background: #f9fafc;
      position: relative;
      overflow: hidden;
    }

    

    /* Card Design */
    .amenity-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      height: 320px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .amenity-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .amenity-card:hover img {
      transform: scale(1.1);
    }

    .amenity-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
      display: flex;
      justify-content: center;
      align-items: end;
      padding-bottom: 25px;
      transition: all 0.4s ease;
    }

    .amenity-card h3 {
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Slider */
    .slider-container {
      position: relative;
      width: 100%;
    }

    .amenities-swiper {
      padding-bottom: 70px;
    }

    /* Arrows Below */
    .slider-nav {
      text-align: center;
      margin-top: -40px;
      position: relative;
      z-index: 2;
    }

    .nav-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      margin: 0 10px;
      border: none;
      background: #007bff;
      color: #fff;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .nav-btn:hover {
      background: #0056b3;
      transform: scale(1.1);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .amenity-card {
        height: 250px;
      }
    
    }

    @media (max-width: 768px) {
      .nav-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
      }
    }
  

/* ✅ Fix for overlay blocking clicks */
.amenity-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  z-index: 1;
  position: relative;
}

/* Overlay now behind clicks */
.amenity-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none; /* important fix */
}

.amenity-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Modal Styling */
.amenity-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.modal-content {
  position: relative;
  max-width: 700px;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  animation: zoomIn 0.4s ease-in-out;
}

@keyframes zoomIn {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.modal-caption {
  background: #fff;
  padding: 12px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #333;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100000;
}

.close-modal:hover {
  color: #ff3b3b;
}
