@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

@font-face {
  font-family: 'Rockybilly';
  /* A name you choose */
  src: url('../fonts/Rockybilly.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
/* h1,h2,h3,h4,h5,h6{font-family: var(--font-family-heading)} */
@import url('https://fonts.googleapis.com/css2?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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
  --forest: #0B6B35;
  --leaf: #28A745;
  --accent: #FF9A3C;
  --navy: #0B1B34;
  --bg: #F7FBF7;
  --radius: 10px;
  --max-width: 1200px;
  --font-family-heading: "Ubuntu", sans-serif;
  --btn-color:#f1a708;
  --hightlght:#fffaf0;
  
}

* {
  box-sizing: border-box
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: var(--navy);
  background: var(--bg);
  -webkit-font-smoothing: antialiased
}

a {
  color: inherit;
  text-decoration: none
}

.main-wrapper {
  margin-top: 2rem;
  margin-bottom: 2rem
}
 .highlights-section {
      background-color: var(--hightlght);
      border: 1px solid var(--btn-color);
      border-radius: 8px;
      padding: 14px 10px;
    }

    .highlight-item {
      text-align: center;
      color: #333;
width:100%;
    }

    .highlight-item .material-icons {
      font-size: 32px;
      color: #333;

    }
 .highlight-text {
      font-size: 15px;
    }
/* Header */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 4px 12px rgba(11, 27, 52, 0.06)
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center
}

.logo {
  width: 44px;
  height: 44px;
  margin-right: 10px;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center
}

.hamburger {
  display: none
}

@media (min-width: 1200px) {

  .h1,
  h1 {
    font-size: 2.1rem;
  }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 100px;
  align-items: center;
  padding: 48px 0;
  color: #fff
}

.hero-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  margin: 0 0 12px
}

.hero-left p {
  margin: 0 0 18px;
  line-height: 1.5
}

.hero-cta {
  display: flex;
  gap: 12px
}

.card-book {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 27, 52, 0.06)
}

.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e6efe6;
  margin-bottom: 8px
}

.cta-book {
  background: var(--leaf);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  font-weight: 600
}
.cta-book:hover{background: var(--leaf)!important;}
/* Features */
.features {
  display: flex;
  gap: 12px;
  margin: 28px 0
}

.feat {
  background: #fff;
  color: #000;
  padding: 14px 16px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 6px 18px rgba(11, 27, 52, 0.04);
  display: flex;
  gap: 12px;
  align-items: center;
  width:180px;
      height: 80px;
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--leaf), var(--forest));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

/* Sections */
section {
  padding: 36px 0
}
.read-more {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* show only 3 lines */
    -webkit-box-orient: vertical;
    margin-bottom: 0;
  }

  .read-more.expanded {
    -webkit-line-clamp: unset;
  }

  .read-more-btn {
border: none;
    background: none;
    color: #007bff;
    padding: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
  }

  .read-more-btn:hover {
    text-decoration: underline;
  }
h2 {
  font-family: var(--font-family-heading);
  font-weight: bold;
  font-size: 1.8rem;
  color: #0c381f;
  /* Forest Green */
  margin: 0 0 16px
}

p.lead {
  color: #000
}

.hero-left p.lead {
  color: #fff
}

@media (min-width: 1200px) {

  .h3,
  h3 {
    font-size: 1.55rem;
  }
}

/* Cards grid */
.grid {
  display: grid;
  gap: 18px
}

.rooms-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
}

/* .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 12px 30px rgba(11, 27, 52, 0.06)
} */

.card img {
  width: 100%;
  object-fit: cover
}

.card-body {
  padding: 14px
}

.price {
  font-weight: 700;
  color: var(--forest)
}

/* Packages */
.packages-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
}

.pkg-list {
  padding: 1.2rem;
  background-color: #f8ffd5;
}

.pkg-list h5 {
  margin-bottom: 1rem;
  color: #0c381f;
  font-size: 1rem;
    font-weight: 600;
}

.pkg-list p {
  height: 60px;
}

.pkg-price {
  font-size: 20px;
  font-weight: 600;
  color: #0c381f;
}

/* Gallery */
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gallery-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px
}

/* Testimonials */
.testi {
  background: #fff;
  padding: 16px;
  border-radius: 12px
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #72846e;
  --bs-table-border-color: #72846e;
}

