@import url("https://fonts.googleapis.com/css2?family=Moderustic&family=SUSE:wght@600&display=swap");
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #ffffff;

  margin: 0;
  display: block;
  justify-content: center;
  align-items: center;
  scroll-behavior: smooth;

  /* Enable scrolling while hiding scrollbar */
  height: 100vh;
  overflow-y: scroll;
}

body::-webkit-scrollbar {
  display: none; /* Hides scrollbar in Webkit browsers */
}

.floating-buttons {
  /* display: flex; */
  /* flex-direction: column; */
  /* position: fixed; */
  /* top: 10%;
  right: 20px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #ffffffbe; /* Purple background */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
}

.floating-btn img {
  width: 30px;
  height: 30px;
}

.floating-btn:hover {
  background-color: #3071bc;
  transform: scale(1.1);
}

.floating-btn:active {
  background-color: #29036d;
}

/* Hero Section Container */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Fixed height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-image 2s ease-in-out;
  background-image: url("./images/1.jpg");
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0%, 0%);
  /* width: 100vw;
  height: 100vh; */
  object-fit: cover;
}

/* Overlay for content styling */
.overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
  backdrop-filter: blur(3px); /* Apply blur effect */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
}

/* Navigation Bar */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.nav-links a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.nav-links a:hover {
  color: rgb(40, 40, 231);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #f0ebeb;
  border-radius: 2px;
  transition: 0.3s;
}

/* Dropdown Menu (Hidden by Default) */
.nav-links {
  display: flex;
}

.nav-links.mobile-hidden {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 20px;
  background: rgb(255, 255, 255);
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  width: 50%;
  text-align: center;
}

.nav-links.mobile-hidden a {
  margin: 10px 0;
}

.actions {
  display: flex;
  align-items: center;
}

.search-input {
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  margin-right: 10px;
}

.login,
.signup {
  margin-left: 10px;
  color: #fff;
  text-decoration: none;
}

.signup {
  background: #0073ff;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: bold;
  transition: 0.3s;
}

.signup:hover {
  background: #033d83;
}

/* Hero Content */
.hero-content {
  text-align: center;
  margin-top: 50px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 1.2px;
  color: #fff;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
  color: #f1f1f1;
}

/* Search Bar Section */
.search-bar {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-right: 15px;
  flex: 1; /* Equal widths for all inputs */
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.input-group label {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  font-weight: bold;
}

.input-group input:focus,
.input-group select:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.5);
}
.search-btn {
  background-color: #0073ff;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  transition: background-color 0.3s;
  align-self: flex-end;
}

.search-btn:hover {
  background-color: #033d83;
}

.logo-png {
  width: 60px;
  filter: contrast(30px);
}
/* Responsive Layout */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .search-bar {
    flex-direction: column; /* Stack all elements */
  }

  .input-group {
    margin-bottom: 15px;
    width: 100%;
  }

  .input-group input,
  .input-group select {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
  }

  .search-btn {
    padding: 12px;
    font-size: 14px;
    width: 100%; /* Button spans full width in mobile */
    text-align: center;
  }

  .nav-links a {
    color: black;
  }
}
.search-bar {
  backdrop-filter: blur(6px);
}
/* Cursor */
/* .cursor {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgb(198, 197, 197);
  position: absolute;
  z-index: 999;
  pointer-events: none;
  mix-blend-mode: difference;
}
.cursor-f {
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.4202 42.4202C38.8403 46 33.3594 46 23.5 46C13.6406 46 8.15966 46 4.57983 42.4202C1 38.8403 1 33.3594 1 23.5C1 13.6406 1 8.15966 4.57983 4.57983C8.15966 1 13.6406 1 23.5 1C33.3594 1 38.8403 1 42.4202 4.57983C46 8.15966 46 13.6406 46 23.5C46 33.3594 46 38.8403 42.4202 42.4202Z' stroke='white'/%3E%3C/svg%3E%0A");
  background-size: cover;
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0.5;
} */

/* section 2 contains destinations */
/* Container Section */
/* Container Section */
.dest-container {
  position: relative;
  width: 100%;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  overflow: hidden; /* Hide overflowing shapes */
  flex-direction: column;
}

/* Background Shapes */
.background-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #74c0fc, #4263eb);
  top: -50px;
  left: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #b197fc, #845ef7);
  bottom: 500px;
  right: -50px;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Center Content */
