.col1 {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.col1:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.col1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(32, 149, 174, 0.1), transparent);
  transition: left 0.6s ease;
}

.col1:hover::before {
  left: 100%;
}

.col1:hover {
  color: #2095AE;
  background-color: rgba(32, 149, 174, 0.05);
}

.btn-form1-submit {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-form1-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-form1-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(32, 149, 174, 0.1), transparent);
  transition: left 0.6s ease;
}

.btn-form1-submit:hover::before {
  left: 100%;
}

/*PRELOADER CSS*/
body,
html {
  margin: 0;
  padding: 0;
}

#hello-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(254, 252, 253);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

#hello-text {
  color: #2095AE;
  font-weight: 500;
  font-size: 3rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}

.header.full-height {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


/* .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* black gradient: top to bottom */
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.098), rgba(0, 0, 0, 0.157)); */
  pointer-events: none;
  /* So it doesn't block clicks */
}

.video-rr {
  position: relative;
  width: 100%;
  height: 100vh;
  /* or whatever height you need */
  overflow: hidden;
}

/* Inherit your existing .header .caption h1 styling */
.header .caption h1.rolling-headline {
  position: relative;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 6vw, 75px);
  text-transform: uppercase;
  animation-delay: .4s;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.header .caption h1.rolling-headline span {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

/* Rolling text wrapper */
.rolling-text-wrapper {
  height: 90px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  mask-image: linear-gradient(to bottom, transparent, white 20%, white 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, white 20%, white 80%, transparent);
}

/* Actual rolling container */
.rolling-text {
  display: flex;
  flex-direction: column;
  animation: scrollPause 30s ease-in-out infinite;
}

.rolling-text div {
  height: 90px;
  line-height: 90px;
  white-space: nowrap;
}

/* Smooth scroll animation with pauses */
@keyframes scrollPause {

  0%,
  10% {
    transform: translateY(0);
  }

  15%,
  25% {
    transform: translateY(-90px);
  }

  30%,
  40% {
    transform: translateY(-180px);
  }

  45%,
  55% {
    transform: translateY(-270px);
  }

  60%,
  70% {
    transform: translateY(-360px);
  }

  75%,
  85% {
    transform: translateY(-450px);
  }

  90%,
  100% {
    transform: translateY(0);
  }
}


/*------------------SEARCH BAR HOME PAGE--------------*/

.search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 10vh;
  /* background: #f5f5f5; */
  font-family: 'Segoe UI', sans-serif;
}

.search-container {
  position: relative;
  width: 80vw;


}

.search-form {
  display: flex;
  height: 4vw;
  align-items: center;
  background-color: rgba(136, 135, 135, 0.57);
  /* Changed from hex to rgba for opacity */
  border-radius: 30px;
  padding: 10px 20px;
  width: 100%;
  margin-top: 120px;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}


.search-form:hover {
  background-color: rgba(75, 75, 75, 0.57);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  padding: 10px;
  color: #fff;
  z-index: 3;
}

.placeholder-text {
  position: absolute;
  left: 30px;
  font-size: 18px;
  color: #555;
  opacity: 0.6;
  pointer-events: none;
  white-space: nowrap;
  border-right: 2px solid #555;
  animation: blink-caret 0.75s step-end infinite;
  z-index: 1;
}

.search-button {
  background: none;
  border: none;
  font-size: 15px;
  color: #fffefe;
  cursor: pointer;
  margin-left: 10px;
  z-index: 3;
}

.suggestions {
  position: absolute;
  /* margin-top:10px; */
  width: 100%;
  text-align: left;
  /* background: rgba(136, 135, 135, 0.90); */
  background: #fff;
  border: 1px solid #ccc;
  color: #434242;
  border-radius: 25px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1;

}

.suggestion-item {
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.2s;
  scroll-behavior: hidden;
}

.suggestion-item:hover {
  background-color: rgba(217, 217, 217, 0.57);
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #555;
  }
}

#destination {
  color: white;
}

#destination::placeholder {
  color: white;
  opacity: 1;
  /* Ensure it's fully visible */
}