/* Contact */
.contact-grid {
  grid-template-columns: 1fr 380px
}

.map {
  border-radius: 12px;
  overflow: hidden
}

footer h2 {
  color: #fff
}

footer {
  padding: 5px 0;
  color: #e4ede6;
  background-color: #363f3a;
}


.safari-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  animation: scrollLeft 30s linear infinite;
}

.safari-slider::-webkit-scrollbar {
  display: none;
}


    #contact .form-control,
    #contact .form-control:focus {
      border-radius: 0.5rem;
    }

    #contact contact.html .btn-submit {
      background: var(--accent);
      color: #fff;
      border-radius: 0.5rem;
      transition: all 0.3s;
    }

    #contact contact.html .btn-submit:hover {
      background: #094c37;
      color: #fff
    }

    #contact .contact-info i {
      color: var(--accent);
      margin-right: 8px;
    }

    #contact .map-container iframe {
      width: 100%;
      height: 350px;
      border: 0;
      border-radius: 10px;
    }
     #contact .btn-submit {
      background-color: #007bff;
      color: #fff;
      border: none;
      transition: 0.3s;
    }
    #contact .btn-submit:hover {
      background-color: #0056b3;
    }
    #statusMsg {
      text-align: center;
      font-weight: 600;
      margin-top: 10px;
    }
  

     

      .safari-step {
        display: flex;
        align-items: flex-start;
        margin-bottom: 5px;
        gap: 20px;
      }

      .safari-step img {
        width: 60px;
        height: 60px;
      }

      .safari-step p {
        margin: 0;
        font-size: 17px;
        line-height: 1.6;
      }

      .safari-step .check-icon {
        margin-bottom: 0;
      }

      @media (max-width: 576px) {
        .safari-step {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
      }
 
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.social-icons {
  display: flex;
  gap: 15px;
  /* center horizontally */

}

.social-icons a {
  text-decoration: none;
  color: #fff;
  /* icon color */
  background: #3d453b;
  /* circle background color */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  font-size: 18px;
}

.social-icons a:hover {
  background: #007bff;
  /* hover background */
  color: #fff;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

button:hover {
  opacity: 1;
  color: rgb(255, 255, 255);
  background: transparent;
}

/* Optional styling to mimic your look */

.navbar-brand-text small {
  color: #5b6b57;
  font-size: .8rem;
}

.btn-book {
  background: var(--btn-color);
  color: #fff;
  padding: .45rem .7rem;
  border-radius: 2px;
  text-decoration: none;

  align-self: center;
}

.form-label {
  margin-bottom: .5rem;
  color: #000;
  font-size: 0.75rem;
}

.btn-book-outline {
  align-self: center;
  padding: .4rem .6rem;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 0.742);
  transition: 0.2s linear;
}

.btn-book-outline:hover {
  align-self: center;
  padding: .2rem .7rem;
  background-color: #fff;
  color: #5b6b57;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 0.742);
}

.btn-book:hover {
  background: #475445;
  color: #fff;
}

/* default hamburger lines */
/* --- Toggle icon styles --- */
.navbar-toggler {
  border: none;
}

            .included-list {
              list-style: none;
              padding: 0;
              margin: 0;
            }

            .included-list li {
              display: flex;
              align-items: center;
              font-size: 16px;
              padding: 2px 8px;
              transition: all 0.3s ease;
            }

            .included-list li::before {
              color: #151516;
              margin-right: 10px;
              content: "\e2e6";
              display: inline;
              font-family: 'Material Symbols Outlined';
              font-weight: 300;
              font-size: 20px;

            }

            .included-list .material-symbols-outlined {
              vertical-align: top !important;
            }
        .hover-section {
   
   
    text-align: center;
    position: relative;
    display: inline-block;
  }

  .hover-title {
    background: #fff;
    color: #333;
    padding: 15px 25px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
    position: relative;
  }

  .hover-title:hover {
    background: #f1a708;
  }

  .hover-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    text-align: left;
    display: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    z-index: 10;
  }

  .hover-section:hover .hover-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
  }

  .hover-content ul {
    margin: 0;
    padding-left: 20px;
  }

  .hover-content li {
    margin-bottom: 10px;
    line-height: 1.5;
  }
