* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
}



 

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.carousel-slide {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: none;
}

.carousel-item.active {
  display: block;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(242, 199, 9, 0.5);
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .caption {
    font-size: 1.5rem;
    bottom: 30px;
  }

  .prev, .next {
    font-size: 1.5rem;
    padding: 6px;
  }
}

 
    section.amenities-section {
      background-color: #ffffff;
      padding: 40px 0;
    }

    .slider-wrapper {
      display: flex;
      gap: 20px;
      justify-content: center;
      transition: all 0.9s ease;
    }

    .amenity-card {
      flex: 0 0 22%;
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .amenity-card i {
      font-size: 32px;
      color: #007BFF;
    }

    .amenity-card h5 {
      margin-top: 10px;
      color: #333;
    }

    .arrow-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: none;
      background: none;
      font-size: 24px;
      cursor: pointer;
      z-index: 1;
    }

    .arrow-left {
      left: 0;
    }

    .arrow-right {
      right: 0;
    }
 

   
    .about-section {
      background-color: #ffffff;
      padding: 40px 0;
    }

    .about-section img {
      width: 100%;
      height: 92%;
      object-fit: cover;
      border-radius: 10px;
    }

    .about-content {
      padding: 20px;
      color: black;
      overflow-y: auto;
      flex-grow: 1;
    }

    .about-content h2 {
      font-size: 1.75rem;
      line-height: 1;
      margin-bottom: 1rem;
    }

    .discover-btn {
      color: black;
      background-color: orange;
      padding: 10px 20px;
      border-radius: 5px;
      display: inline-block;
      text-decoration: none;
      font-weight: 500;
    }

    .discover-btn:hover {
      background-color: darkorange;
      text-decoration: none;
      color: white;
    }
 


       .section.testimonial {
      padding-bottom: 4.8rem;
      background-color: #ffffff;
      position: relative;
    }

    .section.testimonial svg {
      position: absolute;
    }

    .section.testimonial .container {
      max-width: 1140px;
      margin: auto;
      padding: 2rem;
    }

    .section.testimonial h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .section.testimonial p {
      margin-bottom: 1rem;
      color: green;
    }
 
    .btn {
      padding: 10px 20px;
      background-color: orange;
      color: black;
      text-decoration: none;
      display: inline-block;
      border-radius: 4px;
    }

    .img-fluid {
      width: 100%;
      border-radius: 8px;
    }

    .text-danger {
      color: red;
    }

    .h2 {
      font-size: 1.5rem;
    }

    .purecounter {
      font-size: 2rem;
      font-weight: bold;
    }

    .testimonial-slide {
      background: white;
      border-radius: 12px;
      padding: 1rem;
      margin-bottom: 1rem;
    }

    .testimonial-slide i {
      color: green;
    }

    .testimonial-slide h5 {
      color: black;
      margin-top: 0.5rem;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px;
    }

    .col-6, .col-md-4, .col-md-8, .col-xl-4, .col-xl-8 {
      padding: 15px;
      box-sizing: border-box;
    }

    .col-6 {
      width: 50%;
    }

    .col-md-4 {
      width: 33.3333%;
    }

    .col-md-8 {
      width: 66.6666%;
    }

    .col-xl-4 {
      width: 33.3333%;
    }

    .col-xl-8 {
      width: 66.6666%;
    }

    @media (max-width: 768px) {
      .col-md-4, .col-md-8, .col-xl-4, .col-xl-8, .col-6 {
        width: 100%;
      }
    }