    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #e9e9e9;
    }

    header {
      background-color: black;
      color: white;
      padding: 10px 100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    .logo img {
      height:68px;
      width: 120px;
    }

    nav {
      display: flex;
      gap: 20px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size:18px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: white;
    }

    .sidebar {
      position: fixed;
      top: 0;
      left: -250px;
      height: 100%;
      width: 250px;
      background-color: #0c1f3f;
      padding-top: 60px;
      transition: 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding-left: 20px;
      z-index: 10010;
    }

    .sidebar a {
      color: white;
      text-decoration: none;
      font-size: 1.2rem;
    }

    .sidebar.open {
      left: 0;
    }

    @media (max-width: 768px) {
      header {
        padding: 15px 20px;
      }

      nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .carousel-item img {
        height: 60vh;
      }

      .carousel-caption {
        font-size: 1rem;
        bottom: 15%;
        padding: 0 10px;
        text-align: center;
      }

      .section {
        padding: 40px 15px;
      }

      .section h2 {
        font-size: 1.4rem;
        text-align: center;
      }

      .sidebar {
        width: 220px;
        padding-top: 70px;
      }

      .sidebar a {
        font-size: 1rem;
      }
    }
/* Carousel Styling */
.carousel-inner {
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  margin-top: 70px;
}

.carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;
}

.carousel-image,
.carousel-video {
  width: 100%;
  height: 90%;
  object-fit: cover;
  display: block;
}

/* Caption Styling */
.carousel-caption {
  bottom: 20%;
  left: 5%;
  right: 5%;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

/* Controls Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 15px;
  background-size: 100% 100%;
}

/* Mobile View Styling */
@media (max-width: 768px) {
  .carousel-inner {
    height: 70vh;
    margin-top: 100px;
  }

  .carousel-item {
    height: 70vh;
  }

  .carousel-image {
    height: 100%;
    object-fit: cover;
  }
  .carousel-video {
    height: 60vh;
    object-fit: cover;
  }
  .carousel-caption {
    bottom: 10%;
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 15px;
    border-radius: 8px;
    max-width: 90%;
    margin: 0 auto;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 10px;
  }
}



    /* about section  */
        .about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      padding: 30px 20px;
      max-width: 1300px;
      margin: auto;
      overflow: hidden;
    }

    
.section-heading {
  font-size: 32px;
  font-weight: 700;
  color:#F6B73C;
    font-family: 'Georgia', serif;

  text-align: center;
  margin-top:-2%;

}


    .about-img, .about-content {
      flex: 1;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }
 .about-img img {
  width: 100%;
  max-width: 600px;
  height: 440px !important; /* Increased height */
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

    .about-content h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }
    .about-content p {
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .about-content a.button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #D28D1D;
      color: #fff;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
    }
    .about-content a.button:hover {
      background-color: #D28D1D;
    }
    .show {
      opacity: 1;
      transform: translateY(0);
    }
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 20px;
  }

  .section-heading {
    font-size: 28px;
      font-family: 'Georgia', serif;

    margin-top: 0;
  }

  .about-img img {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-content a.button {
    padding: 10px 16px;
    font-size: 15px;
  }
}

    /* about section  */
    /* img section  */
  /* img section */
  .section {
    text-align: center;
    padding: 40px 20px;
  }

  .section small {
    display: block;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 auto;
  }

  .section h2 {
    font-size: 36px;
    margin: 10px 0 40px;
      font-family: 'Georgia', serif;

    font-weight: 700;
    color: #F6B73C;
  }

  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .card {
    background: #fff;
    border: 1px solid #ddd;
    padding-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
  }

  .card:nth-child(1) {
    animation-delay: 0.3s;
  }

  .card:nth-child(2) {
    animation-delay: 0.6s;
  }

  .card:nth-child(3) {
    animation-delay: 0.9s;
  }

  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .image-wrapper {
    position: relative;
  }

  .card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }

  .price-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 20px;
    color: #F6B73C;
    margin-top: 0;
  }

  .price-tag span {
    font-size: 10px;
    background: #eee;
    padding: 2px 4px;
    margin-left: 5px;
    text-transform: uppercase;
  }

  .card h3 {
    font-size: 22px;
    margin: 15px 0 5px;
    font-weight: 800;
  }

  .card p {
    margin: 4px 0;
    font-size: 18px;
    color: #333;
    font-weight: 400;
  }

  .enquiry {
    display: block;
    padding: 4px;
    margin: 10px 20px 0;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    background: #ddd;
    border: none;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .section {
      padding: 10px 1px;
    }

    .section h2 {
      font-size: 28px;
        font-family: 'Georgia', serif;

      margin-bottom: 30px;
    }

    .card-container {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 10px;
    }

    .card img {
      height: 200px;
    }

    .card h3 {
      font-size: 16px;
    }

    .card p {
      font-size: 13px;
    }

    .price-tag {
      font-size: 18px;
    }

    .enquiry {
      font-size: 14px;
      padding: 8px;
      margin: 10px auto 0;
      width: 80%;
    }
  }


    /* img section  */

/* feedback */
.feedback-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 30px;
  text-align: center;
}

.highlight-text {
  color: #333;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.feedback-heading {
  font-size: 36px;
  font-weight: bold;
  color: #F6B73C;
}

.feedback-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.slider-container {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 25px;
  max-width: 1000px; /* adjust width to fit 3 cards nicely */
  width: 100%;
}