.content-container {
  position: relative;
  text-align: center;
  padding: 30px;
  margin: 0 auto;
  max-width: 800px;
  background: rgba(255, 255, 255, 0); /* Semi-transparent background */
  border-radius: 15px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  z-index: 2; /* Ensure it appears above shapes */
}

.content-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.content-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #34495e;
  margin-bottom: 20px;
}

.divider {
  margin: 20px auto;
  width: 150px;
  height: 4px;
  background-color: #4263eb;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-container h2 {
    font-size: 1.5rem;
  }

  .content-container p {
    font-size: 0.95rem;
  }

  .divider {
    width: 60px;
    height: 3px;
  }

  .background-shape {
    filter: blur(80px); /* Adjust blur for smaller screens */
  }

  .shape-1 {
    width: 200px;
    height: 200px;
    top: -40px;
    left: -70px;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
  }

  .moreT {
    display: none;
  }
}

/* //card section */

:root {
  --clr-white: #fff;
  --clr-black: #111;
}
body {
  font-family: "Moderustic", sans-serif;
}
/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--clr-white);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
} */
.tour {
  background-color: white;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}
ul li {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--clr-white);
  position: relative;
  transform: translatey(0);
  transition: 0.2s ease-in-out;
}
ul li:hover {
  transform: translatey(-0.625rem);
  cursor: pointer;
}
ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.2);
}
ul li span {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 0.6rem;
  color: var(--clr-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
ul li + li {
  margin-left: -0.625rem;
}
ul img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

a {
  display: inline-block;
  text-decoration: none;
}

main {
  padding-block: min(20vh, 2rem);
  width: calc(min(70rem, 90%));
  margin-inline: auto;
  color: var(--clr-black);
  position: relative;
}
@media screen and (min-width: 40rem) {
  main .heading {
    display: flex;
    justify-content: space-between;
    gap: 1em;
  }
}
main .heading h1 {
  letter-spacing: 0.025em;
  font-size: clamp(2.5rem, 1.6351rem + 4.3243vw, 6.5rem);
  line-height: 1;
  font-family: "SUSE", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
main .heading aside {
  margin-top: 1.5em;
  max-width: 16.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media screen and (min-width: 40rem) {
  main .heading aside {
    margin-top: 3em;
  }
}
main .heading aside p {
  font-size: 0.9rem;
  color: var(--clr-black);
  line-height: 1.5;
}
main .container {
  margin-top: 2em;
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 40rem) {
  main .container {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.5em;
    gap: 2rem;
  }
}
main .card {
  padding-block: 1rem;
  background: var(--clr-white);
  border-radius: 1.2rem;
  position: relative;
  height: 24rem;
}
@media screen and (min-width: 53rem) {
  main .card {
    border-radius: 1.8rem;
  }
}
main .card p {
  position: absolute;
  right: 0;
  top: -1.25rem;
}
main .card p a {
  font-size: 0.9rem;
  display: inline-block;
  color: var(--clr-black);
}
main .card p a:hover {
  font-weight: 600;
}
main .card .card-inner {
  position: relative;
  width: inherit;
  height: inherit;
  border-bottom-right-radius: 0;
}
main .card .card-inner .box {
  width: 100%;
  height: 100%;
  background: var(--clr-white);
  border-radius: 1.2rem;
  overflow: hidden;
}
main .card .card-inner .box .videoBox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
main .card .card-inner .box .videoBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
main .card .card-inner .box .imgBox {
  position: absolute;
  inset: 0;
}
main .card .card-inner .box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
@media screen and (min-width: 53rem) {
  main .card .card-inner .box .imgBox img {
    border-radius: 1.6rem;
  }
}
main .card .card-inner .box .more {
  position: absolute;
  top: -0.375rem;
  right: 0;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--clr-white);
  padding: 0.625rem 0 0.625rem 0.625rem;
  border-bottom-left-radius: 1rem;
}
main .card .card-inner .box .more::before {
  position: absolute;
  content: "";
  top: 0.375rem;
  left: -1.188rem;
  background: transparent;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--clr-white);
  transform: rotate(-90deg);
}
main .card .card-inner .box .more::after {
  position: absolute;
  content: "";
  bottom: -1.188rem;
  right: -0.063rem;
  background: transparent;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--clr-white);
  transform: rotate(-90deg);
}
main .card .card-inner .box .more .arrow {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.125rem solid #c8c8c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
main .card .card-inner .box .more .arrow:hover {
  background: var(--clr-black);
  border: 0.125rem solid var(--clr-black);
  color: var(--clr-white);
}
main .card .card-inner .box .more .arrow:hover svg {
  color: var(--clr-white);
}
main .card .card-inner .box .more svg {
  width: 1.063rem;
  color: var(--clr-black);
}
main .card .card-inner .box .tag {
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--clr-white);
  padding: 0.625rem 0.625rem 0.625rem 0;
  border-top-right-radius: 1rem;
}
main .card .card-inner .box .tag::before {
  position: absolute;
  content: "";
  top: -1.188rem;
  left: 0;
  background: transparent;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--clr-white);
  transform: rotate(90deg);
}
main .card .card-inner .box .tag::after {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  right: -1.188rem;
  background: transparent;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--clr-white);
  transform: rotate(90deg);
}
main .card .card-inner .box .tag a {
  font-size: 0.8rem;
  color: var(--clr-black);
  font-weight: 400;
  border: 0.125rem solid #c8c8c8;
  border-radius: 3.125rem;
  padding: 0.313rem 0.625rem;
  display: inline-block;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
main .card .card-inner .box .tag a:hover {
  color: var(--clr-white);
  background: var(--clr-black);
  border: 0.125rem solid var(--clr-black);
}
main .video {
  height: 20rem;
  align-self: flex-end;
}

.poster {
  position: relative;
  display: inline-flex;
}

.poster:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  transition: 1s ease;
  opacity: 0.8;
  cursor: pointer;
}

