@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Castoro:ital@0;1&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --ct-card-w: 260px; /* base card width */
  --ct-card-h: 420px; /* base card height */
  --ct-side-x: 200px; /* neighbor offset */
  --ct-far-x: 360px; /* far offset */
  --ct-center-scale: 1.18;
}

.bai-jamjuree-font {
  font-family: 'Bai Jamjuree', sans-serif;
}
.manrope-font {
  font-family: 'Manrope', sans-serif;
}

.poppins-font {
  font-family: 'Poppins', sans-serif;
}

.cormorant-font {
  font-family: 'Cormorant', serif;
}

.castoro-font {
  font-family: 'Castoro', serif;
}

.text-color-primary {
  color: #046973;
}

.bg-color-primary {
  background-color: #046973;
}

.text-color-secondary {
  color: #fefa17;
}

.text-color-274423 {
  color: #274423;
}

.navbar-nav {
  justify-content: space-between;
  gap: 50px; /* adjust spacing between menu items */
}

@media (max-width: 1025px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 20px; /* adjust spacing for mobile view */
  }
}
.hero {
  position: relative;
  height: 100vh;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}



/* play button with ripple */
.hero__video {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  cursor: pointer;
}

.play-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(15, 23, 36, 0.12);
  position: relative;
}

.video-close-btn {
 z-index: 9999;
    position: absolute;
    right: 0;
}


/* subtle concentric circles */
.play-circle::before,
.play-circle::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.play-circle::before {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0)
  );
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.play-circle i {
  z-index: 1;
  font-size: 1rem;
  color: #1f9d8c; /* accent color for play triangle */
}

.watch-text {
  font-weight: 600;
  color: #0f1724;
  font-size: 1.05rem;
  align-self: center;
}

/* bottom image (couple) example styling — optional */
.hero__figure {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12vh; /* adjusts how much of the figure peeks up */
  z-index: 2;
  max-width: 260px;
  width: 22vw;
  pointer-events: none;
  opacity: 0.98;
}

/* responsiveness tweaks */
@media (max-width: 768px) {
  .hero__figure {
    display: none;
  } /* hide decorative figure on small screens */
  .hero__title {
    font-size: 2rem;
  }
}
.play-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer circles */
.circle-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  animation: ripple 3s infinite ease-out;
}

/* Delay each circle */
.circle-effect:nth-child(1) {
  animation-delay: 0s;
}
.circle-effect:nth-child(2) {
  animation-delay: 0.4s;
}
.circle-effect:nth-child(3) {
  animation-delay: 0.8s;
}

