/* Rafting Details Hero Section */
.rafting-details {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Swiper container */
.rafting-details .swiper {
  width: 100%;
  height: 500px; /* default height */
}

/* Swiper slides */
.rafting-details .swiper-slide {
  background-size: cover;        /* cover entire slide */
  background-position: center;   /* center the image */
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

/* Optional overlay for better text readability */
.rafting-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* subtle dark overlay */
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .rafting-details .swiper {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .rafting-details .swiper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .rafting-details .swiper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .rafting-details .swiper {
    height: 300px;
  }
}



/* ===== Rafting Details Section ===== */
.rafting-details-section {
  background: #ffffff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 !important;
}

.rafting-details-section .rafting-details-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
}

/* Image */
.rafting-details-section .rafting-details-image {
  flex: 1 1 300px;
 
}

.rafting-details-section .rafting-details-image img {
  width: 100%;
  height: 450px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.rafting-details-section .rafting-details-image img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Content */
.rafting-details-section .rafting-details-content {
  flex: 1 1 450px;
  margin-top: 20px;
}

.rafting-details-section .rafting-details-content h2 {
  font-family: 'Marcellus', sans-serif;
  font-size: 40px;
  line-height: 52px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  margin-bottom: 20px;
}

.rafting-details-section .rafting-details-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 31px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
}

/* Learn More Button */
.rafting-details-section .learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.rafting-details-section .learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}

/* Hidden Content */
.rafting-details-section .hidden-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.rafting-details-section .hidden-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .rafting-details-section .rafting-details-container {
    flex-direction: column;
    text-align: center;
  }
  .rafting-details-section .rafting-details-content h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .rafting-details-section .rafting-details-content p {
    font-size: 16px;
    line-height: 28px;
  }
}


/* ===== Manas Rafting Section ===== */
.manas-rafting-section {
  background: #ffffff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 !important;
}

.manas-rafting-section .manas-rafting-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
}

/* Image */
.manas-rafting-section .manas-rafting-image {
  flex: 1 1 300px;
 
}

.manas-rafting-section .manas-rafting-image img {
  width: 100%;
  height: 450px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.manas-rafting-section .manas-rafting-image img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Content */
.manas-rafting-section .manas-rafting-content {
  flex: 1 1 450px;
  margin-top: 20px;
}

.manas-rafting-section .manas-rafting-content h2 {
  font-family: 'Marcellus', sans-serif;
  font-size: 40px;
  line-height: 52px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  margin-bottom: 20px;
}

.manas-rafting-section .manas-rafting-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 31px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
}

/* Learn More Button */
.manas-rafting-section .learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.manas-rafting-section .learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}

/* Hidden Content */
.manas-rafting-section .hidden-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.manas-rafting-section .hidden-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .manas-rafting-section .manas-rafting-container {
    flex-direction: column;
    text-align: center;
  }
  .manas-rafting-section .manas-rafting-content h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .manas-rafting-section .manas-rafting-content p {
    font-size: 16px;
    line-height: 28px;
  }
}


/* ===== Rafting in Punakha Section ===== */
.rafting-punakha-section {
  background: #ffffff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 !important;
}

.rafting-punakha-section .rafting-punakha-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
}

/* Image */
.rafting-punakha-section .rafting-punakha-image {
  flex: 1 1 300px;

 
}

.rafting-punakha-section .rafting-punakha-image img {
  width: 100%;
  height: 450px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.rafting-punakha-section .rafting-punakha-image img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Content */
.rafting-punakha-section .rafting-punakha-content {
  flex: 1 1 450px;
  margin-top: 20px;
}

.rafting-punakha-section .rafting-punakha-content h2 {
  font-family: 'Marcellus', sans-serif;
  font-size: 40px;
  line-height: 52px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  margin-bottom: 20px;
}

.rafting-punakha-section .rafting-punakha-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 31px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
}

/* Learn More Button */
.rafting-punakha-section .learn-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.rafting-punakha-section .learn-btn:hover {
  background: rgb(2, 81, 87);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 81, 87, 0.3);
}

/* Hidden Content */
.rafting-punakha-section .hidden-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.rafting-punakha-section .hidden-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 31px;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .rafting-punakha-section .rafting-punakha-container {
    flex-direction: column;
    text-align: center;
  }
  .rafting-punakha-section .rafting-punakha-content h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .rafting-punakha-section .rafting-punakha-content p {
    font-size: 16px;
    line-height: 28px;
  }
}