.review-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.08);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgb(0 0 0 / 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff6f61;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
}

.reviewer-name {
  font-weight: 700;
  font-size: 18px;
  color: #222;
}

.review-stars {
  font-size: 16px;
  color: #f4b400;
  font-weight: 700;
  margin-top: 3px;
}

.review-text {
  font-style: italic;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .slider-track {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 780px) {
  .slider-track {
    grid-template-columns: 1fr; /* 1 per row */
  }
}

@media (max-width: 480px) {
  .feedback-heading {
    font-size: 28px;
  }

  .highlight-text {
    font-size: 16px;
  }

  .feedback-subtext {
    font-size: 14px;
  }
}


    /* feedback  */

/* Gallery container layout */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 50px;
}

/* Gallery card styles */
.gallery-card {
  width: 300px;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f8f8f8;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
}

/* Common style for both images and videos */
.media-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}



/* Gallery heading (optional if used) */
.gallery-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #F6B73C;
  font-family: 'Roboto', sans-serif;
}

.gallery-link {
  text-decoration: none;
}

@media (max-width: 767px) {
  .gallery-container {
    padding: 0 20px;
    gap: 15px;
  }

  .gallery-card {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .media-preview {
    height: 100%;
    object-fit: cover;
  }

  .gallery-heading {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

/**/

    /* tour  */
  .tour-wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 50px;
  }

  .tour-heading {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #F6B73C;
    text-align: center;
    font-family: 'Georgia', serif;
  }

  .tour-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center; /* centers the cards */
  }

  .tour-card {
    width: 300px; /* fixed width for all cards */
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .tour-image-wrapper {
    position: relative;
  }

  .tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .tour-duration {
    position: absolute;
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 4px;
    bottom: 8px;
    left: 8px;
    font-weight: 600;
  }

  .tour-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
  }

  .tour-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .tour-route {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .tour-price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }

  .tour-old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 14px;
  }

  .tour-discount {
    background: #d4edda;
    color: #218838;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
  }

  .tour-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .tour-per-person {
    font-size: 14px;
    color: #555;
  }

  .tour-rating {
    font-size: 14px;
    color: #f39c12;
    font-weight: 600;
  }

  .tour-buttons {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-direction: column;
  }

  .tour-offer-btn,
  .tour-detail-btn {
    text-align: center;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
  }

  .tour-offer-btn {
    background-color: #ff4d6d;
    color: #fff;
  }

  .tour-detail-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
  }

  @media (max-width: 768px) {
    .tour-wrapper {
      padding: 20px 1px;
    }

    .tour-card {
      width: 100%; /* full width on mobile */
      max-width: 300px;
    }

    .tour-card img {
      height: 160px;
    }

    .tour-title {
      font-size: 15px;
    }

    .tour-route,
    .tour-per-person,
    .tour-old-price,
    .tour-discount,
    .tour-rating {
      font-size: 13px;
    }

    .tour-price {
      font-size: 18px;
    }

    .tour-offer-btn,
    .tour-detail-btn {
      font-size: 13px;
      padding: 6px 12px;
      width: 100%;
    }
  }
/*  */

* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.modal {
  display: flex;
  justify-content: center;  /* 👉 Horizontal center */
  align-items: center;      /* 👉 Vertical center */
  position: fixed;
  z-index: 9999;
  top: 0;
  margin-left:500px;
  width: 40vw;
  height: 100vh;

}


.modal-content {
  background: white;
  border-radius: 8px;
  padding: 20px;
  width: 500px; /* 👈 FIXED width */
  max-width: 40vw;
  
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.row {
  display: flex;
  gap: 10px;
}

.row input,
.date-wrapper {
  flex: 1;
}

.date-wrapper {
  position: relative;
}

.date-wrapper input[type="date"] {
  padding-right: 35px;
}

.date-wrapper::after {
  content: "📅";
  position: absolute;
  right: 10px;
  top: 9px;
  pointer-events: none;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 60px;
}

.mb {
  margin-bottom: 16px;
}

.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.submit-btn {
  background-color: #00BCD4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
}

.close-btn {
  background-color: #f3e0c2;
  color: #333;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.submit-btn:hover {
  background-color: #0097a7;
}

.close-btn:hover {
  background-color: #e8c58a;
}

    /* footer */
.footer {
background: linear-gradient(135deg, #2f2f2f, #4a4a4a);

  color: #fff;
  font-family: 'Roboto', sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.map-container {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;  /* square */
  overflow: hidden;
  border-radius: 4px; /* optional */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-section h3 {
  color: #facc15;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
  color: #f1f1f1;
  font-size: 18px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
 
}

.footer-logo:hover {
  transform: scale(1.05);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);


  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  padding: 20px 100px;
}
.copy{
    margin-bottom:0px !important;
    font-size:16px;
    font-weight:500;
}
.connect-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  color: #facc15;
  font-size: 14px;
  flex-wrap: wrap;
}

.connect-with-us {
  font-weight: 600;
}

.socials a {
  color: #facc15;
  font-size: 18px;
  margin-left: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.socials a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    font-size: 14px;
  }
  .connect-info {
    gap: 12px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;

  }

  .footer-section {
    width: 100%;

  }

  .footer-section h3 {
    font-size: 20px;
  }

  .footer-logo {
    width: 120px;
    margin-bottom: 15px;  /* Reduced margin from 20px to 15px */
  }
}