.poster-active:after {
  opacity: 0;
  pointer-events: none;
}

/* //why choose us setion */

/* General Styles */
.unique-why-choose-us {
  width: 100%;
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
}

.unique-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-top: 50px;
  margin-bottom: 40px;
  position: relative;
}

.unique-heading::after {
  content: "";
  width: 150px;
  height: 4px;
  background: #0066ff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 140%;
  bottom: -10px;
  border-radius: 4px;
}

.unique-container {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.unique-card {
  z-index: 5;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgb(0, 76, 255);
}

.unique-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid blue;
}

.unique-icon {
  width: 100px;
  height: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

.unique-title {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 20px;
}

.unique-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .unique-container {
    flex-direction: column;
    align-items: center;
  }

  .unique-card {
    max-width: 90%;
  }
  .unique-why-choose-us {
    padding: 50px 0px;
  }
}

/* //odometer section */

.achievements-section {
  background: url("./images/dark.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.achievements-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 80px;
  margin-top: 30px;
}

.achievement-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.achievement-box {
  flex: 1;
  text-align: center;
  max-width: 150px;
}

.achievement-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.odometer {
  font-size: 2.5em;
  color: #fdfdfd;
}

.achievement-label {
  font-weight: bold;
  margin-top: 10px;
}

.book-now-button {
  background-color: #006aff;
  color: white;
  border: 1px solid white;
  padding: 15px 30px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 80px;
  border-radius: 15px;
}

.book-now-button:hover {
  background-color: #0041cc;
}

@media (max-width: 768px) {
  .achievement-container {
    flex-direction: column;
    align-items: center; /* Center items for smaller screens */
  }

  .achievements-title {
    font-size: 1.8em;
  }

  .achievement-box {
    max-width: 200px;
  }

  .book-now-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .achievements-title {
    font-size: 1.5em;
  }

  .achievement-icon {
    font-size: 30px;
  }

  .achievement-label {
    font-size: 0.9em;
  }

  .book-now-button {
    font-size: 0.8em;
    padding: 8px 15px;
  }
  .deal-card {
    width: 400px;
  }
}

/* /next section */
.ach-png {
  width: 80px;
}

.deals-section {
  text-align: center;
  padding: 50px;
  background-color: #ffffff;
}

.deals-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.deals-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.deal-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  overflow: hidden;
  transition: transform 0.3s;
}

.deal-card:hover {
  transform: scale(1.05);
}

.deal-badge {
  position: absolute;
  background-color: #007bff;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 10px;
  margin-top: 5px;
  margin-left: 5px;
  border-radius: 5px;
}

.sale {
  background-color: #ff6b6b;
}

.deal-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.deal-details {
  padding: 20px;
  text-align: left;
}

.deal-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.deal-duration,
.deal-description {
  font-size: 0.9rem;
  color: #666;
  margin: 10px 0;
}

.deal-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.current-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ff6b6b;
}