.tab-content>.active {
    display: block;
    background: #ffeecb;
    padding: 50px;
    border-radius: 20px;
}
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
  }

  /* Example below section to test overlapping */
  .below-content {
    margin-top: 50px;
    background: #eee;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
  }
.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--leaf);
  --bs-btn-border-color: var(--leaf);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--leaf);
  --bs-btn-hover-border-color: var(--leaf);
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--leaf);
  --bs-btn-active-border-color: var(--leaf);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--leaf);
  --bs-btn-disabled-border-color: var(--leaf);
  border-radius: 0 !important;
  padding: 10px 20px;

}

.icon-section {
  background: #f8f9fa;
  padding: 40px 0;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  /* max-width: 1000px; */
  margin: 0 auto;
  text-align: center;
}

.icon-item {
  /* background:#fff; */
  border-radius: 12px;
  padding: 20px 10px;
  /* box-shadow:0 4px 10px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.icon-item .material-icons {
  font-size: 48px;
  color: #72846e;
  /* forest green */
  margin-bottom: 10px;
}

.icon-item p {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

/* default hamburger lines in forest green */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='forestgreen' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* when menu is open, show a forest green cross (×) */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='forestgreen' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
}


.swiper-slide {
  position: relative;
  width: 350px;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zone-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  text-align: center;
  font-size: 24px;
  font-family: var(--font-family-heading);
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  border-left: 3px solid #0d6efd;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 3px solid #0d6efd;
  border-radius: 50%;
}

.timeline-content {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.timeline-date {
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 5px;
  font-size: 26px;
}

/* Style the main nav item */
.navbar .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  /* open on hover (optional if you use JS click) */
  margin-top: 0;
  /* removes jump */

}

/* Dropdown container */
.navbar .dropdown-menu {
  background: #f8f9fa;
  border: none;
  border-radius: 0;
  padding: 0.5rem 0;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;

  min-width: 240px;
  transition: all 0.3s ease;
}

/* Individual links */
.navbar .dropdown-item {
    font-weight: 400;
    padding: 0.3rem 1rem;
    color: #333;
    transition: all 0.3s 
ease;
    position: relative;
    font-size: 0.93rem;
}

/* Hover effect */
.navbar .dropdown-item:hover {
  background: #2e8b57;
  /* Forest green background */
  color: #fff;
  /* White text */
  /* Subtle slide right */
}

/* Optional underline accent on hover */
.navbar .dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #2e8b57;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar .dropdown-item:hover::before {
  opacity: 1;
}

select,
.form-control {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}

.booking-section {
  background: #fdf4e7;
  /* soft beige background */
  background-image: url('images/bg-pattern.png');
  /* optional pattern */
  background-size: cover;
}

.booking-section .row {
  margin-top: 75px;
}

.red-underline {
  width: 80px;
  height: 3px;
  background-color: #d92332;
  /* red line below heading */
}

.about-corbett {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('./assets/img/bg.png');

}

ol {

  list-style: auto;
}

.booking-card {
  background: #fff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease;

}

.booking-card:hover {
  transform: translateY(-5px);
}

.booking-card h5 {
  font-weight: 600;
  color: #2c3e50;
}

.circle-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-top: -70px;
  /* half of height to overlap */
  margin-bottom: -75px;
  /* pull content up */
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px #f6c4c4 dashed;
  /* optional dashed ring */
}

.book-link {
  color: #0b6b35;
  font-weight: 600;
  text-decoration: none;
  /* vertical-align: middle; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.book-link span {
  transition: transform .2s;
}

.book-link:hover span {
  transform: translateX(4px);
}

footer {
  background-color: #4c5949;
  color: #fff;
  padding: 50px 20px;
  font-size: 13px;
}

footer h5 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 2px;
}

footer ul li::before {
  content: "\e5cc";
  display: inline;
  font-family: 'Material Symbols Outlined';
  color: #ccc;
  font-weight: 100;
  font-size: 20px;
  vertical-align: middle;
}

footer ul li a {
  color: #ccc;
  text-decoration: none;
}

footer ul li a:hover {
  color: #fff;
}

.app-buttons img {
  height: 40px;
  margin: 5px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.awards img {
  max-height: 70px;
  margin: 10px;
}

.corbett-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

/* .corbett-section h2 {
      font-weight: 700;
      margin-bottom: 20px;
    } */
/* .corbett-section p {
      text-align: justify;
      color: #444;
    } */
.travel-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.travel-box h5 {
  font-weight: 600;
  color: #2c3e50;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media(max-width:980px) {

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
    align-items: center;
    padding: 48px 20px;
    color: #fff;
  }

  .footer-upper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-direction: column;
  }

  .hero-cta {
    flex-direction: column
  }

  nav ul {
    display: none;
    align-items: start;
    gap: 2px;
  }

  .hamburger {
    display: block
  }

  .features {
    display: flex;
    gap: 12px;
    margin: 28px 0px;
    flex-direction: column;
  }


}


