/* Slider CSS */
.banner .swiper-wrapper .swiper-slide img {
  width: 100%;
  /* height: 60vh; */

}



.slide-content-wrapper {
  position: relative;
}

.slide-content {
  position: absolute;
  width: 100%;
  height: 100% !important;
  top: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 40px;
  text-align: center;
}

.slide-title {
  font-size: 60px;
  margin-bottom: 10px;
}

.slide-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.slide-cta-btn {
  padding: 10px 20px;
  background-color: #fd5c37;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.slide-cta-btn:hover {
  background-color: #41087e;
}


.banner .swiper-button-prev, .swiper-button-next {
  padding: 10px 20px 10px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100%;
}

.banner .swiper-button-prev:after, .swiper-button-next:after {
  font-size: 28px !important;
  color: white;
}

.banner .swiper-pagination {
  margin-bottom: 8px;
}

.banner .swiper-pagination .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid white;
  background: transparent;
  transform: rotate(90deg);
}

@media (max-width: 768px) {

  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    display: none !important;
  }

  .banner .swiper-wrapper .swiper-slide img {
    height: 70vh;
    object-fit: cover;
  }



  .slide-title {
    font-size: 40px;
    margin-bottom: 10px;
  }


  .slide-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
}






/* Welcome section CSS */
.welcome-container {
  display: flex;
  gap: 40px;
  width: 1260px;
  max-width: 100%;
  /* responsive max width */
  margin: 0 auto;
  position: relative;
  z-index: 10;
  /* above floating elements */
}

.welcome-container .left-section {
  width: 60%;
}

.welcome-title {
  color: rgb(49, 47, 48);
  /* line-height: 81px; */
  margin-bottom: 32px;
}

.welcome-content {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 60px;
}

.counter-container {
  display: flex;
  gap: 30px;
}

.counter-box {
  border-radius: 8px;
  width: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.counter-box img {
  width: 80px;
  margin-left: -12px;
  animation: floatIcon 2s ease-in-out infinite;

  /* soft orange glow  */
  filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.5)); 
}



@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.number {
  font-size: 28px;
  font-weight: bold;
  color: rgb(253, 92, 55);
  margin-bottom: 10px;
}

.text {
  font-size: 18px;
  color: #555;
}

.welcome-container .right-section {
  width: 40%;
  /* background-image: url('/images/welcome-right-bg.jpg'); */
  background-image: url('/images/home/home-first.jpg');
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  background-size: cover;
}

.parallax-section {
  position: relative;
  overflow: visible;
  padding: 60px 20px 0;
}

.floating-element {
  position: absolute;
  top: 50%;
  /* vertically centered */
  transform: translateY(-50%);
  width: 100px;
  /* adjust size as needed */
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.floating-element.left.float1 {
  width: 200px;
  top: 10%;
  left: 8%;
  transform: translateX(-60%);
}

.floating-element.left.float2 {
  width: 40px;
  top: 70%;
  left: 5%;
  transform: translateX(-80%);
}

.floating-element.right.float3 {
  width: 40px;
  top: 40%;
  right: 10%;
  transform: translateX(60%);
}

.floating-element.right.float4 {
  width: 40px;
  top: 75%;
  right: 7%;
  transform: translateX(80%);
}

.floating-element {
  transition: transform 0.3s ease;
  will-change: transform;
}

@media (max-width: 1500px) {
  .floating-element {
    display: none;
  }
}

@media (max-width: 1024px) {
  .welcome-container .left-section .welcome-title {
    font-size: 40px;
    line-height: 1.5;
  }

  .parallax-section .right-section {
    display: none;
  }

  .welcome-container .left-section {
    width: 100%;
    text-align: center;
  }

  .welcome-container .left-section .counter-container {
    flex-wrap: wrap;
  }

  .welcome-container .left-section .counter-container .counter-box {
    width: 100%;
  }
}




/* testimonial section */
.testimonial-section {
  padding: 60px 20px 0;
  margin-bottom: 80px;
}

.testimonial-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-slider {
  max-width: 1260px;
  display: flex;
  gap: 36px;
  margin: 0 auto;
}

.testimonial-card {
  width: 50%;
  background: #fff6e9;
  border-radius: 20px;
  /* padding: 50px 70px; */
  padding: 50px 50px;
  box-sizing: border-box;

  /* New Css */
  min-height: 240px;
  height: auto;
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
}

.testimonial-wrapper {
  display: flex;
  gap: 16px;

}

.testimonial-text {
  /* font-size: 24px; */
  font-size: 14px;
  font-style: italic;
  margin-bottom: 0px;

}



.testimonial-text {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* show only 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.testimonial-text.expanded {
  -webkit-line-clamp: unset; /* remove limit when expanded */
}
.read-more-btn {
  display: inline-block;
  color: #000;
  cursor: pointer;
  margin-top: 0px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}


.testimonial-name {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  margin-top: 10px;
  margin-bottom: 0px !important;
}

.testimonial-icon img {
  width: 40px;
  /* margin-top: 20px; */
}

.testimonial-slider .swiper-wrapper {
  padding-bottom: 24px;
}

.testimonial-swiper-pagination {
  text-align: center;
}

.testimonial-swiper-pagination .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #fc5b11;
  background: transparent;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 36px;
  }

  .testimonial-section h2 {
    font-size: 40px;
    line-height: 1.5;
  }
}




