@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cinzel:wght@400..900&family=Dancing+Script:wght@400..700&family=Great+Vibes&family=Kaushan+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Quattrocento:wght@400;700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


body,
html {
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  /* background-color: rgb(221 220 212); */
}

.container1 {
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 99;
}

.contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.call-btn {
  background-color: #28a745;
  /* Green for call */
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px)
  }
}

.whatsapp-btn {
  background-color: #1c631c
}

.contact-btn:hover {
  transform: scale(1.1);
}

.ban {
  width: 100%;
  height: 65px;
  position: relative;
  /* overflow: visible; */
  z-index: 99;
  ;
}

#nav1 {
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: relative;
  z-index: 10;
}

.logo {
  width: 30%;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.logo img {
  height: 49px;
  width: 150px;
  display: block;
  padding: 10px;
}

#nav1 .nav-links {
  display: flex;
  justify-content: flex-end;
  width: 70%;
  gap: 0px;
  margin-right: 2em;
}

.crosshair a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-family: 'Poppins';
  font-size: 1em;
  font-weight: 400;
  /* padding: 15px 25px; */
  overflow: hidden;
  width: 130px;
  height: 26px;
  text-align: center;
  padding: 20px 0px;
}

.crosshair a span {
  position: absolute;
  background: #614e4e;
  display: block;
  opacity: 0;
  transition: 0.5s;
}

/* Horizontal lines */
.crosshair a span:nth-child(1),
.crosshair a span:nth-child(3) {
  width: 50px;
  height: 4px;
}

.crosshair a span:nth-child(1) {
  top: calc(50% - 2px);
  left: -100px;
  transform-origin: left;
}

.crosshair a:hover span:nth-child(1) {
  left: 50%;
  transform: scaleX(0);
  opacity: 1;
}

.crosshair a span:nth-child(3) {
  top: calc(50% - 2px);
  right: -100px;
  transform-origin: right;
}

.crosshair a:hover span:nth-child(3) {
  right: 50%;
  transform: scaleX(0);
  opacity: 1;
}

.crosshair a span:nth-child(2),
.crosshair a span:nth-child(4) {
  width: 4px;
  height: 50px;
}

.crosshair a span:nth-child(2) {
  left: calc(50% - 2px);
  top: -100px;
  transform-origin: top;
}

.crosshair a:hover span:nth-child(2) {
  top: 50%;
  transform: scaleY(0);
  opacity: 1;
}

.crosshair a span:nth-child(4) {
  left: calc(50% - 2px);
  bottom: -100px;
  transform-origin: bottom;
}

.crosshair a:hover span:nth-child(4) {
  bottom: 50%;
  transform: scaleY(0);
  opacity: 1;
}

label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Container for flag + select */
.currency-selector-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

#flagIcon {
  width: 24px;
  height: 16px;
  object-fit: contain;
  user-select: none;
}

select {
  border: none;
  padding: 6px 8px 6px 8px;
  font-size: 16px;
  cursor: pointer;
}

#currencySelector:focus {
  outline: none;
  border-color: #ccc;
  box-shadow: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: left 0.4s ease;
  z-index: 9;
}

.sidebar.active {
  left: 0;
}

.sidebar .crosshair a {
  font-size: 1.5em;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2em;
  cursor: pointer;
  color: #614e4e;
}

.ban2 {
  overflow: hidden;
  /* display: inline-block; */
  position: relative;
}

.ban2 img:hover {
  transform: scale(1.2);
  transition: transform 30s ease;
}


.stb {
  position: absolute;
  top: 20px;
  left: 25px;
  z-index: 99999;
  color: white;
  font-family: "Cinzel";
  font-weight: 100;
}

.ribbon-wrapper {
  position: relative;
  display: inline-block;
}

.ribbon {
  position: relative;
  background: linear-gradient(to right, #375e91, #20a4e6);
  color: white;
  font-weight: bold;
  padding: 3px 30px;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  text-align: center;
}

.ribbon::before,
.ribbon::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to bottom, #264369, #264369);
  z-index: -1;
}

.ribbon::before {
  left: -25px;
  clip-path: polygon(100% 0, 0% 50%, 100% 100%);
}