.nav-tabs {
  border-bottom: 3px solid transparent;
  justify-content: center;
  margin-bottom: 30px;
}

.nav-tabs .nav-link {
  color: #444;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  background-color: #1b8c3e;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(217, 83, 79, 0.4);
}

.nav-tabs .nav-link:hover {
  color: #1b8c3e;
}

.info-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 5px solid #1b8c3e;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-card h5 {
  color: #1b8c3e;
  font-weight: 700;
  margin-bottom: 15px;
}

.check-icon {
  font-size: 22px;
  color: #28a745;
  margin-bottom: 10px;
}

.info-card p {
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddda6;
}

.info-card p:last-child {

  border-bottom: 0px solid #dddddda6;
}

@media (max-width: 767px) {
  .nav-tabs .nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.number-box {
  display: inline-block;
  background-color: #0b6e4f;
  /* grayish blue */
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 10px 18px;
  border-radius: 8px;
}

.frh-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  padding: 30px 20px;
}
.material-symbols-outlined {vertical-align: middle; padding-right:5px}
.card-title{color:rgb(3, 54, 3)}
.frh-card:hover {
  transform: translateY(-5px);
}
   .section-title {
      color: #063c2f;
      margin-bottom: 1rem;
    }

    .cta-btn {
     background: #d78306;
     margin-top:15px;
    color: #fff;
    padding: .4rem 0.8rem;
    border-radius: 2px;
    text-decoration: none;
    }

    .frh-card img {
      width: 100%
    }
    .nav-link {
       font-size: 0.93rem;
    }
    .accordion-button:not(.collapsed) {
    color: #333333;
    background-color: var(--hightlght);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:hover {
    z-index: 2;
    color: #333333;
}
p {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 0.93rem;
}
/* a {
  color: blue;
  text-decoration: underline;
} */
.clr_orng{color:var(--btn-color)!important}


footer a {
  color: #fff;
  text-decoration: none;
}

.entry-section {
  background-color: transparent;
  /* green background */
  color: #000000;
  border: 2px dashed #1b8c3e;
  /* dashed border */
  border-radius: 10px;
  padding: 30px;
  line-height: 1.7;
}

.note p {
  background-color: #fbc5c5;
  /* green background */
  color: #000;
  border: 1px dashed #5b6b57;
  /* dashed border */
  border-radius: 10px;
  padding: 5px 20px;
  line-height: 1.7;
}

.entry-section h2 {
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.entry-section p {
  margin-bottom: 15px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .entry-section {
    padding: 20px;
  }

  .entry-section h2 {
    font-size: 1.5rem;
    text-align: center;
  }
}


                    .inquiry h1,
                    .inquiry p {
                        color: #fff
                    }

                    .inquiry-section {
                        background-color: #fff;
                        border-radius: 15px;
                        padding: 30px;
                        margin: 60px 0;
                        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                        max-width: 1200px;
                    }

                    .form-control,
                    .form-select {
                        border-radius: 8px;
                        padding: 10px 14px;
                        box-shadow: none;
                        border: 1px solid #ddd;
                    }

                    .btn-send {
                        background-color: #6bc53e;
                        color: #fff;
                        font-weight: 600;
                        border-radius: 8px;
                        padding: 10px 25px;
                        border: none;
                        transition: all 0.3s;
                    }

                    .btn-send:hover {
                        background-color: #5bab34;
                    }
                
    .tour-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      transition: all 0.3s ease;
    }
.tour-card .material-icons{vertical-align: middle;
font-size:16px;}
    .tour-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .tour-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .tour-body {
      padding: 20px;
    }

    .tour-body h5 {
      color: #000000;
      font-weight: 600;
    }

    .duration {
      font-size: 12px;
 
      margin-bottom: 7px;
    }

    .stars {
      color: #ffc107;
      font-size: 12px;
      margin-bottom: 7px;
    }

    .tour-body p {
 
      font-size: 12px;
    }

    .tour-card .features {
      display: flex;
      justify-content:start;
      align-items: center;
      gap: 20px;
      margin: 10px 0 0px 0;
      flex-wrap: nowrap;
    }

    .tour-card .feature-item {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tour-card .feature-item i {
      font-size: 20px;
      color: #ff7b00;
      transition: transform 0.3s ease;
    }

    .tour-card .feature-item span {
      position: absolute;
      bottom: 100%; /* Position above icon */
      margin-bottom: 8px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      padding: 4px 4px;
      border-radius: 4px;
      font-size: 11px;
      opacity: 0;
      visibility: hidden;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .tour-card .feature-item:hover i {
      transform: scale(1.1);
    }

    .tour-card .feature-item:hover span {
      opacity: 1;
      visibility: visible;
    }
    .price-col {
      background: #fafafa;
      border-left: 1px solid #eee;
      padding: 25px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
    }

    .discount-badge {
      background: #0d6efd;
      color: #fff;
      font-size: 12px;
      padding: 3px 8px;
      border-radius: 5px;
      margin-bottom: 6px;
    }

    .old-price {
      text-decoration: line-through;
      font-size: 14px;
      color: #888;
    }

    .new-price {
      font-size: 24px;
      font-weight: 600;
      color: #10992f;
    }

    .price-col small {
      font-size: 12px;
      color: #777;
      margin-top: 5px;
      text-align: right;
    }

    .btn-group {
      margin-top: 15px;
    }

    .btn-danger {
      background-color: var(--btn-color);
      border: none;
    }

  .read-more {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* show only 3 lines */
    -webkit-box-orient: vertical;
    margin-bottom: 0;
  }

  .read-more.expanded {
    -webkit-line-clamp: unset;
  }

  .read-more-btn {
border: none;
    background: none;
    color: #007bff;
    padding: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
  }

  .read-more-btn:hover {
    text-decoration: underline;
  }
.booking-card {
      max-width: 420px;
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
      margin: 30px auto;
    }
    .price-old {
      text-decoration: line-through;
      color: #777;
      font-size: 15px;
    }
    .discount-badge {
      background: #7dd957;
      color: #fff;
      border-radius: 20px;
      padding: 3px 10px;
      font-weight: 600;
      margin-left: 8px;
    }
    .price-new {
      font-size: 26px;
      font-weight: 700;
    }
    .counter-btn {
      width: 30px;
      height: 30px;
      background: #f4f4f4;
      border-radius: 50%;
      text-align: center;
      line-height: 30px;
      font-size: 20px;
      cursor: pointer;
      transition: 0.2s;
    }
    .counter-btn:hover {
      background: #dcdcdc;
    }
    .send-btn {
      width: 100%;
      background: #57b946;
      color: white;
      border: none;
      padding: 10px;
      font-weight: 600;
      border-radius: 8px;
      transition: 0.2s;
    }
    .send-btn:hover {
      background: #46a437;
    }
    .room-row {
      border-bottom: 1px solid #eee;
      padding-bottom: 12px;
      margin-bottom: 12px;
    }

    .room-card {
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 30px;
    }

    .room-img {
      width: 100%;
      border-radius: 6px 6px 0 0;
      object-fit: cover;
    }

    .room-title {
      font-weight: 700;
      font-size: 1.3rem;
    }

    .room-view {
      color: #666;
      font-style: italic;
    }

    .room-desc {
      color: #777;
      font-size: 0.95rem;
    }

    .carousel-item-card {
      text-align: center;
      border-radius: 15px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .carousel-item-card:hover {
      transform: translateY(-5px);
    }

    .carousel-item-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }

    .carousel-item-text {
      padding: 15px;
      font-size: 16px;
      color: #555;
    }

            .included-list {
              list-style: none;
              padding: 0;
              margin: 0;
            }

            .included-list li {
              display: flex;
              align-items: center;
              font-size: 16px;
              padding: 2px 8px;
              transition: all 0.3s ease;
            }

            .included-list li::before {
              color: #151516;
              margin-right: 10px;
              content: "\e2e6";
              display: inline;
              font-family: 'Material Symbols Outlined';
              font-weight: 300;
              font-size: 20px;

            }

            .included-list .material-symbols-outlined {
              vertical-align: top !important;
            }
        
            .pricing-table h3 {
              margin-bottom: 20px;
              font-weight: 600;
            }

            .table thead th {
             
              font-weight: 600;
              text-align: center;
            }

            .table tbody td {
              text-align: center;
              vertical-align: middle;
            }

            .table tbody tr:nth-child(even) {
              background-color: #fdfdfd;
            }
   
  

  
        .safari-step {
          display: flex;
          align-items: flex-start;
          margin-bottom: 5px;
          gap: 20px;
        }

        .safari-step img {
          width: 60px;
          height: 60px;
        }

        .safari-step p {
          margin: 0;
          font-size: 17px;
          line-height: 1.6;
        }

        .safari-step .check-icon {
          margin-bottom: 0;
        }

        @media (max-width: 576px) {
          .safari-step {
            flex-direction: column;
            align-items: center;
            text-align: center;
          }
        }
     
          ul.process {
            list-style: none;
            /* remove default bullets */
            padding-left: 0;
            margin: 0;
          }

          ul.process li {
            position: relative;
            padding-left: 30px;
            /* space for arrow */
            margin-bottom: 15px;
          }

          ul.process li::before {
            content: "\e5c8";
            /* arrow_forward_ios icon */
            font-family: 'Material Icons';
            font-size: 20px;
            color: #0b1b34;
            position: absolute;
            left: 0;
            top: 5px;
            /* adjust vertically to align */
          }

      .transport-card img {
        transition: transform 0.5s ease;
      }

      .transport-card:hover img {
        transform: scale(1.05);
      }

      .transport-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .transport-card:hover .transport-overlay {
        opacity: 1;
      }
   
      .facility-card img {
        transition: transform 0.5s ease;
      }

      .facility-card:hover img {
        transform: scale(1.1);
      }

      .facility-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 93%);
        opacity: 1;
        transition: top 0.8s ease, bottom 0.8s ease, opacity 0.8s ease;
        top: 75%;
        bottom: -150px;
      }

      .facility-card:hover .facility-overlay {
        top: 40%;
        bottom: 0px;
      }

      .facility-card .btn {
        border: 1px solid #fff;
        color: #fff;
        width: 120px;
        border-radius: 0;
      }
   
    #packages .pkg-list {
      border: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      border-radius: 15px;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
      background: #fff;
    }
    #packages .pkg-list:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }
    #packages .pkg-list img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    #packages .pkg-list h5 {
      
      margin-top: 10px;
    }
    #packages .pkg-list p {color: #555; font-size: 15px;}
    #packages .pkg-price {font-size: 1.1rem;}
   
 
    .btn-detail {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #fff;
      font-weight: 600;
      border-radius: 4px;
      padding: 5px 10px;
      font-size: 0.85rem;
    }

    .price-card {
      border-left: 1px solid #ddd;
      padding: 10px;
    }

    .price-option {
      border-bottom: 1px solid #eee;
      padding: 15px;
    }

    .price-option.active {
      background-color: #fef5e4;
    }

    .price-option:last-child {
      border-bottom: none;
    }



    .price-text {
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #555;
    }

    .price-old {
      text-decoration: line-through;
      color: #888;
      font-size: 0.9rem;
    }

    .price-new {
      font-weight: 600;
      color: #000;
      font-size: 1rem;
    }

    .price-text .material-icons {

      font-size: 18px;
    }

    .price-btn {
      background-color: #fcb900;
      color: #fff;
      /* font-weight: 700; */
      border: none;
      /* border-radius: 5px; */
      padding: 2px 8px;
      transition: all 0.3s;
      font-size: 12px;
    }

    .price-btn:hover {
      background-color: #e6a700;
    }
  
    @media (max-width: 768px) {
      .price-col {
        border-left: none;
        border-top: 1px solid #eee;
        align-items: flex-start;
      }
    }