/* Our promises Section */
.our-promise-section {
  background-color: #341c77;
  background-image: url('/images/our-promise-bg.webp');
  padding: 40px 0px;
  color: white;
}

.our-promise-section h2 {
  text-align: center;
  color: white;
  margin-bottom: 80px;
}

.promise-container {
  max-width: 1260px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 0 auto 80px;
  gap: 40px;
  padding: 24px;
}

.promise-box img {
  width: 100px;
}

.promise-box .promise-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.promise-box .promise-subtitle {
  font-size: 15px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .promise-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* How it works section */
.how-it-works-container {
  display: flex;
  gap: 40px;
  width: 1260px;
  max-width: 100%;
  /* responsive max width */
  margin: 0 auto;
  position: relative;
  z-index: 10;
  /* above floating elements */
  padding: 80px 24px;
  box-sizing: border-box;
}

.how-it-works-container .how-it-works-left {
  width: 60%;
}

.how-it-works-container h2 {
  color: #fd5c37;
  line-height: 81px;
  margin-bottom: 32px;
  margin-top: 0;
}

.how-it-works-container .how-it-works-right {
  width: 40%;
  /* background-image: url('/images/welcome-right-bg.jpg'); */
  background-image: url('/images/home/how-it-works.jpg');
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  background-size: cover;
}

.how-it-works-step {
  background-color: #FFF6E9;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.how-it-works-count {
  background-color: #341C77;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
  width: 50px;
  height: 50px;
  color: white;
}

.how-it-works-title {
  font-size: 20px;
  font-weight: bold;
}

.how-it-works-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.how-it-works-step:hover .how-it-works-count {
  background-color: #fd5c37;
}

@media (max-width: 1024px) {
  .how-it-works-container {
    padding: 60px 24px;
  }

  .how-it-works-container .how-it-works-left h2 {
    font-size: 40px;
    line-height: 1.5;
    text-align: center;
  }

  .how-it-works-container .how-it-works-right {
    display: none;
  }

  .how-it-works-container .how-it-works-left {
    width: 100%;
  }
}



/* top packages section */
.featured-package-section {
  background-color: #fff6e9;
  padding: 40px 24px;
}

.featured-package-section h2 {
  text-align: center;
  color: #fd5c37;
}

.package-tabs, .package-wrapper {
  max-width: 1260px;
  margin: 0 auto;
}

.package-wrapper .package-card{
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.featured-package-section {
    background-color: #fff6e9;
    padding: 40px 24px;
}
.featured-package-section  h2 {
    text-align: center;
    color:#fd5c37;
    font-size: 50px;
    margin-bottom: 32px;
}

.package-wrapper {
    max-width: 1260px;
    margin: 0 auto;
}
.package-tabs {
    width: fit-content;
    font-size: 14px;
    color: #ff5c33;
    font-weight: 500;
    gap: 0;
    display: flex;
    margin-bottom: 16px;
    width: 100%;
}
.package-tab-btn {
    cursor: pointer;
    background: #ff5c332b;
    padding: 4px 6px;
    border-top: 1px solid #ff5c33;
    border-bottom: 1px solid #ff5c33;
    border-right: 1px solid #ff5c33;
}
.package-tab-btn.active {
  background: #ff5c33;
  color: #fff;
}

.package-tab-btn:first-of-type {
  border-left: 1px solid #ff5c33;
  padding: 4px 8px;
  border-radius: 50px 0 0 50px;
}
.package-tab-btn:last-of-type {
  padding: 4px 8px;
  border-radius: 0 50px 50px 0;
}
  
.featured-package-section .price-wrapper {
  position: relative;
  max-height: 234px;
}
.featured-package-section .price-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
}
.featured-package-section .package-price {
    position: absolute;
    bottom: -44px;
    right: 21px;
    background-color: #ff5c33;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgb(255 92 51 / 0.3);
    width: 84px;
    height: 84px;
    align-items: center;
    justify-content: center;
}
.featured-package-section .package-info {
  padding: 20px 25px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.featured-package-section .package-info-data {
      width: 100%;
}
.featured-package-section .package-info h3 {
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 12px;
  width: 80%;
  display: block;
  word-wrap: break-word;
}
.featured-package-section .package-info ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
.featured-package-section .package-info ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.featured-package-section .btn-book {
    display: block;
    margin: 20px 0;
    background-color: #41087e;
    color: white;
    padding: 20px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s ease;
    height: 60px;
    text-decoration: none;
}
.featured-package-section .package-card:hover .btn-book {
  background-color: #fd5c37;
  cursor: pointer;
}
.no-of-kids {
  color: #975dd5;
  font-size: 16px;
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  flex-direction: column;
}
.no-of-kids i {
  font-size: 16px;
  padding-right: 4px;
}
.no-of-kids span {
  color: #ff5c33;
  background: #ff5c33;
  width: 2px;
  height: 20px;
  margin: 0 4px;
}

.inventory-info{
  display: none;
}

.featured-package-section .package-info ul li .inventory-count {
  color: #2fc72f;
  font-size: 16px;
}

.package-tab-content {
  display: none;
}
.package-tab-content.active {
  display: block;
}
.package-price {
  display: none;
}
.package-price.active {
  display: flex;
}

.no-package {
  font-size: 30px;
  color: darkslategrey;
  text-align: center;
}

/* Swiper slide styling */
.featured-package-section .swiper-slide {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-bottom: 20px;
  box-sizing: border-box;
  height: auto;
}

.featured-package-section .price-wrapper {
  position: relative;
}

.featured-package-section .price-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
}

.featured-package-section .package-price {
  position: absolute;
  bottom: -44px;
  right: 21px;
  background-color: #ff5c33;
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 32px 27px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgb(255 92 51 / 0.3);
}

.featured-package-section .package-info {
  padding: 20px 25px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.featured-package-section .package-info-data {
  width: 100%;
}

.featured-package-section .package-info h3 {
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
  width: 100%;
  display: block;
}

.featured-package-section .package-info ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.featured-package-section .package-info ul li {
  margin-bottom: 5px;
}

.featured-package-section .btn-book {
  display: block;
  margin: 20px 0;
  background-color: #41087e;
  color: white;
  padding: 20px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease;
  height: 60px;
}

.featured-package-section .package-card:hover .btn-book {
  background-color: #fd5c37;
  cursor: pointer;
}

.featured-package-section .swiper-pagination-bullets {
  bottom: 10px !important;
}

.package-swiper-pagination .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #41087e;
  background: transparent;
  transform: rotate(90deg);
}

.package-swiper-pagination {
  text-align: center;
}

.featured-package-section .swiper-wrapper {
  padding-bottom: 20px;
}

.package-image {
  display: none !important;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.package-image.active {
  display: block !important;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-package-section .swiper-slide {
    padding-bottom: 30px;
  }

  .featured-package-section .tabs-nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .featured-package-section .tab-btn {
    width: 45%;
    padding: 18px 20px !important;
    font-size: 15px !important;
    line-height: 1.5;
  }

  .featured-package-section h2 {
    font-size: 40px;
    line-height: 1.5;
    text-align: center;
  }
}