.ribbon::after {
  right: -25px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ribbon::before,
.ribbon::after {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.explore {
  color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.header-content {
  width: 100%;
  padding: 20px;
  margin: auto;
  font-family: "Montserrat";
  text-align: center;
  display: flex;
}

.header-content>h1 {
  font-size: 2.5rem;
  color: rgb(255, 255, 255);
  letter-spacing: -2.5px;
  font-family: "Quattrocento";
}

.typewriter-container {
  font-size: 1.5rem;
  color: #ffbc00;
  /* font-weight: bold; */
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

video {
  object-fit: fill;
}

.cursor {
  display: inline-block;
  background-color: #00ffe0;
  width: 10px;
  height: 1.5rem;
  margin-left: 5px;
  animation: blink 0.7s infinite;
}


.page2 {
  width: 100%;
  height: 1500px;
  background-color: #0000ff;
  color: #ffffff;
}

.sec-par {
  width: 100%;
  /* background-color: rgb(255, 255, 255); */
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.container2 {
  width: 100%;
  height: 400px;
  position: relative;
  text-align: center;
  top: 5em;
}

.container2>h1 {
  font-size: 5em;
  line-height: 0;
  font-family: "Dancing Script";
  color: #1a4713;
  /* animation: bounce2 2s infinite; */
}

/* @keyframes bounce2{
    0%{transform: translateY(0);}
    40%{transform:translateY(-20px);}
    60%{transform:translateY(-10px)}
  } */
.container2>h2 {
  font-size: 5em;
  line-height: 0;
  font-family: "Anton";
  font-weight: 500;
  text-transform: capitalize;
}

.container2>h3 {
  font-size: 3em;
  font-family: "Montserrat";
  font-weight: 300;
  margin-bottom: 0em;
}

.container2 h4 {
  font-family: 'Cinzel';
  color: #209f0a;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 7px;
}


.container2 a {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 1px;
  text-align: center;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5em;
  letter-spacing: 0em;
  font-family: sans-serif;
  transition: 0.5s;
  line-height: 1px;
}

.container2 a:hover {
  color: #0c0000;
}

.container2 a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
  transform: scale(0);
  transition: 0.5s;
}

.container2 a:hover:before {
  transform: scale(1);
  transition-delay: 0.5s;
}

.container2 a span {
  position: absolute;
  background: #000;
  display: block;

}

.container2 a span:nth-child(1),
.container2 a span:nth-child(3) {
  width: 50px;
  height: 4px;
}

.container2 a span:nth-child(2),
.container2 a span:nth-child(4) {
  width: 4px;
  height: 50px;
}

.container2 a span:nth-child(1) {
  top: calc(50% - 2px);
  left: -100px;
  transform-origin: left;
  opacity: 0;
}

.container2 a:hover span:nth-child(1) {
  left: 50%;
  transition: 0.5s;
  transform: scaleX(0);
  opacity: 1;
}

.container2 a span:nth-child(3) {
  top: calc(50% - 2px);
  right: -100px;
  transform-origin: right;
  opacity: 0;
}

.container2 a:hover span:nth-child(3) {
  right: 50%;
  transition: 0.5s;
  transform: scaleX(0);
  opacity: 1;
}

.container2 a span:nth-child(2) {
  left: calc(50% - 2px);
  top: -100px;
  transform-origin: top;
  opacity: 0;
}

.container2 a:hover span:nth-child(2) {
  top: 50%;
  transition: 0.5s;
  transform: scaleY(0);
  opacity: 1;
}

.container2 a span:nth-child(4) {
  left: calc(50% - 2px);
  bottom: -100px;
  transform-origin: bottom;
  opacity: 0;
}

.container2 a:hover span:nth-child(4) {
  bottom: 50%;
  transition: 0.5s;
  transform: scaleY(0);
  opacity: 1;
}

.container10 {
  columns: 280px;
  width: 70%;
  max-width: 1100px;
  margin: auto;
  margin-top: 4em;
  /* column-count: 3; */
  /* height: 500px; */
}

.container10>img {
  width: 100%;
  /* max-width: 300px; */
}

.container10>img:hover {
  scale: 1.2;
  transition: 2s;
}

.container10>h1 {
  font-size: 5em;
  letter-spacing: -11px;
  position: relative;
  z-index: 99;
}

.trip-slider-container {
  position: relative;
  width: 76%;
  margin: 50px auto;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 12px;
}

.trip-card-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.trip-card-trac {
  display: grid;
  gap: 16px;
  padding: 16px;
  grid-template-columns: repeat(3, 3fr);
  max-width: 1165px;
  margin: 5em auto;
}

.trip-card {
  width: 100%;
  max-width: 375px;
  height: 500px;
  background: #fff;
  margin-right: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.trip-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.trip-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trip-card-body h3 {
  display: flex;
  padding: 15px 15px 0px 15px;
  margin: 0;
  font-size: 1.5em;
  font-family: 'Raleway';
  color: #1d5321;
}

.trip-info {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: #1e5c21;
  ;
  font-family: 'Quattrocento';
  font-size: 1.5em;
  padding: 15px 15px 0px 15px;
}

.trip-rating {
  color: #25a021;
  font-size: 0.6em;
  text-align: right;
}

.trip-rating:hover {
  color: #65f55b
}

.trip-card-body p {
  font-size: 0.9em;
  color: #333;
  flex-grow: 1;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e9e7e3;
  color: #000000;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5em;
  z-index: 10;
  opacity: 0.7;
}

.nav-btn:hover {
  opacity: 1;
}

#btn-prev {
  left: 0;
}

#btn-next {
  right: 0;
}

.cont-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  margin-top: 5em;
  background-color: #e9e7e3;
}

.container22 {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  width: 1100px;
  transform-style: preserve-3d;
  perspective: 500px;
}

.container22 .box5 {
  position: relative;
  width: 275px;
  height: 300px;
  background: #000;
  transition: 0.5s;
  transform-style: preserve-3d;
  overflow: hidden;
}

.container22:hover .box5 {
  transform: rotateY(25deg);
}

.container22 .box5:hover~.box5 {
  transform: rotateY(-25deg);
}

.container22 .box5:hover {
  transform: rotateY(0deg) scale(1.25);
  z-index: 1;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}

.container22 .box5 .imgbx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container22 .box5 .imgbx:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(122 156 187), #000);
  z-index: 1;
  opacity: 0;
  transition: 0.5s;
}

.container22 .box5:hover .imgbx:before {
  opacity: 1;
}

.container22 .box5 .imgbx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container22 .box5 .content2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  padding: 20px;
  align-items: flex-end;
  box-sizing: border-box;
}

.container22 .box5 .content2 h2 {
  color: #fff;
  font-family: "Montserrat";
  transition: 0.5s;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 1.3em;
  letter-spacing: -0.1em;
  transform: translateY(300px);
}

.container22 .box5:hover .content2 h2 {
  transform: translateY(0px);
  transition-delay: 0.3s;
}