.suggestion-item.active {
  background-color: #444;
  color: #fff;
}

#suggestions {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: none;
}

#suggestions::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 767px) {
  .search-wrapper {
    height: auto;
    padding: 20px 10px;
    flex-direction: column;
  }

  .search-container {
    width: 95vw;
  }

  .search-form {
    flex-direction: row;
    height: auto;
    padding: 10px 15px;
    margin-top: 60px;
    border-radius: 25px;
  }

  input[type="password"],
  input[type="email"],
  input[type="text"],
  input[type="file"],
  textarea {
    padding: 0px
  }

  .search-input {
    font-size: 15px;
    /* padding: 8px; */
  }

  .placeholder-text {
    font-size: 15px;
    left: 18px;
  }

  .search-button {
    font-size: 13px;
    margin-left: 8px;
  }

  .suggestions {
    font-size: 14px;
    border-radius: 15px;
  }

  .suggestion-item {
    padding: 8px 15px;
  }
}




/* 1. Mood section */

.mood-section {
  background-color: #f4f5f8;
  padding: 60px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
}

#insta-stories-wrapper-custom {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

#insta-stories-wrapper-custom::before,
#insta-stories-wrapper-custom::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

#insta-stories-wrapper-custom::before {
  left: 0;
  background: linear-gradient(to right, #f4f5f8 0%, transparent 100%);
}

#insta-stories-wrapper-custom::after {
  right: 0;
  background: linear-gradient(to left, #f4f5f8 0%, transparent 100%);
}

#story-scroll-container {
  display: flex;
  gap: 1.5rem;
  padding: 10px 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

#story-scroll-container.dragging {
  cursor: grabbing;
}

#story-scroll-container::-webkit-scrollbar {
  display: none;
}
#story-scroll-container {
  scrollbar-width: none;
}

.insta-story-item-custom {
  flex: 0 0 auto;
  scroll-snap-align: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease;
}
.insta-story-item-custom:hover {
  transform: scale(1.05) translateY(-5px);
}

.story-circle-custom {
  width: clamp(120px, 18vw, 180px);
  height: clamp(120px, 18vw, 180px);
  border-radius: 50%;
  background: #fff;
  border: 4px solid #2095ae;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.story-circle-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.story-username-custom {
  margin-top: 0.4rem;
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  font-weight: 500;
  color: #676977;
}

/* Arrow Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  border: none;
  font-size: 1.8rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background-color: #2095AE;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.left-btn {
  left: 15px;
}

.right-btn {
  right: 15px;
}

@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }
}


/* new end */


/*-------------------------------What's your mood end---------------------------------------*/

/*---------------------SLIDER PANEL-------------------------*/
/* === SECTION BASED ON ABOUT SECTION === */
.destinations {
  background-color: #F4F5F8;
  padding: 80px 0;
}

.destinations .section-subtitle {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #2095AE;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.destinations .section-title {
  font-size: 36px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #0f2454;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.3;
}

.destinations .section-title span {
  color: #2095AE;
}

/* === SWIPER === */
.destinations .swiper {
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
  overflow: visible;
}

.destinations .swiper-wrapper {
  display: flex;
  align-items: center;
}

.destinations .swiper-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  max-width: 280px;
  height: 100%;
  /* margin-right: 20px; REMOVED gap */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.destinations .swiper-slide:hover {
  transform: translateY(-6px);
}

.destinations .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === CARD INFO === */
.destinations .card-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(29, 28, 28, 0.65);
  padding: 10px;
  text-align: center;
  transition: background 0.3s ease;
}

.destinations .card-info h3 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
  .destinations .desktopSwiper {
    display: none;
  }

  .destinations .mobileSwiper {
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }

  .destinations .swiper {
    height: 400px;
  }

  .destinations .swiper-slide {
    max-width: 260px;
    margin: 0 auto;
  }

  .destinations .swiper-wrapper {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .destinations .mobileSwiper {
    display: none;
  }

  .destinations .desktopSwiper {
    display: block;
  }

  .destinations .swiper {
    height: 420px;
  }

  .destinations .swiper-slide {
    max-width: 280px;
  }
}