/* Play button (center) */
.play-btn {
  position: relative;
  z-index: 10;
  width: 95px;
  height: 95px;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.play-btn i {
  font-size: 32px;
  color: #7bb5ae; /* same greenish shade from your screenshot */
}

/* Ripple animation */
@keyframes ripple {
  0% {
    transform: scale(0.4);
    opacity: 0.45;
  }
  70% {
    transform: scale(1.2);
    opacity: 0.18;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.top-bg-destinations {
  background-color: #e9f6f9;
  background-image: url('../assets/Top\ Destination.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 15rem;
}

.top-bg-destinations h2,
.top-bg-destinations p {
  color: #046973;
}


.living-space-card {
  background-color: #f2f1ee;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-22 {
  font-size: 22px;
}

.font-size-34 {
  font-size: 34px;
}

/* Teal background similar to your image */
.stats-band {
  background: #046973; /* adjust to match exact teal */
  color: #ffffff;
}

/* Layout padding */
.stats-band .container-fluid {
  padding-top: 3.25rem; /* approx matching the vertical space */
  padding-bottom: 3.25rem;
}

/* Big number style */
.stat-number {
  font-size: clamp(2.25rem, 5vw, 4.5rem); /* responsive scale */
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* Label style */
.stat-label {
  font-weight: 300;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Small tweak: keep numbers vertically aligned */
.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Reduce top/bottom gaps on smaller heights */
@media (max-width: 575px) {
  .stats-band .container-fluid {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .stat-number {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
}

.explore-destinations-sec {
  background-image: linear-gradient(
    to bottom,
    #ffffff,
    #fafbff,
    #f1f8ff,
    #e7f5ff,
    #daf3ff,
    #cbeffc,
    #bbebf8,
    #abe7f2,
    #93dfee,
    #78d7e9,
    #59cfe6,
    #29c7e2
  );
}
.ct-carousel-wrapper {
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
}

.ct-carousel {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  perspective: 1000px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.ct-list.ct-dragging {
  cursor: grabbing;
}

.ct-item {
  position: absolute;
  left: 50%;
  top: 5%;
  width: var(--ct-card-w);
  height: var(--ct-card-h);
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 380ms cubic-bezier(0.22, 0.9, 0.37, 1),
    filter 300ms ease, opacity 300ms ease, box-shadow 300ms ease;
  -webkit-user-drag: none;
}

/* center */
.ct-item[data-pos='0'] {
  width: 320px;
  height: 520px;
  transform: translateX(-50%) scale(var(--ct-center-scale));
  z-index: 12;
  opacity: 1;
  filter: none;
}

/* neighbors */
.ct-item[data-pos='-1'],
.ct-item[data-pos='1'] {
  height: 440px;
  opacity: 0.82;
  filter: blur(2px) grayscale(10%);
  z-index: 9;
}
.ct-item[data-pos='-1'] {
  transform: translateX(calc(-50% - var(--ct-side-x))) scale(0.93)
    rotateY(10deg);
}
.ct-item[data-pos='1'] {
  transform: translateX(calc(-50% + var(--ct-side-x))) scale(0.93)
    rotateY(-10deg);
}

/* far sides */
.ct-item[data-pos='-2'],
.ct-item[data-pos='2'] {
  height: 380px;
  opacity: 0.45;
  filter: blur(5px) grayscale(20%);
  z-index: 6;
}
.ct-item[data-pos='-2'] {
  transform: translateX(calc(-50% - var(--ct-far-x))) scale(0.82) rotateY(14deg);
}
.ct-item[data-pos='2'] {
  transform: translateX(calc(-50% + var(--ct-far-x))) scale(0.82)
    rotateY(-14deg);
}

/* overlay at bottom of each card */
.ct-info {
  width: 100%;
  padding: 18px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.28) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  color: #fff;
  box-sizing: border-box;
  display: block;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ct-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.ct-sub {
  font-size: 13px;
  opacity: 0.92;
  margin-top: 4px;
}

.ct-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  backdrop-filter: blur(4px);
  margin-top: 8px;
}

.ct-btn:hover {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.418);
  color: #fff;
}

/* small hint text below */
.ct-hint {
  text-align: center;
  color: #14506f;
  opacity: 0.75;
  margin-top: 12px;
  font-size: 13px;
}

/* Medium / small tablets and large phones */
@media (max-width: 900px) {
  :root {
    --ct-card-w: 220px;
    --ct-card-h: 380px;
    --ct-side-x: 160px;
    --ct-far-x: 300px;
    --ct-center-scale: 1.12;
  }
  .ct-carousel {
    height: 460px;
  }
  .ct-item[data-pos='0'] {
    width: 280px;
    height: 480px;
  }
}

/* Mobile phones */
@media (max-width: 720px) {
  :root {
    --ct-card-w: 180px;
    --ct-card-h: 300px;
    --ct-side-x: 120px;
    --ct-far-x: 220px;
    --ct-center-scale: 1.08;
  }
  .ct-carousel {
    height: 420px;
  }
  .ct-item[data-pos='0'] {
    width: 230px;
    height: 380px;
  }
  .ct-item[data-pos='-1'],
  .ct-item[data-pos='1'] {
    height: 320px;
  }
  .ct-item[data-pos='-2'],
  .ct-item[data-pos='2'] {
    height: 260px;
  }
  .ct-info {
    padding: 12px;
  }
  .ct-title {
    font-size: 16px;
  }
}


/* Small phones — compact layout, side cards more hidden */
@media (max-width: 420px) {
  :root {
    --ct-card-w: 160px;
    --ct-card-h: 260px;
    --ct-side-x: 90px;
    --ct-far-x: 160px;
    --ct-center-scale: 1.04;
  }
  .ct-carousel {
    height: 340px;
  }
  .ct-item {
    transition: transform 300ms ease, opacity 250ms ease;
  }
  .ct-item[data-pos='0'] {
    width: 200px;
    height: 300px;
    transform: translateX(-50%) scale(var(--ct-center-scale));
  }
  .ct-item[data-pos='-1'],
  .ct-item[data-pos='1'] {
    opacity: 0.7;
    filter: blur(3px) grayscale(16%);
    transform: translateX(calc(-50% + 0px)) scale(0.9);
  }
  .ct-item[data-pos='-1'] {
    transform: translateX(calc(-50% - var(--ct-side-x))) scale(0.9)
      rotateY(8deg);
  }
  .ct-item[data-pos='1'] {
    transform: translateX(calc(-50% + var(--ct-side-x))) scale(0.9)
      rotateY(-8deg);
  }
  .ct-item[data-pos='-2'],
  .ct-item[data-pos='2'] {
    opacity: 0.28;
    filter: blur(6px) grayscale(30%);
  }
  .ct-info {
    padding: 10px;
  }
  .ct-title {
    font-size: 15px;
  }
  .ct-btn {
    font-size: 12px;
    padding: 7px 12px;
  }
}
.carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

@media (max-width: 720px) {
  .ct-carousel {
    overflow: hidden;
  }
}

.hero-section {
  background: linear-gradient(
      to right,
      rgba(1, 1, 1, 1),
      rgba(83, 83, 83, 0.29)
    ),
    url('../assets/images/31113 1.jpg') center/cover no-repeat;
  min-height: 10vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 20px;
}

.booking-box {
  background: #fff;
  border-radius: 14px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.booking-box input,
.booking-box select {
  height: 52px;
  border-radius: 10px;
}

.submit-area {
  background-color: #046973;
  padding: 18px 25px;
  border-radius: 0 0 14px 14px;
}

.submit-area #sendBtn {
  background: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
}

.text-shadow-custom {
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}

.book-resorts-form {
  transform: translateY(101px);
}


.testimonials-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Swiper container padding (top/bottom) */
.mySwiper {
  padding: 10px 0 0;
}

/* Card style */
.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* Bottom part: avatar + name + rating */
.testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.user-info-city {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.testi-rating {
  font-size: 16px;
  color: #ffb400; /* star color */
  white-space: nowrap;
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
  background: #d0d0d0;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #0a7266;
}

/* Navigation buttons wrapper (bottom centre) */
.swiper-nav-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.25s;
  border: none;
}

/* remove default Swiper arrow icon */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
}

/* Left button – light grey */
.swiper-button-prev {
  background: #ececec;
  color: #111827;
}

/* Right button – teal/green */
.swiper-button-next {
  background: #0a7266;
  color: #ffffff;
}

.swiper-button-prev:hover {
  background: #dedede;
}

.swiper-button-next:hover {
  opacity: 0.88;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 24px;
  }
  .hero-section {
    padding: 0px;
    padding-top: 10%;
  }
  .book-resorts-form {
    transform: translateY(0);
    padding-bottom: 2rem;
  }
  .footer-section {
    border-top-left-radius: 50px !important;
    border-top-right-radius: 50px !important;
  }
  .top-bg-destinations {
    padding-bottom: 5rem;
  }

  
}

.testimonials-section-heading {
  position: relative;
  text-align: center;
  padding: 80px 0 40px; /* space so plane shows well */
}

/* Background airplane design */
.testimonials-section-heading::after {
  content: '';
  position: absolute;
  top: 45%;
  right: 0;
  width: 450px; /* adjust size */
  height: 250px;
  background: url('../assets/images/24233.svg') no-repeat;
  background-size: contain; /* cover/contain depending on image */
  opacity: 1; /* light like example */
  pointer-events: none;
  z-index: -1;
}

.footer-section {
  background-color: #113d48; /* footer background */
  color: #e2edf2;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  padding: 70px 0 40px;
  position: relative;
  margin-top: 30px;
}

.footer-logo img {
  width: 110px;
  height: auto;
  margin-bottom: 20px;
}

.footer-text {
  color: #c9d7dd;
  font-size: 0.95rem;
  max-width: 420px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: #e2edf2;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a i {
  font-size: 0.7rem;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #e2edf2;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.footer-col-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991.98px) {
  .footer-col-divider {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .testimonials-section-heading {
    position: relative;
    text-align: center;
    padding: 0;
}
.testimonials-section{
  margin-top: 8%;
}
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #e2edf2;
  font-size: 0.97rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item span {
  display: block;
  line-height: 1.5;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 35px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #40b5dd;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 1000;
}

.back-to-top i {
  font-size: 1rem;
  color: #ffffff;
}

.footer-bottom-section {
  background-color: #101d22;
  color: #7d8b90;
  padding: 12px 0;
}

.bg-color-E9F6F9 {
  background-color: #e9f6f9;
}

.travel-card {
  max-width: 550px;
  border-radius: 24px;
  overflow: hidden;
}
.card-img-top {
  height: 320px;
  object-fit: cover;
}
.date-badge {
  color: #6c757d;
  font-size: 0.95rem;
}
.card-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #212529;
}
.btn-read-more {
  background-color: #f8f9fa;
  border: none;
  color: #212529;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-read-more:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.input-group-text {
  background-color: #fff;
  border-left: 0;
}

.hover-effect-btn:hover {
  background-color: #287f75;
}

.active > .page-link,
.page-link.active {
  background-color: #046973 !important;
  border-color: #046973 !important;
  color: #fff !important;
}

.page-link {
  color: #046973 !important;
}

.exp-our-destinations-bg {
  background-image: url('../assets/images/Group\ 1000002087.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.submit-area {
  padding: 1rem;
}

#sendBtn {
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

#sendBtn:hover {
  background-color: #e3e0e0;
  color: #201f1f;
  transform: translateX(-5px);
  transition: 0.3s ease;
}


/* Tablet and up (576px and above) */
@media (min-width: 576px) {
  .submit-area {
    flex-direction: row !important;
  }

  #sendBtn {
    width: auto !important;
  }
}

/* Mobile specific adjustments */
@media (max-width: 575px) {
  .submit-area a {
    font-size: 1.1rem !important;
  }

  #sendBtn {
    font-size: 1rem;
  }
}

.nav-link.active {
  color: #046973 !important; /* Change to your desired color */
  font-weight: 600;
}
.nav-link:hover {
  color: #046973 !important;
}

.dropdown-item:active {
  background-color: #2cb67d00 !important;
  color: #046973 !important;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: #2cb67d00 !important;
  color: #046973 !important;
}

 .spinner-svg {
        animation: spin 1s linear infinite;
        color: #fff;
        vertical-align: middle;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .btn-spinner {
        display: inline-flex;
        align-items: center;
        margin-left: 0.5rem;
    }

    .btn[disabled] {
        opacity: 0.8;
        pointer-events: none;
    }


    