@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root {
  --orange: #ffb421;
  /* --blue: #0077B6;
  --white: white; */
  --blue: #2C5F2D;
  --white:#F5F5DC;
  --btn_hover_color: #3D7A3D;
}

* {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all .2s linear;
}

*::selection {
  background: var(--orange);
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

section {
  padding: 2rem 9%;
}

.heading {
  text-align: center;
  padding: 2.5rem 0
}

.heading span {
  font-size: 3.5rem;
  color: var(--blue);
  border-radius: .5rem;
  padding: .2rem 1rem;
}

.heading span.space {
  background: none;
}

.headingh2 {
  font-size: 3.5rem;
  color: var(--blue);
  border-radius: .5rem;
  padding: .2rem 1rem;
  text-align: center;
  padding: 2.5rem 0
}

.headingh-package-title {
  font-size: 4.5rem;
  color: var(--blue);
  border-radius: .5rem;
  padding: .2rem 1rem;
  text-align: center;
  padding: 2.5rem 0
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--blue);
  color: white;
  padding: .8rem 3rem;
  border: .2rem solid var(--blue);
  cursor: pointer;
  font-size: 1.7rem;
}

.btn:hover {
  background: var(--btn_hover_color);
  /* color:var(--orange); */
}

.box {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.box:hover {
  transform: scale(1.01); /* Optional: adds a subtle zoom effect */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--blue);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9%;
  height: 6rem;
}

header .logo2 {
  margin-top: 34px;
  height: 70px;
  border-radius: 50%;
}

header .logoImage {
  height: 28px;
}

header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: white;
  margin-right: 2rem;
  text-transform: uppercase;
  font-family: none;
}

header .logo span {
  color: #333;
}

header .navbar a {
  color: white;
  font-size: 2rem;
  margin: 0 .8rem;
  padding: .8rem;
}

header .navbar a:hover {
  color: #ffb421;
}

header .icons i {
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  margin-right: 2rem;
}

header .icons i:hover {
  color: var(--orange);
}

#menu-bar {
  color: #fff;
  border: .1rem solid #fff;
  border-radius: .5rem;
  font-size: 3rem;
  padding: .5rem 1.2rem;
  cursor: pointer;
  display: none;
}

.home {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 0;
}

.home .content {
  text-align: center;
}

.home .content h3 {
  font-size: 4.5rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 .3rem .5rem rgba(0, 0, 0, .1);
}

.home .content p {
  font-size: 2.5rem;
  color: #fff;
  padding: .5rem 0;
}

.home .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 75vh;
  /* Covers half of the screen */
  width: 100%;
  object-fit: cover;
}
.home .video-container img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 75vh;
  width: 100%;
  object-fit: cover;
}

.home .logo2 {
  height: 130px;
  transform: scale(1.5);
}

.book .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.book .row .image {
  flex: 1 1 40rem;
}

.book .row .image img {
  width: 100%;
}

.book .row form {
  flex: 1 1 40rem;
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
  border-radius: .5rem;
}

.book .row form .inputBox {
  padding: .5rem 0;
}

.book .row form .inputBox input {
  width: 100%;
  padding: 1rem;
  border: .1rem solid rgba(0, 0, 0, .1);
  font-size: 1.7rem;
  color: #333;
  text-transform: none;
}

.input-height {
  width: 275px !important;
}

.book .row form .inputBox h3 {
  font-size: 2rem;
  padding: 1rem 0;
  color: #666;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 8px;
}

.package-meta i {
    /* color: #e5e7eb;   Icon color */
    margin-right: 4px;
}

.packages .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.packages .box-container .box {
  flex: 1 1 30rem;
  border-radius: .9rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
}

.packages .box-container .box img {
  height: 25rem;
  width: 100%;
  object-fit: cover;
}

.packages .box-container .box .content {
  padding: 1rem;
  margin-left: 1rem;
}

.packages .box-container .box .content h3 {
  font-size: 1.75rem;
  color: #2C5F2D;
}

.packages .box-container .box .content h3 i {
  color: var(--blue);
}

.packages .box-container .box .content p {
  font-size: 1.7rem;
  color: #666;
  padding: 1rem 0;
}

.packages .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: var(--blue);
}

.packages .box-container .box .content .price {
  font-size: 2rem;
  color: #2C5F2D;
  padding-top: 1rem;
}

.packages .box-container .box .content .price span {
  color: #888888;
  font-size: 1.5rem;
  text-decoration: line-through;
}

.services .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services .box-container .box {
  flex: 1 1 30rem;
  border-radius: .5rem;
  padding: 1rem;
  text-align: center;
}