.deal-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.deal-btn:hover {
  background-color: #0056b3;
}
@media (max-width: 480px) {
  .deal-card {
    width: 400px;
  }
}
.deals-container {
  padding-top: 70px;
}
.deals-title {
  padding-top: 50px;
}
.deals-title::after {
  content: "";
  display: block;
  width: 180px;
  height: 4px;
  background-color: #0853ae; /* Set the color of the line */
  margin: 10px auto 0;
  /* Center the line and add spacing */
  border-radius: 12px;
}
.promo {
  background-color: white;
  margin-top: 0;
}
/* Promo Banner Styles */
.promo-banner {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
  max-width: 87%;
  overflow: hidden;
  position: relative;
}

/* Title Styling */
.promo-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Discount Styling */
.promo-discount {
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0;
  color: #ffdd57;
  text-transform: uppercase;
}

/* Information Styling */
.promo-info {
  font-size: 16px;
  margin-bottom: 20px;
  font-style: italic;
}

/* Button Styling */
.promo-btn {
  background-color: #ff5a5f;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.promo-btn:hover {
  background-color: #ff4146;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .promo-banner {
    padding: 20px 10px;
  }

  .promo-title {
    font-size: 20px;
  }

  .promo-discount {
    font-size: 24px;
  }

  .promo-btn {
    font-size: 16px;
    padding: 10px 25px;
  }
}

