

/*hotel benefits*/
.hotel-benefits {
  padding: 80px 0;
  background: #fff;
}

.benefits-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.left-content {
  flex: 1 1 55%;
}

.left-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.left-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
  max-width: 550px;
}
.hotel-heading{
    text-align: left;
    padding: 5px 0px 5px 10px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature .icon {
  font-size: 28px;
  color: #073220;
}

.feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #111;
}

.feature p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

.right-content {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.video-box {
  position: relative;
  max-width: 100%;
  width: 480px;
  border-radius: 8px;
  overflow: hidden;
}

.video-box img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.play-btn {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #073220;
  color: white;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.why-choose-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  padding: 80px 0;
  background-attachment: fixed;
  overflow: hidden;
}

.why-choose-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(50, 47, 47, 0.8); /* Transparent overlay */
  z-index: 1;
}

.why-choose-section .container {
  position: relative;
  z-index: 2;
}

.section-title-heading {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
}

.s-para{
        margin: 10px 0 15px 0;
}
.feature-box {
  padding: 20px 15px;
}

.feature-box .icon i {
  font-size: 32px;
  color: #ffffff;
}


/*Resort Highlights*/
.resort-highlights-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.container {
  /* max-width: 1200px; */
  margin: auto;
}

.highlights-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  color: #073220;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  
}

.highlights-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.highlight-card {
  flex: 1 1 300px;
  max-width: 680px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.highlight-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 15px;
}

.highlight-card h4 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #073220;
}

.highlight-card p {
  font-size: 14px;
  color: #555;
}

.highlight-card:hover {
  transform: translateY(-8px);
}





/*Resort highlights carousel*/
.values-carousel {
  padding: 80px 0;
  background-color: #e4e3e3;
  font-family: 'Poppins', sans-serif;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 36px;
  color: var(#073220);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 16px;
  color: #666;
}

.value-card {
  border-radius: 12px;
  text-align: center;
  padding: 20px;
}

.value-card img {
  height: 100%;
 max-width: 1280px;
 width: 800px;
  object-fit: cover;
  margin-bottom: 15px;
}


.value-card h3 {
  font-size: 24px;
  margin: 10px 0;
  color: #222;
}

.value-card p {
  font-size: 14px;
  color: #555;
}






.swiper-pagination-bullet-active {
  background: #4caf50;
  border-color: #4caf50;
}


.swiper-pagination-bullets {
  text-align: center;
}

.swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 6px;   /* spacing between bullets */
  opacity: 1;
  transition: background 0.3s ease;
  border: 2px solid #fff;
}

.swiper-pagination-bullet-active {
  background: #49412d; /* Change this to your resort theme color */
  transform: scale(1.5);
}


/*Amenities */
.amenities-section {
  padding: 60px 0;
  background-color: #f7f7f7;
  font-family: 'Poppins', sans-serif;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #073220;
  margin-bottom: 40px;
}

.flip-box-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.flip-box {
  background-color: transparent;
  width: 320px;
  height: 320px;
  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.flip-box-front {
  background: #ffffff;
  color: #073220;
  border: 1px solid #4f4f4f;
}

.flip-box-front h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.flip-box-front p {
  font-size: 14px;
  color: #444;
}

.flip-box-back {
  background-color: #000;
  transform: rotateY(180deg);
  padding: 0;
}

.flip-box-back img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