.container22 .box5 .content2 p {
  color: #fff;
  transition: 0.5s;
  font-size: 1em;
  transform: translateY(300px);
}

.container22 .box5:hover .content2 p {
  transform: translateY(0px);
  transition-delay: 0.6s;
}

.sec1 {
  width: 50%;
  height: 500px;
}

.sec2 {
  width: 50%;
  height: 500px;
}

.container3 {
  width: 100%;
  position: relative;
}

.explore1 {
  width: 78%;
  margin: auto;
  margin-top: 5em;
  padding: 0em 4em 2em 6em;
}

.explore1>h1 {
  font-size: 2.5em;
  line-height: 1;
  font-family: "Anton";
  font-weight: 500;
  text-transform: capitalize;
  color: #000000;
}

.explore1>h2 {
  font-size: 1.5em;
  font-family: "Montserrat";
  font-weight: 300;
  color: #000;
}

.explore1>h4 {
  font-size: 1.5em;
  line-height: 0;
  font-family: "Math";
  color: #1a4713;
}

/* CAROUSEL */

.carousel-container {
  position: relative;
  max-width: 80%;
  margin: auto;
  display: flex;
  align-items: center;

}

.scroll-btn {
  font-size: 2rem;
  height: 100%;
  width: 40px;
  background: #ddd;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s;
}

.scroll-btn:hover {
  background-color: #ccc;
}

