    *{
        margin: 0;
        padding: 0;
    }
    body {
      background-color: #f3ede5;
      color: #222;
    }
    h1, h2, h3, h4{
      font-size: 25px;
      font-weight: 700;
    }
    /* ===== NAVBAR ===== */
    header {
      background-color: #c38532;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 30px;
      height: 60px;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    header .logo img {
      height: 35px;
    }

    nav a {
      text-decoration: none;
      color: #222;
      margin: 0 10px;
      font-weight: 500;
    }

    .login-btn {
      background-color: transparent;
      padding: 6px 15px;
      border: 2px solid #000;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      color: #000;
    }

    /* ===== SIDEBAR ===== */
    .sidebar {
      width: 300px;
      background-color: #f1e8d8;
      padding: 20px 15px;
      border-right: 1px solid #ddd;
      position: fixed;
      top: 100px; /* below navbar */
      left: 0;
      bottom: 0;
      overflow-y: auto;
    }

    .sidebar input {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 5px;
      margin-bottom: 20px;
      outline: none;
    }

    .sidebar button {
      padding: 10px;
      border: none;
      border-radius: 5px;
      margin-bottom: 10px;
      font-weight: bold;
      cursor: pointer;
      background-color: #111;
      color: #fff;
    }

    .sidebar ul {
      list-style: none;
      margin-top: 20px;
      padding-left: 0px;
    }

    .sidebar ul li {
      margin: 15px 0;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .sidebar ul li:hover {
      color: #c38532;
    }
.menu-horizontal {
    position: fixed;
    z-index: 999;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 15px;
  padding: 10px;
  padding-top: 80px;
  background-color: #000;
}
.meet{
    width: 20px;
}
.menu-horizontal a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

/* Hide scrollbar (optional) */
.menu-horizontal::-webkit-scrollbar {
  height: 4px;
}
.menu-horizontal::-webkit-scrollbar-thumb {
  background: #ff5f6d;
}
    /* ===== MAIN CONTENT ===== */
    .content {
      margin-left: 230px;
      padding-top: 120px;
    }

    .welcome-banner {
      background-color: #d19e4c;
      color: #3b2c09;
      padding: 10px;
      border-radius: 6px;
      margin-bottom: 20px;
      font-weight: bold;
    }

    /* ===== SLIDER ===== */
    .slider-container {
      overflow: hidden;
      width: 100%;
      position: relative;
      margin-bottom: 25px;
    }

    .slider-track {
      display: flex;
      transition: transform 0.6s ease;
    }

    .slide {
      min-width: 50%; /* 2 slides visible on desktop */
      height: 150px;
      border-radius: 10px;
      margin-right: 15px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
    }

    .slide1 {
      background-image: url('img/banner1.jpg');
    }

    .slide2 {
      background-image: url('img/banner2.jpg');
    }

    .slide3 {
      background-image: url('img/banner3.jpg');
    }
    .trip{
      font-size: 20px;
      font-weight: 700;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 10px;
    }

    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* Tablet (optional: 4 images) */
    @media (max-width: 992px) {
      .gallery {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* Mobile - 3 images visible + horizontal scroll */
    @media (max-width: 476px) {
      .gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
      }

      .gallery img {
        width: 30%;
        height: auto;
      }

      /* Optional: hide scrollbar for cleaner look */
      .gallery::-webkit-scrollbar {
        display: none;
      }
    }
         /* faq */
.faq-section {
    width: 100%;
    padding: 40px;
    background: transparent;
    box-sizing: border-box;
  }

  .faq-section h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #000;
  }

  .faq-item {
    background: transparent;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    border: 2px solid #c38532;
    background: #c38532;
    color: #000;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #000;
  }

/* footer */
.footer li, p{
  list-style: none;
  font-weight: 600;
}
.footer ul{
  padding: 0px;
}
/* footer */

         /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    /* bottom: 20px; */
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/ 

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        border-right: none;
      }
      .content {
        margin-left: 0;
        padding-top: 120px;
      }
    }
 @media only screen and (max-width: 476px){
    nav{
        display: none;
    }
    .sidebar{
        display: none;
    }
    .content {
        padding: 0px;
        padding-top: 120px;
    }
    .slide{
        width: 100%;
    }
    p{
      text-align: justify;
    }
    .faq-section{
      padding: 10px;
    }
 }