.services .box-container .box i {
  padding: 1rem;
  font-size: 5rem;
  color: var(--blue);
}

.services .box-container .box h3 {
  font-size: 2.5rem;
  color: #333;
}

.services .box-container .box p {
  font-size: 1.5rem;
  color: #666;
  padding: 1rem 0;
}

.services .box-container .box:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
}

.about .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.about .row .image {
  flex: 1 1 32rem;
}

.about .row .image img {
  width: 100%;
}

.about .row .about {
  flex: 1 1 50rem;
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
  border-radius: .5rem;
  font-size: 1.5rem;
}


.footer {
  background: var(--blue);
}

.footer .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .box-container .box {
  padding: 1rem 0;
  flex: 1 1 25rem;
}

.footer #email {
  text-transform: lowercase !important;
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  padding: .7rem 0;
  color: #fff;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  padding: .7rem 0;
  color: #eee;
}

.footer .box-container .box a {
  display: block;
  font-size: 1.5rem;
  padding: .7rem 0;
  color: #eee;
}

.footer .box-container .box a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.footer .credit {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  border-top: .1rem solid rgba(255, 255, 255, .2);
}

.footer .credit span {
  color: var(--orange);
}

.inclusions {
  margin-top: 20px;
}

.inclusions h5 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.inclusions a {
  color: #1ea4af;
}

.pkg-incusion {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.pkg-incusion li {
  color: #666;
  padding: 0 0 0 15px;
  margin: 0 0 10px 0;
  list-style-type: none;
  display: block;
  position: relative;
  background-image: url(images/arrow-orng.png);
  background-repeat: no-repeat;
  background-position: left 6px;
  font-size: 15px;
}

.pkg-incusion li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #fc5b62;
}

.whatsapp {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  position: fixed;
  bottom: 20px;
  right: 30px;
  line-height: 40px;
  cursor: pointer;
  display: block;
  z-index: 2;
}

/* WhatsApp Popup */
.whatsapp-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background: #25d366;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: none; /* Initially hidden */
  animation: fadeIn 0.5s ease-in-out;
}

.whatsapp-popup p {
  margin: 0;
  font-size: 18px;
}

.whatsapp-btn {
  display: block;
  background: white;
  color: #25d366;
  text-align: center;
  padding: 10px;
  margin-top: 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.whatsapp-btn:hover {
  background: #f1f1f1;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}
.mobile-bottom-buttons {
  display: none; /* Hidden by default */
}

.destination-tab {
  text-align: center;
  margin-bottom: 30px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.tab-btn {
  padding: 10px 40px;
  border: 1px solid var(--blue);
  border-radius: 30px;
  background-color: transparent;
  color: var(--blue);
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.7rem;
}

.tab-btn:hover {
  background-color: var(--btn_hover_color);
  color: var(--white);
}

.tab-btn.active {
  background-color: var(--blue);
  color: var(--white);
}

.duration-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

.duration-dropdown select.custom-select {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: var(--white);
  color: var(--blue);
  font-size: 16px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%232C5F2D" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  min-width: 120px;
}

.duration-dropdown select.custom-select:focus {
  border-color: var(--blue);
}



/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}


/* start - media queries  */

@media (max-width:1200px) {

  html {
    font-size: 55%;
  }

}

@media (max-width:991px) {

  header {
    padding: 2rem;
  }

  section {
    padding: 2rem;
  }

}

@media (max-width:768px) {

  #menu-bar {
    display: unset;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #334866;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    padding: 1rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  header .navbar a {
    display: block;
    border-radius: .5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: #1d3456;
  }
   /* Bottom Button */
  .mobile-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
   }

   .mobile-bottom-buttons .btn {
    flex: 1;
    padding: 15px;
    font-size: 1.7rem;
    text-align: center;
    color: #fff;
    text-decoration: none;
  }

  .itinerary-btn {
    background-color: #FFA500;
    color: #ffffff;
    border-right: 1px solid #ccc;
 }

.booknow-btn {
    background-color: #004AAD;
    color: #ffffff;
 }

.mobile-bottom-buttons .btn i {
    margin-right: 8px;
 }
 .itinerary-book-now {
  display: none;
 }

 .mobile-bottom-buttons .itinerary-btn:hover {
  background-color: #FF8C00; /* Darker orange */
}

.mobile-bottom-buttons .booknow-btn:hover {
  background-color: #003380; /* Deeper royal blue */
}
 .whatsapp-package {
  bottom: 60px !important;
 }

 

}

@media (max-width:450px) {

  html {
    font-size: 50%;
  }

  .heading span {
    font-size: 2.5rem;
  }

  .contact .row form .inputBox input {
    width: 100%;
  }


}