/* Section Styles */
.winter-treks {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.title-underline {
  width: 100px;
  height: 4px;
  background-color: #0066ff;
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* Trek Cards */
.treks-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.trek-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trek-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.price-badge {
  background: #ff6200;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
  margin-left: 5px;
  position: absolute;
  border-radius: 5px;
}

.trek-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.trek-details {
  padding: 15px;
}

.trek-title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.trek-duration {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.trek-description {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
  line-height: 1.5;
}

.trek-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trek-rating {
  font-size: 16px;
  color: #ffb400;
}

.trek-btn {
  background: #007bff;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.trek-btn:hover {
  background: #0056b3;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .treks-container {
    flex-direction: column;
    align-items: center;
  }
}
.section-title {
  margin-top: 60px;
}
.title-underline {
  margin-bottom: 80px;
}
.testimonials-section {
  width: 90%;
  margin: auto;
  text-align: center;
  padding: 2rem;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.image-area {
  position: relative;
  width: 45%;
  border-radius: 15px;
  overflow: hidden;
}

.image-area img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.stat {
  position: absolute;
  bottom: 10%;
  left: 5%;
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.testimonials {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card {
  background: #e9eef2;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 1rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.author .name {
  font-weight: bold;
}

.footer {
  margin-top: 2rem;
}

.footer h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .image-area,
  .testimonials {
    width: 100%;
  }

  .image-area {
    margin-bottom: 1.5rem;
  }

  .stat {
    font-size: 1.5rem;
  }
}
.imgPcomm {
  display: flex;
  flex-direction: column;
  width: 45%;
}
.image-area {
  width: 100%;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .stat {
    font-size: 1.2rem;
  }

  .testimonial-card {
    padding: 0.8rem;
  }

  .footer h2 {
    font-size: 1.2rem;
  }
  .testimonials-section {
    width: 100%;
    margin: 0;
  }
  .imgPcomm {
    width: 100%;
  }
}

/* //footer */

/* General Footer Styling */
.travel-website-footer {
  background-color: #f0f5ff;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 40px 0;
}

.travel-footer-heading {
  font-size: 18px;
  color: rgb(0, 102, 255);
  margin-bottom: 15px;
}

.travel-footer-container a {
  color: #ff5e14;
  text-decoration: none;
  transition: color 0.3s;
}

.travel-footer-container a:hover {
  color: #fff;
}

.travel-footer-container ul {
  list-style: none;
  padding: 0;
}

.travel-footer-contact-info li,
.travel-footer-quick-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.travel-footer-contact-info li i,
.travel-footer-quick-links li a:hover {
  color: #ff5e14;
  font-size: 18px;
}

.travel-footer-quick-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.travel-footer-quick-links a:hover {
  color: #ff5e14;
}

/* Social Links */
.travel-footer-social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.travel-footer-social-links a {
  background: #333;
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}

.travel-footer-social-links a:hover {
  background: #1476ff;
  transform: scale(1.1);
}

/* Subscribe Form */
.travel-footer-subscribe-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.travel-footer-input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  outline: none;
  background: #333;
  color: #fff;
}

.travel-footer-button {
  padding: 10px 20px;
  background: #14a1ff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.travel-footer-button:hover {
  background: #1261e0;
}

/* Footer Bottom */
.travel-footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  /* border-top: 1px solid #444; */
}

.travel-footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.col12 {
  display: flex;
}
.col-lg-4 {
  padding: 0px 40px;
  width: 50%;
}
.leftF {
  width: 70%;
}
.travel-footer-contact-info,
.travel-footer-quick-links {
  display: flex;
  flex-direction: column;
}

.travel-footer-contact-info li,
.travel-footer-quick-links li {
  list-style: circle;
  padding: 2px 1px;
  border-radius: 0;
  width: 100%;
  height: auto;
  border: none;
  transform: translateY(0px);
  transition: 0.2s ease-in-out;
  color: black;
}
.travel-footer-contact-info li::before,
.travel-footer-quick-links li::before {
  background-color: transparent;
}
.travel-website-footer {
  background-color: rgb(234, 243, 247);
  color: black;
}
.text-center {
  width: 100%;
  justify-content: center;
  text-align: center;
}
@media (max-width: 480px) {
  .col12 {
    flex-direction: column;
  }
  .deals-section {
    padding: 50px 20px;
  }
}
.travel-footer-social-links {
  padding: 10px;
}
.social-div {
  padding: 20px 36px;
}
.price-badge {
  background: #ff6200;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
  margin-left: 5px;
  position: absolute;
  border-radius: 5px;
  z-index: 100;
}
.viewBtn {
  margin-top: 40px;
}
.nav-links.mobile-hidden {
  z-index: 100;
}
.search-btn {
  position: relative;
  z-index: 100;
}
.floating-buttons {
  /* display: flex
; */
  /* flex-direction: column; */
  /* position: fixed; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
  z-index: 200;
}
:root {
  --hue: 223;
  --sat: 10%;
  --gray0: hsl(0, 0%, 100%);
  --gray1: hsl(var(--hue), var(--sat), 90%);
  --gray2: hsl(var(--hue), var(--sat), 80%);
  --gray3: hsl(var(--hue), var(--sat), 70%);
  --gray4: hsl(var(--hue), var(--sat), 60%);
  --gray5: hsl(var(--hue), var(--sat), 50%);
  --gray6: hsl(var(--hue), var(--sat), 40%);
  --gray7: hsl(var(--hue), var(--sat), 30%);
  --gray8: hsl(var(--hue), var(--sat), 20%);
  --gray9: hsl(var(--hue), var(--sat), 10%);
  --trans-dur: 0.3s;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.loader {
  background-color: var(--gray0);
  color: var(--gray9);
  display: flex;
  font: 1em/1.5 sans-serif;
  height: 100vh;
  transition: background-color var(--trans-dur), color var(--trans-dur);
}
/* body {
  background-color: var(--gray0);
  color: var(--gray9);
  display: flex;
  font: 1em/1.5 sans-serif;
  height: 100vh;
  transition: background-color var(--trans-dur), color var(--trans-dur);
} */

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9; /* Background color for loader */
  z-index: 1000; /* Ensure it's above other content */
  transition: transform 1s ease, opacity 1s ease; /* Smooth animation */
}

/* Move loader up off-screen */
.loader.hidden {
  transform: translateY(-100%); /* Moves the loader out of view */
  opacity: 0; /* Fade out */
}

.nav-links a:hover {
  color: #14a1ff;
}

.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.popup:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.popup h2 {
  margin-top: 0;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.popup p {
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 10px;
}

.trek-details {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
}

.trek-details p {
  margin: 5px 0;
  display: flex;
  align-items: center;
}

.trek-details p::before {
  content: "•";
  color: #dc2828;
  font-size: 18px;
  margin-right: 8px;
}

.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: none;
  z-index: 1000;
}

.popup h2 {
  margin-top: 0;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.popup p {
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 10px;
}

.trek-details {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
}

.trek-details p {
  margin: 5px 0;
  display: flex;
  align-items: center;
}

.trek-details p::before {
  content: "";
  color: #dc2828;
  font-size: 18px;
  margin-right: 8px;
}

.popup button {
  background-color: #dc2828;
  color: white;
  border: none;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popup button:hover {
  background-color: #c51f1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(220, 40, 40, 0.3);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 24px;
  color: #999;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #dc2828;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup.show {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.loader-container {
  text-align: center;
}

.tent-icon {
  animation: bounce 2s infinite;
  color: #4682b4; /* Steel Blue */
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

h1 {
  color: #00008b; /* Dark Blue */
  margin-top: 20px;
}

#tagline {
  color: #1e90ff; /* Dodger Blue */
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.loading-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #4682b4; /* Steel Blue */
  border-radius: 50%;
  margin: 0 5px;
  animation: ping 1.5s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.popup {
  z-index: 20;
}