.carousel {
  display: flex;
  overflow: hidden;
  gap: 20px;
  width: 100%;
  scroll-behavior: smooth;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.card {
  flex: 0 0 calc(100% / 5);
  height: 500px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.card2 {
  flex: 0 0 calc(100% / 3.2);
  height: 500px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

/* .card:hover{
    flex: 0 0 calc(100% / 2);
} */

.card-img {
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

/* .card-img:hover{
    transform: scale(1.1);
  } */

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.dots {
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #3498db;
}

.card-info {
  height: 20%;
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  z-index: 5;
  color: #ffffff;
  top: 26em;
}

.card-info h3 {
  margin: 0;
  font-family: "Cinzel";
  font-size: 1.5em;
  /* color: white; */
}

.card-info .desc {
  margin: 10px 0;
  font-size: 1em;
  /* color: #000000; */
  flex-grow: 1;
}

.action-btn {
  background-color: #a8a3a3;
  color: rgb(0, 0, 0);
  padding: 10px;
  text-align: center;
  /* border-radius: 6px; */
  text-decoration: none;
  font-weight: bold;
}

.action-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.container5 {
  width: 100%;
  position: relative;
}

.container4 {
  width: 100%;
  height: 600px;
  display: flex;
  /* position: relative; */
}

/* TRANSPORT */
.transport-container {
  background: #ffffff;
  width: 100%;
  margin: auto;
  margin-top: 9em;
}

.transport-section {
  
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
  padding:3% 5% 8% 5%;
}

.transport-left {
  width: 60%;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

.transport-left h1 {
  color: rgb(0, 0, 0);
  font-size: 3.5em;
  font-family: 'Kaushan Script';
  margin: 0px;
  /* position: absolute; */
  bottom: 5em;
    left: 1.5em;
}

.transport-left p {
  font-size: 1em;
  font-family: 'Poppins';
  margin: 0px;
  padding: 0em 10em 0em 0em;
  color: #000000;
  /* position: absolute; */
  bottom: -7em;
    left: 5em;
}
.transport-shadow {
      position: absolute;
      bottom: 45px;
      left: 50%;
      width: 100%;
      height: 35px;
      background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }

.transport-right {
  width: 40%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.transport-car-wrapper {
  position: relative;
  display: inline-block;
  left: -800px;
  width: 550px;
  transition: left 5s cubic-bezier(0.33, 1, 0.68, 1);
}

.transport-car-wrapper.active {
  left: 40%;
  transform: translateX(-50%);
  top: 1em;
}

.transport-car-body {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.transport-wheel {
  position: absolute;
  width: 73px;
  animation: spin 1.3s linear infinite;
  z-index: 3;
}

.transport-front-wheel {
  bottom: 55px;
  right: 82px;
}

.transport-back-wheel {
  bottom: 55px;
  left: 99px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* transport-slider */
.trans-slider-container {
  width: 82%;
  position: relative;
  overflow: hidden;
  color: white;
  margin: auto;
}

.trans-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.trans-card {
  background: #1e1e1e;
  border-radius: 10px;
  flex-shrink: 0;
  width: calc((100% - 3 * 25px) / 4);
  margin: 0 10px;
}

.trans-card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.trans-card-content {
  padding: 15px;
}

.trans-card-content h3 {
  margin: 0;
  font-size: 1.4em;
  font-family: "Montserrat";
  font-weight: 500;
}

.trans-card-content p.location {
  margin: 5px 0 15px;
  font-size: 0.85rem;
  color: #bbb;
}

.trans-features {
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 15px;
  width: 60%;
}

.trans-features div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.1em;
  padding: 5px 0px;
  font-family: "Montserrat";
  font-weight: 300;
}

.trans-card-bot{
  display: flex;
}

.trans-price{
  text-align: right;
  color: yellow;
  width: 40%;
  font-size: 0.95em;
}
.trans-price div{
  padding: 5px 0px;
}
.trans-details {
  text-align: center;
  background-color: #ffec1b;
  color: rgb(0, 0, 0);
  cursor: pointer;
  font-size: 1rem;
  padding: 9px;
  margin: 10px 0px 25px 0px;
  width: 40%;
  border-radius: 6px;
  float: right;
}
.trans-details a{
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.trans-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.trans-nav-button {
  width: 40px;
  height: 40px;
  background-color: #ffc107;
  border: none;
  color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/*---------------------- EXPEIENCES ----------------------------*/
.gallery {
  display: flex;
  width: 76%;
  height: 500px;
  margin: 10px auto;
  gap: 10px;
  z-index: 0;
}

.left-large {
  flex: 1;
  background: url('img/bg1.jpg') center/cover no-repeat;
  background-size: cover;
  position: relative;
}

.right-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.grid-image {
  background-size: cover;
  background-position: center;
  position: relative;
}
.overlay-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 1.1rem;
}

.container {
  width: 76%;
  display: flex;
  margin: 0 auto;
  gap: 20px;
  border-radius: 3px;
  padding: 20px;
}

.pck2 {
  display: flex;
}

.pack-ban1 {
  width: 100%;
}


.left-card {
  width: 60%;
}

.left-card2 h2 {
  font-family: "Raleway";
}

.left-card h3 {
  font-size: 1em;
  color: #005761;
  font-family: "Cinzel";
}

.left-card h3 span {
  font-size: 2.1em;
  color: #005761;
}

.left-card h4 {
  font-size: 1.5em;
  color: #2f5b71;
  margin: 0px;
}

.left-card h4 span {
  font-size: 2.1em;
  color: #424949;
}

.detail {
  display: flex;
  justify-content: space-between;
}

.right-card {
  flex: 35%;
  /* border-left: 1px solid #ccc; */
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.summary-container {
  border: 1px solid #ddd;
  background-color: #fff;
  max-width: 400px;
  width: 35%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px;
  width: auto;
}

.summary-container2 {
  border: 1px solid #ddd;
  background-color: #fff;
  max-width: 500px;
  width: 35%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px;
  width: 370px;
  display: none;
  margin: auto;
}

.summary-header {
  background-color: #52b2cf;
  color: #ffffff;
  padding: 12px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  font-family: 'Cinzel';
}

.inclusions-section {
  margin-top: 20px;
}

.inclusions-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}

.details {
  margin-top: 8px;
  font-size: 15px;
  color: #333;
}

.details p {
  margin: 4px 0;
}

.pricing {
  margin-top: 20px;
}

.pricing-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  letter-spacing: 1px;
}

.pricing-table th,
.pricing-table td {
  padding: 10px 12px;
  border: 1px solid #ccc;
  text-align: left;
}

.price td span {
  font-size: 0.5em;
  color: grey;
}

.pricing-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: bold;
  color: #222;
}

h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  font-family: 'Optima';
  color: #106a88;
}

.divider {
  width: 100%;
  margin-top: 1em;
  height: 1px;
  background-color: #ccc;
  margin-top: 5px;
  margin-bottom: 5px;
}

.features {
  display: flex;
  justify-content: space-between;
  font-size: 1em;
  padding: 10px 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0a1f29;
  font-size: 1em;
  /* border-right: 1px solid rgb(176, 176, 176); */
}

.destination-section {
  margin-top: 1.5em;
  background-image: url(img/grp.jpg);
}

.destination-section h3 {
  margin-top: 0;
  font-size: 1.5em;
  font-family: "Montserrat";
  line-height: 0.5em;
}

.destination-section p {
  border: 2px solid #147e0c;
  padding: 10px 80px;
  display: inline-block;
  font-size: 1.2em;
  font-weight: 500;
  border-radius: 10px;
  font-family: "Montserrat";
}

.price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2em;
}

/* .price {
  font-size: 1.5em;
  font-weight: bold;
  font-family: "Montserrat";
} */



.rating {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating p:hover {
  color: #209f0a;
}

.rating svg {
  width: 16px;
  height: 16px;
  fill: gold;
}

.enquiry-btn {
  margin-top: 15px;
  padding: 10px 50px;
  background-color: #33b43b;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  width: 100%;
}


.form-container {
  border: 1px solid #89f5ef;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: sticky;
  top: 10em;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

input,
textarea {
  padding: 12px 8px 8px 8px;
  font-size: 14px;
  width: 95%;
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  background-color: #fff;
}

label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffffff;
  padding: 0 4px;
  font-size: 14px;
  color: #777;
  pointer-events: none;
  transition: 0.2s ease all;
}

input:focus+label,
input:not(:placeholder-shown)+label,
textarea:focus+label,
textarea:not(:placeholder-shown)+label {
  top: -10px;
  left: 8px;
  font-size: 12px;
  color: #4ddad3;
}

button.request-btn {
  padding: 10px;
  background-color: #209f0a;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
}

button.request-btn:hover {
  background-color: #006400;
}

.popup-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
  color: #28a745;
  margin-bottom: 10px;
}

.popup-content button {
  margin-top: 15px;
  padding: 8px 20px;
  background-color: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.inclusions {
  width: 70%;
  display: flex;
  margin: auto;
  margin-top: 5em;

}

.inclusions i {
  color: #006400;
  padding-right: 5px;
}

.inclusions li {
  list-style: None;
  line-height: 2;
  font-size: 1.1em;
  font-family: 'Montserrat';
}

.inclusion {
  width: 50%;
  border-right: 1px solid rgb(244, 244, 244);
  padding-left: 40px;
}

.inclusion h1 {
  /* text-align: center; */
  color: #006400;
  font-family: 'Cinzel';
}

.exclusion {
  width: 50%;
  padding-left: 40px;
}

.exclusion h1 {
  /* text-align: center; */
  color: #006400;
  font-family: 'Cinzel';
}

.tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  max-width: 700px;
}

.tabs button {
  flex: 1;
  padding: 10px;
  background-color: #f0f0f0;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Montserrat';
}

.tabs button.active {
  background-color: #106a88;
  color: #ffffff;
}

.section {
  display: none;
  padding: 20px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background-color: #fafafa;
}

.section p {
  color: #4b494a;
}

.section ul {
  display: flex;
  justify-content: space-between;
  padding: 0px;
}

.section ul li {
  list-style: none;
  color: #006400;
}

.section.active {
  display: block;
}

.tab {
  display: flex;
  height: auto;
  gap: 20px;
  border-bottom: 1px solid rgb(229, 221, 221);
  padding: 0px 10px;
  width: 100%;
}

.tab div {
  display: flex;
  gap: 20px;
  width: auto;
}

.tab h4 {
  line-height: 3;
  font-size: 1em;
  font-family: 'Cinzel';
  color: #f57809;
}

.tab div h5 {
  line-height: 0;
  font-size: 1em;
  font-family: 'Cinzel';
  color: #4b494a;
}

.circular-image {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(0%, 20%);
}


.container11 .right-card2 {
  width: 35%;
  position: relative;
  margin-top: 10em;
  padding: 20px;
}

.container7 {
  width: 100%;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.photo-slider-container {
  position: relative;
  max-width: 700px;
  height: 290px;
  overflow: hidden;
  margin: 20px 0px;
  border-radius: 10px;
  background-color: #333;
  /* Fallback if images fail */
}

.slider-counter {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 10;
}

.image-slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  flex-shrink: 0;
  width: 700px;
  height: 290px;
  background-position: center;
  background-size: cover;
}

.slider-nav-btn {
  position: absolute;
  bottom: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.slider-nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#slider-prev {
  left: 10px;
}

#slider-next {
  right: 10px;
}

.days {
  margin: 50px 0px 20px 0px;
  text-align: left;
  width: 75%;
}

.days h2 {
  margin: 0;
  font-size: 1.5em;
  font-family: "Raleway";
}

.three-columns {
  /* display: flex; */
  align-items: center;
  gap: 10px;
}

.transfer {
  /* display: flex; */
  align-items: anchor-center;
}

.transfer p {
  width: 100%;
  color: #4b494a;
  font-family: math;
}

.separator-svg {
  width: 24px;
  height: 24px;
}

.container12 {
  display: flex;
  width: 76%;
  margin: 2em auto;
  /* background-color: #fff; */
  border-top: 0.5px solid rgb(178, 178, 178);
}

.left-card3 {
  flex: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.left-card3 h1 {
  font-family: 'Raleway';
  padding: 15px;
  margin-bottom: 0;
}

.left-card3 li {
  font-family: 'Montserrat';
  padding: 3px;
  font-size: 0.9em;
}

.right-card3 {
  flex: 50%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  list-style-type: circle;
}

.right-card3 h1 {
  font-family: 'Cinzel';
}

.right-card3 li {
  margin: 5px 0px;
  font-family: 'Montserrat';
  list-style-type: circle;
  padding: 2.5px 50px 2.5px 0px;
}

.travel-slider-container {
  width: 76%;
  margin: 2em auto;
  position: relative;
}

.travel-slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.travel-slider-btn {
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  pointer-events: auto;
}

.travel-slider-track-wrapper {
  overflow: hidden;
  padding-top: 40px;
}

.travel-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.travel-card {
  width: 410px;
  height: 500px;
  background: #ffffff;
  margin-right: 20px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.travel-card img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.travel-title {
  margin: 12px;
  font-size: 20px;
  font-weight: bold;
  font-size: 1.5em;
  font-family: 'Raleway';
  color: #1d5321;
  letter-spacing: -1px;
}

.travel-info {
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 14px;
  font-weight: bold;
  color: #1e5c21;
  font-family: 'Quattrocento';
  font-size: 1.5em;
}

.travel-rating {
  padding: 10px 12px 0;
  color: #ff9800;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.travel-rating-score {
  margin-left: 6px;
  font-size: 14px;
  color: #006400;
}

.travel-description {
  padding: 8px 12px;
  font-size: 13px;
  color: #666;
  margin-top: auto;
}

.review-section {
  width: 70%;
  margin: 5em auto;
  max-width: 950px;
  text-align: center;
  position: relative;
}

.review-section h2 {
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
  font-size: 28px;
  font-family: 'Cinzel';
}

.review-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.review-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  width: 340px;
  background: #ffffff;
  color: #333;
  border-radius: 15px;
  padding: 20px;
  margin: 0 10px;
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.name {
  font-weight: bold;
  font-family: 'Montserrat';
  color: #440069;
  margin-bottom: 12px;
  font-size: 18px;
}

.review-text {
  font-size: 15px;
  line-height: 1.5;
  font-family: 'Montserrat';
}

.stars {
  color: #ffd700;
  margin-top: 15px;
  font-size: 20px;
}

.review-card.active {
  opacity: 1;
  position: relative;
  transform: scale(1);
  z-index: 3;
}

.review-card.left,
.review-card.right {
  opacity: 0.5;
  z-index: 2;
}

.review-card.left {
  transform: translateX(-200px) scale(0.9);
}

.review-card.right {
  transform: translateX(200px) scale(0.9);
}

.review-dots {
  margin-top: 25px;
}

.review-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #b08b8b;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.review-dot.active {
  background: rgb(117, 67, 67);
}

.footer {
  width: 100%;
  /* height: 700px; */
  background-color: #1a1a3f;
  /* background-color: #000000; */
  overflow: hidden;
  text-align: center;
  overflow: hidden;
}

.footer-top {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  gap: 50px;
  text-align: center;
  color: #cecece;
  font-family: 'Cinzel';
  margin-top: 5em;
}

.footer-top-section {
  width: 33%;
  cursor: pointer;
}

.footer-top p {
  padding: 0px 50px;
}

.footer-top a {
  text-decoration: none;
  color: #cecece;
}

.footer-main {
  display: flex;
  gap: 50px;
  width: 70%;
  margin: auto;
  color: #cecece;
}

.footer-main-section a {
  color: #cecece;
  text-decoration: none;
  font-family: 'Cinzel';
  cursor: pointer;
}

.footer-main-section i {
  margin-right: 5px;
}

.footer-main-section {
  margin-top: 5em;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  color: #cecece;
  width: 100%;
  transition: color 0.3s ease;
}

.footer-main-section a i {
  transition: transform 0.3s ease, font-size 0.3s ease;
}

.footer-main-section a:hover i {
  transform: translateX(-5px);
  font-size: 1.2em;
}

.all-rights {
  width: 100%;
  color: #a9a9a9;
  margin: 5em 0em 0em 0em;
  letter-spacing: 5px;
  font-family: 'Cinzel';
}

.footer h1 {
  font-size: 15em;
  /* text-transform: uppercase; */
  color: #88a6bb;
  text-align: center;
  position: relative;
  bottom: -100px;
  font-family: "Montserrat";
  letter-spacing: -40px;
  opacity: 0.2;
  line-height: 0;
  left: -0.1em;
  margin-top: 0px;
}





/* FORM AUTO OPEN */

#contactModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 470px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

#contactModal.show {
  display: flex;
}

#contactModal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

#contactModal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

#contactModal input,
#contactModal textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

#contactModal button.submit-btn {
  padding: 10px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

#contactModal button.submit-btn:hover {
  background-color: #0056b3;
}

------------------------------------------
/* ABOUT SECTION */



.about-container {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-section {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.about-section2 {
  display: flex;
  width: 76%;
  height: 700px;
  background-color: #ffffff;
  position: relative;
  top: -8em;
  margin: auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 4em;
  font-family: 'Montserrat';
  background-image: url(img/text3.jpg);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  letter-spacing: -5px;
  padding-top: 1em;
}

.about-text h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.about-sec2-img {
  width: 100%;
  position: relative;
  top: 16em;
  left: 4em
}

.about-text p {
  font-size: 1.4em;
  padding: 0px 35px;
  ;
  letter-spacing: -1px;
  font-family: 'Montserrat';
  margin-top: 3em;
}

.about-text h3 {
  font-size: 1.4em;
  padding: 0px 35px;
  ;
}


.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section3 {
  display: flex;
  width: 76%;
  height: 600px;
  background-color: #ffffff;
  position: relative;
  top: -8em;
  margin: auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.about-section4 {
  display: flex;
  flex-direction: row;
  width: 76%;
  height: 600px;
  background-color: #ffffff;
  position: relative;
  top: -8em;
  margin: auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.about-sec4-img {
  position: relative;
  top: 6em;
  right: -4em;
  object-fit: cover;
  width: 640px;
  height: 366px;
}

.about-sec5-img {
  position: relative;
  top: 2em;
  right: -2em;
  object-fit: cover;
}

.about-text2 {
  margin-left: 3em;
  margin-top: 3em;
}

.about-text3 {
  margin-top: 3em;
}

.about-text3 h3 {
  font-size: 2em;
  font-family: 'Montserrat';
  background-image: url(img/text3.jpg);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -3px;
  padding-top: 1em;
}

.about-text3 p {
  font-size: 1.3em;
  padding: 0px 35px 0px 0px;
  letter-spacing: -1px;
  font-family: 'Montserrat';
  margin-top: 1em;
}

.about-text2 h3 {
  font-size: 2em;
  font-family: 'Montserrat';
  background-image: url(img/text3.jpg);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -3px;
  padding-top: 1em;
}

.about-sec3-img {
  position: relative;
  top: 6em;
  right: 4em;
  object-fit: cover;
}
.about-sec3-img img{
  width: 660px;
  height: 365px;
}

.about-text2 p {
  font-size: 1.3em;
  padding: 0px 35px 0px 0px;
  letter-spacing: -1px;
  font-family: 'Montserrat';
  margin-top: 1em;
}


.left-img {
  flex: 1;
}

.left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.right-content h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.right-content p {
  font-size: 1em;
  margin-bottom: 20px;
}

.travel-gallery {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.travel-gallery img {
  width: 300px;
  height: 180px;
  object-fit: cover;
}

.gallery-text h3 {
  margin-top: 20px;
  font-size: 1.5em;
}

.gallery-text p {
  font-size: 1em;
}

/* GAllery page css */

.gallery-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 10px;
  border-bottom: 2px solid #ccc;
  background: #ffffff;
  gap: 10px;
}

.privacy {
  font-family: "Cinzel";
  padding: 20px;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.privacy h2 {
  font-family: 'Cinzel';
  color: #1a1a3f;
}

.privacy h1 {
  font-family: 'Cinzel';
  color: #1a1a3f;
}

.backbutton {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  background-color: #005a87;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.backbutton:hover {
  background-color: #004466;
}

/* Back button */
.back-button {
  margin-right: auto;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
}

.back-button:hover {
  background-color: rgba(161, 163, 164, 0.2);
}

/* Tab buttons */
.gallery-tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  color: #333;
  border-bottom: 3px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.gallery-tab-btn:hover {
  border-bottom-color: #aaa;
}
.gallery-tab-btn.active {
  color: #007bff;
  border-bottom-color: #007bff;
}
.image-count {
  font-size: 14px;
  color: #555;
  margin: 15px 30px 0;
  text-align: right;
  font-weight: 600;
}
.gallery-section {
  display: none;
  flex-direction: column;
}
.gallery-section.active {
  display: flex;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 2fr));
  gap: 15px;
  padding: 10px 30px 30px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.25s ease;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  animation: zoomIn 0.35s ease;
  object-fit: contain;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  font-size: 36px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  user-select: none;
  padding: 0 10px;
  transition: color 0.3s ease;
}

.lightbox .close:hover,
.lightbox .prev:hover,
.lightbox .next:hover {
  color: #007bff;
}

.lightbox .close {
  top: 20px;
  right: 30px;
}

.lightbox .prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    background: rgba(0, 0, 0, 0);
  }

  to {
    background: rgba(0, 0, 0, 0.85);
  }
}





/* RESPONSIVE */
/* Small laptops  */
@media (min-width: 1024px) and (max-width: 1366px) {
  .explore1 {
    width: 84%;
  }

  .carousel-container {
    max-width: 84%;
  }

  .container10 {
    width: 80%;
  }

  .trip-card {
    max-width: 360px;
  }

  .trip-slider-container {
    width: 87%;
  }

  .footer h1 {
    bottom: -60px;
  }

  .about-section2 {
    width: 84%;
  }

  .about-section3 {
    width: 84%;
  }

  .about-section4 {
    width: 84%;
    top: -3em;
  }
}

/* Tablets (iPads and similar) */
@media (max-width: 1024px) and (min-width: 768px) {
  .card {
    flex: 0 0 calc(100% / 2.1);
  }

  #nav1 .nav-links {
    width: 76%;
    margin-right: 0em;
  }


  .crosshair a {
    font-size: 1.2em;
  }

  .transport-section{
    display: block;
  }
  .transport-left{
    width: 100%;
    margin-bottom: 5em;
  }
  .transport-left h1{
    position: relative;
    bottom: 0;
    left: 3.5em;
  }
  .transport-car-wrapper {
    transition: left 4s cubic-bezier(0.33, 1, 0.68, 1); 
  }

  .transport-car-wrapper.active{
    left: 50%;
  }
  .transport-left p{
    position: relative;
    bottom: 0;
    left: 7em;
  }
  .transport-right{
    width: 95%;
  }

  .trans-card {
    width: calc((100% - 1 * 24px) / 2); 
  }


  .container10 {
    columns: 400px;
  }

  .container22 .box5 {
    width: 100%;
    height: 300px;
  }

  .container22:hover .box5 {
    transform: none;
  }

  .container22 .box5:hover~.box5 {
    transform: none;
  }

  .container22 .box5:hover {
    transform: none;

  }

  .trip-card-trac {
    grid-template-columns: repeat(2, 2fr);
    max-width: 760px;
  }

  .footer h1 {
    font-size: 9em;
    top: 15px;
    letter-spacing: -25px;
  }

  .gallery {
    width: 100%;
    height: 500px;
  }

  .explore1 h1 {
    margin-bottom: 1em;
  }

  .container {
    display: block;
    width: 90%;
    margin: auto;
  }

  .container2 a {
    top: 85%;
  }

  .left-card {
    width: 100%;
  }

  .form-container {
    display: none;
  }

  .summary-container {
    display: none;
  }

  .summary-container2 {
    display: block;
    margin: auto;
    max-width: 800px;
    width: 700px;
  }

  .photo-slider-container {
    margin: auto;
  }

  .tabs {
    margin: auto;
  }

  .about-section2 {
    flex-direction: column;
    height: auto;
  }

  .about-sec2-img {
    top: 0em;
    left: -0.5em;
  }

  .about-section3 {
    flex-direction: column-reverse;
    top: -8emem;
    height: auto;
  }

  .about-sec3-img {
    top: 0em;
    right: 0.5em;
  }

  .about-text2,
  .about-text3 {
    margin: 0em;
    padding: 20px;
  }

  .about-section4 {
    top: -8em;
    height: auto;
    display: block;
  }

  .about-sec4-img {
    right: 0.5em;
    top: 0em;
  }

  .about-sec5-img {
    right: 0.5em;
    top: 1em;
  }

  .about-section3:nth-child(3) {
    flex-direction: column;
  }

  .container22 .box5 .content2 h2 {
    font-size: 2em;
    font-family: 'Cinzel';
  }

  .container22 .box5 .content2 p {
    font-size: 1.5em;
    font-family: 'Montserrat';
  }

  .footer-top {
    gap: 0px;
  }


}

/* Phones */
@media (max-width: 767px) {
  #nav1 .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    padding: 20px;
  }

  .logo>img {
    width: 90px;
    height: 35px;
  }

  .form-container {
    display: none;
  }

  .card {
    flex: 0 0 calc(100% / 1);
    height: 500px;
  }

  .explore {
    top: 50%;
    left: 46%;
  }

  .ban2 img {
    height: 100vh;
    object-fit: cover;
  }

  video {
    object-fit: cover;
    width: 100%;
  }

  .stb {
    transform: translateX(50%);
  }

  .header-content h1 {
    font-size: 1.2em;
    letter-spacing: 0px;
  }

  .typewriter-container {
    font-size: 0.8em;
  }

  .explore h1 {
    font-size: 1.5em;
  }

  .explore h2 {
    font-size: 2em;
  }

  .explore h3 {
    font-size: 1em;
  }

  #contactModal {
    top: 50%;
    left: 50%;
    width: 315px;
  }
  /* TRANSPORT SECTION */

  .transport-container{
    margin-top: 5em;
  }

  .transport-section{
    display: block;
  }
  .transport-left{
    width: 100%;
  }
  .transport-right{
    display: none;
  }
  .transport-left h1{
    position: relative;
    font-size: 2.5em;
    bottom: 0em;
    left: 0em;
  }
  .transport-left p{
    position: relative;
    padding: 1em;
    bottom: 2em;
    left: 0em;
  }
  .transport-car-wrapper {
    transition: left 2.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .transport-car-wrapper.active{
    transform: translateX(-30%);
    top: 0em;
  }
  .transport-car-body{
    width: 50%;
  }
  .transport-wheel{
    width: 37px;
    animation: spin 1s linear 4;
  }
  .transport-back-wheel{
    bottom: 25px;
    left: 48px;
  }
  .transport-front-wheel{
    bottom: 26px;
    left: 198px;
  }
  .transport-shadow{
    bottom: 10px;
    width: 60%;
    left: 25%;
  }
  .trans-card{
    width: calc((100% - 1 * 5px) / 1);
    margin: 0 5px;
  }


  .feature {
    gap: 0px !important;
    border-right: 1px solid rgb(176, 176, 176);
    padding-right: 5px;
    font-size: 0.8em;
  }

  .features {
    gap: 5px;
  }

  .explore1 {
    padding: 0px;
  }

  .explore1 h4 {
    line-height: 1;
  }

  .sidebar {
    position: absolute;
  }

  .container2 h2 {
    line-height: 1;
    padding: 0px 20px;
  }

  .container2 a {
    top: 150%;
    left: 50%;
    width: 100vw;
  }

  .container2 h3 {
    font-size: 1.5em;
    margin: auto;
    width: 94%;
  }

  .gallery {
    width: 96%;
    margin: auto;
  }

  .contact-buttons {
    bottom: 20px;
    right: 20px;
  }

  .carousel-container {
    max-width: 90%;

  }

  .container10 {
    margin-top: 24em;
  }

  .container10 h1 {
    font-size: 4em;
  }

  .left-card {
    display: block;
    width: 100%;
  }

  .right-card {
    display: none;
  }

  .section ul li:nth-child(4) {
    display: none;
  }

  .container {
    width: 96%;
    padding: 0px;
    margin: auto;
  }

  .right-grid {
    display: none;
  }

  .summary-container2 {
    display: block;
    border: none;
    width: 300px;
  }

  .tab {
    display: block;
    height: auto;
  }

  .tab div h5 {
    line-height: 1;
    transform: translateY(-25px);
  }

  .three-columns .feature {
    border: none;
    gap: 5px;
  }

  .circular-image {
    display: none;
  }

  .review-card {
    width: 100%;
  }

  .container22 .box5 {
    width: 100%;
    height: 200px;
  }

  .container22:hover .box5 {
    transform: none;
  }

  .container22 .box5:hover~.box5 {
    transform: none;
  }

  .container22 .box5:hover {
    transform: none;

  }

  .footer-top {
    display: block;
  }

  .footer-main-section:nth-child(2) {
    display: none;
  }

  .footer-top-section {
    width: 100%;
  }

  .container2 a span:nth-child(3) {
    right: 0px;
  }

  .footer h1 {
    font-size: 5em;
    bottom: -15px;
    letter-spacing: -15px;
  }

  .container5 {
    top: -2em;
  }

  .trip-slider-container {
    width: 87%;
  }

  .photo-slider-container {
    width: 100%;
  }

  .section {
    width: 100%;
  }

  .inclusions {
    width: 90%;
    display: block;
    margin: auto;
    text-align: center;
  }

  .inclusion {
    padding: 0px;
    width: 100%;
    margin: auto;
    border: none;
  }

  .exclusion {
    padding: 0px;
    width: 100%;
    margin: auto;
  }

  .inclusion li {
    text-align: center;
  }


  .package-main .trip-card {
    margin: auto;
  }

  .trip-card-trac {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    padding: 0px;
  }

  .about-section{
    overflow: hidden;
  }
  .about-section img {
    width: 100%;
    image-orientation: from-image;
  }

  .about-section2 {
    display: block;
    width: 100%;
    top: -6em;
  }

  .about-section2,
  .about-section3,
  .about-section4 {
    box-shadow: none;
  }

  .about-text2 {
    text-align: center;
    margin-left: 0em;
  }

  .about-text2 p {
    padding: 10px;
  }

  .about-section3 {
    display: block;
    width: 100%;
    top: 0em;
    height: auto;
  }

  .about-sec2-img {
    display: none;
    width: 400px;
  }

  .about-sec3-img {
    max-width: 380px;
    height: 300px;
    top: 0em;
    right: 0em;
    left: 0em;
    overflow: hidden;
    margin: 3em auto;
  }

  .about-sec4-img {
    max-width: 380px;
    height: 300px;
    top: 0em;
    right: 0em;
    left: 0em;
    overflow: hidden;
    margin: 3em auto;
  }

  .about-sec5-img {
    max-width: 380px;
    height: 300px;
    top: 0em;
    right: 0em;
    left: 0em;
    overflow: hidden;
    margin: 3em auto;
  }
  .about-text3 {
    text-align: center;
  }
  .about-section4 {
    flex-direction: column-reverse;
    width: 100%;
    top: 0em;
    height: auto;
  }
  .about-text3 p {
    padding: 10px;
  }


}