:root {
  --background: #ffffff;
  --foreground: #171717;
  --gradient-silver: linear-gradient(to right, #ddd, #f4f4f4);
}



body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  /* or ~24px */
  color: #4A4A4A;
  /* Neutral Gray - easy on the eyes */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  /* tighter for elegance */
  color: #1A1A1A;
  /* Navy Slate - elegant and readable */
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  font-family: 'Lato', sans-serif;
  z-index: 999;
  top: 0;
  position: sticky;
}

.logo {
}

.logo img {
  width: 200px;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.contact-info a {
  text-decoration: none;
  color: #007B9E;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #005f73;
}

.banner-section {
  overflow: hidden;
  max-height: 550px;
  position: relative;
}

.messagebox {
  padding: 30px 0;
}

/* Navigation start Here*/


.custom-vertical-nav {
  width: 100%;
  border-radius: 8px;
  position: sticky;
  top: 90px;
}

.custom-cta {
  width: 100%;
  border-radius: 8px;
  position: sticky;
  top: 90px;
}

.custom-vertical-nav .nav-link {
  color: #333;
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: background-color 0.2s, color 0.2s;
  font-weight: 500;
}

.custom-vertical-nav .nav-link:hover {
  background-color: #e9ecef;
  color: #007B9E;
  /* travel theme blue */
}

.custom-vertical-nav .nav-link.active {
  background-color: #007B9E;
  color: #fff;
}

.cta-box.whatsapp-btn {
  display: block;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: fit-content;
  margin: 10px auto;
  transition: background 0.3s ease;
}

.cta-box.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.cta-box.whatsapp-btn svg {
  flex-shrink: 0;
}

.mobile-menu-container {
  position: relative;
  display: none;
}

.mob-menu {
    position: fixed;
    top: 73px;
    z-index: 9;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.mob-menu .nav-link {
  display: block;
  padding: 10px 20px;
  box-sizing: border-box;
}


/* Container */
.container {
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

[class*="col-"] {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

/* Padding */
.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

/* Margin */
.m-0 {
  margin: 0 !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Typography */
.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-muted {
  color: #6c757d !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fs-1 {
  font-size: 2rem !important;
}

.fs-2 {
  font-size: 1.5rem !important;
}

.fs-3 {
  font-size: 1.25rem !important;
}

/* Image */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-circle {
  border-radius: 50%;
}

/* Utility */
.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.justify-center {
  justify-content: center !important;
}

.align-center {
  align-items: center !important;
}


.hero-content {
  max-width: 850px;
  padding: 1.5rem;
  padding-left: 100px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  color: #fff;
  margin: 0;
}

.cta-box {
  display: block;
  align-items: center;
  justify-content: center;
  background-color: #007B9E;
  /* travel theme blue */
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
  margin-bottom: 30px;
}

.cta-box:hover {
  background-color: #005f73;
  /* darker blue on hover */
  transform: translateY(-2px);
}

.cta-box svg {
  height: 40px;
  width: 40px;
  margin: auto;
  display: block;
}



@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

a {
  text-decoration: none;
  color: #333;
}



.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


a .ph-text {
  font-size: 19px;
  text-decoration: none;
  font-weight: 700;
}

.banner {
  min-height: 300px;
  display: flex;
  align-items: center;
}

.banner-conatiner {
  overflow: hidden;
  /* ✅ Prevent children from overflowing */
  position: relative;
  width: 100%;
}

@keyframes slow-zoom-out {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.banner {
  min-height: 550px;
  display: flex;
  align-items: center;
  animation-name: slow-zoom-out;
  animation-duration: 5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}

.hero-slide {
  position: absolute;
  bottom: 50px;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  /* Optional dark overlay */
  z-index: -1;
}

.banner {
  transform-origin: center;
}

.main-grid {
  display: grid;
  grid-template-columns: 20% calc(70% - 40px) 10%;
  gap: 20px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}


/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.nav-pills .nav-link {
  text-align: justify;
  color: #7E1B1B;
  font-weight: 500;
  border-bottom: 1px solid #e1e1e1;
}

.nav-pills .nav-link:hover {
  background-color: #00acc1;
  color: #fff;
}


.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #00acc1 !important;
}

.medium-font {
  font-size: 18px;
}

.sub-heading {
  display: inline;
  color: #7E1B1B;
  font-size: 22px;
  font-weight: 500;
}

.heading {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
}

/* Container for the grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Equal width columns on small screens and up */
.col-sm-6 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

/* Responsive: 2 columns from 576px+ */
@media (min-width: 576px) {
  .col-sm-6 {
    width: 50%;
  }
}


.highlight {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: center;
  column-gap: 2rem;
  padding: 2rem 7.5%;
  margin-bottom: 1rem;
  background-color: #e1e1e1;
  border-radius: 8px;
}

.title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  padding-right: 30px;
  border-right: 1px solid #aaa;
  padding-top: 20px;
  padding-bottom: 20px;
}


.description {
  font-size: 18px;
}

/*itinerary*/

.trip-itinerary h5 {
  font-size: 20px;
  padding: 0;
  margin: 15px 0;
  font-family: 'Lato';
}

.why-with-us ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.why-with-us ol li {
  position: relative;
  padding-left: 3rem;
  border-radius: 6px;
  padding: 1rem 1rem 1rem 3.5rem;
}

.why-with-us ol li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 1rem;
  top: 20px;
  width: 2rem;
  height: 2rem;
  background-color: #ccc;
  /* grey number box */
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  /* square with slightly rounded corners */
}


.customer-review-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 3 columns */
  gap: 1.5rem;
  padding: 2rem 0;
}

.review {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.review:hover {
  transform: translateY(-5px);
}

.stars {
  color: #ffc107;
  /* golden star */
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #333;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.question {
  background-color: #f2f2f2;
  padding: 70px 0;
}

.question-text {
  font-size: 2.2rem;
  text-align: center;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.q-description {
  width: 33%;
  text-align: center;
  font-size: 18px;
  margin: auto;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  /* Primary blue */
  color: #ffffff;
  /* White text */
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.25);
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.25);
}

.qcta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.footer-links {
  background-color: #21272b;
  padding: 80px 0;
  color: #ffffff;
}


.social-links {
  display: flex;
  justify-content: center;
  /* horizontal centering */
  align-items: center;
  /* vertical centering (optional) */
  gap: 1rem;
  /* space between icons */
  margin: 2rem 0;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}


.footer-last {
  display: grid;
  grid-template-columns: repeat(2, auto);
  /* 2 columns */
  gap: 0.75rem 2rem;
  /* row and column gaps */
  justify-content: center;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.footer-last .phone {
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff
}

.footer-last .location {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}

.footer-address {
  width: 30%;
  text-align: center;
  margin: auto;
  margin-bottom: 2rem;
}

.footer-copyright {
  text-align: center;
}


/*modal start here*/

/* Modal Background */
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show state */
.modal.show {
  visibility: visible;
  opacity: 1;
}

/* Modal Box */
.modal-content {
  box-sizing: border-box;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  margin: 5% auto;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Animate in modal box */
.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}

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


.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
}

.form-container .full-width {
  grid-column: span 2;
}


label {
  display: block;
  margin-bottom: 6px;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: all 0.2s ease;
  outline: none;
  /* prevent default blue outline */
}

textarea {
  resize: vertical;
  height: 80px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #38bdf8;
  /* Tailwind Sky-400 */
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3);
}


button {
  width: 100%;
  background: #0d6efd;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;

}

button:hover {
  background: #0b5ed7;
}

.enq-title {
  margin: 0;
  font-size: 20px;
  font-weight: normal;
  padding: 0;
  margin-bottom: 10px;
  color: #7E1B1B;
  margin-top: -10px;
}

.d-flex {
  display: flex;
  justify-content: space-between;
}

/* Multi slect*/

.multi-select {
  position: relative;
  width: 100%;
}

.selected-options {
  border: 1px solid #ccc;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 6px;
  background: #fff;

}

.multi-select ul {
  padding: 0;
  margin: 0;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  border: 1px solid #ccc;
  border-top: none;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1;
}

.dropdown li {
  list-style: none;
  padding: 8px;
  cursor: pointer;
}

.dropdown li:hover {
  background-color: #f0f0f0;
}

.dropdown li.selected {
  background-color: #cce5ff;
}

.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.selected-items span {
  background: #007bff;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.error-border {
  border: 1px solid #ff5252 !important;
}

  .mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: #fff;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

.footer-btn {
  flex: 1;
  text-align: center;
  padding: 10px 0 8px;
  text-decoration: none;
  font-size: 12px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-btn svg {
  margin-bottom: 4px;
}

.footer-btn.whatsapp {
  background-color: #25D366;
  color: white;
}

.footer-btn.whatsapp svg {
  fill: white;
}

.trip-author-name {
  display: flex;
  justify-content: flex-end;
  color: #0056b3;
}


@media (max-width: 576px) {

  .modal-content {
    box-sizing: border-box;
    padding: 12px 30px;
    width: 90%;
    margin: 0% auto;
    border-radius: 0px;
  }

  .modal-content {
    width: 100%;
   }

   .mobile-footer {
    display: flex;
   }

   .mobile-menu-container.visible {
    display: block;
   }

  .menu-icon {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .form-container  {
    display: block;
  }

  .mob-cta {
    display: none;
  }

  .custom-vertical-nav {
    display: none;
  }

  .main-grid {
    padding-top: 0px;
  }

  .footer-last {
    grid-template-columns: repeat(1, auto);
  }

  .footer-address {
    width: 80%;
  }

  .q-description {
    width: 80%;
  }

  .banner-section {
    max-height: 280px;
  }

  .banner {
    min-height: 311px;
  }

  .hero-content {
    padding-left: 40px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .menu-icon span {
    height: 4px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Animate to "X" on open */
  .menu-icon.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-icon.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-icon.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .contact-info {
    display: none;
  }

  .customer-review-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .highlight {
    grid-template-columns: auto;
  }

  .title {
    border-right: none;
    border-bottom: 1px solid #aaa;
  }


  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 10px;
  }


  .form-container {
    grid-template-columns: 1fr 1fr;
  }

  .form-container .full-width {
    grid-column: span 2;
  }
}