  /* Your existing CSS styles remain the same */
    :root {
      --brand-green: #0b3d2e;
      --accent: #000;
      --light: #fff;
    }

    body {
      font-family: system-ui, Roboto, "Helvetica Neue", Arial;
      padding-top: 80px;
    }

    /* NAVBAR - Glass Effect */
    .navbar {
      position: fixed;
      width: 100%;
      z-index: 1000;
      transition: all 0.4s ease;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 0.6rem 4rem;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand img {
      height: 60px;
      transition: all 0.3s ease;
    }

    .navbar.scrolled .navbar-brand img {
      height: 55px;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      color: #fff !important;
      margin-right: 1rem;
      transition: color 0.3s ease;
      padding: 0.5rem 0.6rem !important;
    }

    .navbar.scrolled .navbar-nav .nav-link {
      color: #000 !important;
    }

    .navbar-nav .nav-link:hover {
      color: #c49a3d !important;
    }

    .btn-black {
      background: transparent;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 0.6rem 1.4rem;
      border: 1px solid #fff !important;
      border-radius: 8px;
      transition: all 0.4s ease;
      margin-right: 1rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .navbar.scrolled .btn-black {
      color: #0087c4;
      border: 1px solid #0087c4 !important;
    }

    .btn-black::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0098d9, #006fa1);
      transition: all 0.4s ease;
      z-index: -1;
    }

    .btn-black:hover::before {
      left: 0;
    }

    .btn-black:hover {
      color: #fff;
      box-shadow: 0 4px 12px rgba(0, 135, 196, 0.4);
      transform: translateY(-2px);
    }

    .btn-black:active {
      transform: translateY(1px);
      box-shadow: 0 2px 6px rgba(0, 135, 196, 0.3);
    }

    .dropdown-menu {
      border: 0;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      padding: 1.5rem;
      min-width: 700px;
    }

    .dropdown-menu h6 {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 0.75rem;
    }

    .dropdown-menu a {
      text-decoration: none;
      color: #000;
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      padding: 0.25rem 0;
    }

    .dropdown-menu a:hover {
      color: #c49a3d;
    }


     /* Mobile Menu Button Styling */
    .navbar-toggler {
      border: 1px solid rgba(255, 255, 255, 0.5);
      padding: 0.25rem 0.5rem;
    }
    
    .navbar.scrolled .navbar-toggler {
      border-color: rgba(0, 0, 0, 0.3);
    }
    
    .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='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar.scrolled .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='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Dropdown open on hover (Desktop only) */
    @media (min-width: 992px) {
      .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

    /* Tablet Responsiveness */
    @media (max-width: 991.98px) {
      .dropdown-menu {
        position: static !important;
        box-shadow: none;
        padding: 1rem;
        min-width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-top: 0.5rem;
        border-radius: 8px;
      }

      .dropdown-menu .row > div {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 1rem;
      }

      .navbar-nav .nav-link {
        padding-left: 0.5rem;
      }
      
      .btn-black {
        margin-top: 1rem;
        margin-left: 0.5rem;
      }
    }




    
/* Footer Styles */
.footer-section {
background: #0d7187;
  color: white;
}

.footer-heading {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #f57c00, #e56b00);
  border-radius: 2px;
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(3px);
}

.footer-link {
  color: #b8d4c8 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #fff !important;
  text-decoration: none;
}

.social-links {
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: linear-gradient(135deg, #f57c00, #e56b00);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 124, 0, 0.4);
  color: #fff;
}

.contact-icon {
  width: 16px;
  text-align: center;
  margin-top: 2px;
}

.contact-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.newsletter-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px 0 0 8px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border-right: none;
}

.form-control:focus {
  background: #fff;
  border-color: #f57c00;
  box-shadow: 0 0 0 0.2rem rgba(245, 124, 0, 0.25);
}

.bottom-footer {
      background: rgb(2 94 115);
}

.footer-bottom-links .footer-link {
  font-size: 0.85rem;
}

/* Use your existing search button styles */
.search-btn {
  background: linear-gradient(135deg, #f57c00, #e56b00);
  border: none;
  color: #fff;
  border-radius: 0 8px 8px 0 !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
  position: relative;
  overflow: hidden;
  padding: 0.6rem 1rem;
}

.search-btn:hover {
  background: linear-gradient(135deg, #e56b00, #d45a00);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
  color: #fff;
}

.search-btn:active {
  transform: translateY(0);
}

.search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.search-btn:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .newsletter-section {
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 2rem 0 0 0;
  }
  
  .footer-heading {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .contact-item p {
    font-size: 0.85rem;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .newsletter-section {
    padding: 1rem;
  }
}

.img-ft{
      margin: 20px 0px;
}

@media only screen and (max-width: 600px) {
  .img-ft{
      margin:  0px !important;}

}


/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
}

.accordion-button {
  background: white;
  color: #0b3d2e;
  font-size: 1.1rem;
  padding: 1.5rem 1.5rem;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #0b3d2e, #1a6b52);
  color: white;
  box-shadow: 0 8px 20px rgba(11, 61, 46, 0.2);
}

.accordion-button:focus {
  border-color: #0b3d2e;
  box-shadow: 0 0 0 0.25rem rgba(11, 61, 46, 0.25);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b3d2e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.faq-number {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.accordion-button:not(.collapsed) .faq-number {
  background: white !important;
  color: #0b3d2e !important;
}

.accordion-body {
  background: white;
  padding: 1.5rem;
  border-radius: 0 0 12px 12px;
  color: #495057;
  line-height: 1.6;
  border-top: 1px solid rgba(11, 61, 46, 0.1);
}

.accordion-body p {
  margin-bottom: 1rem;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.accordion-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.accordion-body li {
  margin-bottom: 0.5rem;
}

.accordion-body strong {
  color: #0b3d2e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .accordion-button {
    padding: 1.25rem 1rem;
    font-size: 1rem;
  }
  
  .faq-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .accordion-body {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 576px) {
  .accordion-button {
    padding: 1rem 0.75rem;
  }
  
  .accordion-body {
    padding: 1rem 0.75rem;
  }
  
  .faq-number {
    margin-right: 0.75rem;
  }
}

/* HERO */
    .hero {
      background-image: linear-gradient(rgba(11, 61, 46, 0.45), rgba(11, 61, 46, 0.45)),
        url('https://images.unsplash.com/photo-1508672019048-805c876b67e2?auto=format&fit=crop&w=2000&q=60');
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 12rem 0;
      text-align: center;
      margin-top: -80px;
    }

    .hero h1 {
      font-size: clamp(28px, 4vw, 56px);
      font-weight: 700;
    }

    .search-bar {
      z-index: 10;
      max-width: 1100px;
      border-radius: 12px;
      padding: 20px 15px;
    }

    .search-bar select,
    .search-bar input {
      border: 1px solid #ddd;
      border-radius: 6px;
      height: 45px;
      padding-left: 35px !important;
    }

    .input-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #6c757d;
      font-size: 15px;
      pointer-events: none;
    }

    .search-bar {
      z-index: 10;
      max-width: 1100px;
      border-radius: 12px;
      padding: 20px 15px;
    }

    .search-bar select,
    .search-bar input {
      border: 1px solid #ddd;
      border-radius: 6px;
      height: 45px;
      padding-left: 35px !important;
      font-size: 14px;
    }

    .input-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #6c757d;
      font-size: 15px;
      pointer-events: none;
    }

    .search-btn {
      background: linear-gradient(135deg, #f57c00, #e56b00);
      border: none;
      color: #fff;
      height: 45px;
      border-radius: 8px !important;
      font-weight: 600 !important;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
      position: relative;
      overflow: hidden;
      font-size: 16px;
      padding: 0.5rem 1rem;
    }

    .search-btn:hover {
      background: linear-gradient(135deg, #e56b00, #d45a00);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
    }

    .search-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 10px rgba(245, 124, 0, 0.3);
    }

    .search-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s ease;
    }

    .search-btn:hover::before {
      left: 100%;
    }


    
    /* Zone Cards Section */
    .zone-section {
      padding: 100px 0;
      background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    }

    .zone-card {
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      height: 100%;
      position: relative;
      background: #fff;
    }

    .zone-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .zone-card-header {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .zone-card-header img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .zone-card:hover .zone-card-header img {
      transform: scale(1.1);
    }

    .zone-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .zone-card-title {
      color: white;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .zone-card-body {
      padding: 25px;
    }

    .zone-card-description {
      color: #6c757d;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .zone-features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    .zone-features li {
      padding: 5px 0;
      color: #495057;
      display: flex;
      align-items: center;
    }

    .zone-features li i {
      color: #0b3d2e;
      margin-right: 10px;
      font-size: 0.9rem;
    }

    .zone-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }

    .zone-badge {
      background: linear-gradient(135deg, #0b3d2e, #1a6b52);
      color: white;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .zone-btn {
      background: linear-gradient(135deg, #f57c00, #e56b00);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 8px 20px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .zone-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(245, 124, 0, 0.4);
      color: white;
    }

    /* Section Title */
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0b3d2e;
      margin-bottom: 15px;
    }

    .section-title p {
      font-size: 1.1rem;
      color: #6c757d;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Mobile Responsiveness */
    @media (max-width: 767.98px) {
      .search-bar .row > div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0.75rem;
      }
      
      .search-btn {
        margin-top: 0.5rem;
        height: 50px;
        font-size: 18px;
      }
      
      .zone-section {
        padding: 60px 0;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 575.98px) {
      .search-bar {
        padding: 15px 10px;
        margin-top: 200px !important;
      }
      
      .search-bar select,
      .search-bar input {
        height: 40px;
        font-size: 14px;
      }
      
      .search-btn {
        height: 45px;
        font-size: 16px;
      }
    }

   

    /* Mobile Responsiveness */
    @media (max-width: 767.98px) {
      body {
        padding-top: 70px;
      }
      
      .hero {
        margin-top: -70px;
        padding: 8rem 1rem;
      }
      
      .navbar {
        padding: 0.5rem 1rem;
      }

      .navbar-brand img {
        height: 50px;
      }

      .btn-black {
        display: block;
        margin: 1rem 0.5rem 0.5rem;
        width: calc(100% - 1rem);
        text-align: center;
      }

      .dropdown-menu .row > div {
        flex: 0 0 100%;
        max-width: 100%;
      }

      .dropdown-menu {
        padding: 1rem;
      }

      .hero h1 {
        font-size: 26px;
      }
      
      .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        margin-top: 0.5rem;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }
      
      .navbar.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
      }
      
      .navbar-nav .nav-link {
        color: #000 !important;
        margin-right: 0;
        padding: 0.75rem 0.5rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }
      
      .navbar-nav .nav-link:last-child {
        border-bottom: none;
      }
      
      .dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
      }
      
      /* Search form - single column on mobile */
      .search-bar .row > div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0.75rem;
      }
    }
    
    /* Small Mobile Devices */
    @media (max-width: 575.98px) {
      .hero {
        padding: 10rem 1rem;
      }
      
      .search-bar {
        padding: 15px 10px;
        margin-top: 200px !important;
      }
      
      .search-bar select,
      .search-bar input {
        height: 40px;
        font-size: 14px;
      }
      
      .search-bar .btn-warning {
        height: 40px;
        font-size: 14px;
      }
    }

    /* Your existing styles for safari cards and other sections */
    .safari-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 20px;
      overflow: hidden;
    }

    .safari-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    }

    .safari-card-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
      opacity: 0.9;
    }

    .jeep-bg {
      --card-color-1: #0b3d2e;
      --card-color-2: #1a6b52;
    }

    .elephant-bg {
      --card-color-1: #f57c00;
      --card-color-2: #ff9800;
    }

    .card-header {
      border-bottom: none;
      padding: 0 !important;
    }

    .pricing-table th {
      font-weight: 600;
      color: #6c757d;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .pricing-table td {
      padding: 1rem 0.75rem;
      vertical-align: middle;
    }

    .price-indian {
      background: linear-gradient(135deg, #0b3d2e, #2e8b57);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .price-foreigner {
      background: linear-gradient(135deg, #f57c00, #ffa726);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .safari-info {
      background: #f8f9fa;
      border-radius: 15px;
      padding: 1.5rem;
    }

    .info-item {
      padding-bottom: 1rem;
      border-bottom: 1px solid #e9ecef;
    }

    .info-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .info-item h6 {
      color: #495057;
      font-size: 0.95rem;
    }

    .btn-success, .btn-warning {
      border-radius: 50px;
      font-weight: 600;
      padding: 0.75rem 2rem;
      transition: all 0.3s ease;
    }

    .btn-success:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(11, 61, 46, 0.3);
    }

    .btn-warning:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .safari-card {
        margin-bottom: 2rem;
      }
      
      .pricing-table th,
      .pricing-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.85rem;
      }
      
      .price-indian,
      .price-foreigner {
        font-size: 1rem;
      }
    }

    .boxx{
      padding: 140px 70px 50px 70px;
    }

    .product-card {
      border-radius: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    }

    .product-image {
      min-height: 500px;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    }

    .product-badge .badge,
    .shipping-badge .badge {
      border-radius: 10px;
      font-weight: 600;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
    }

    .product-title {
      background: linear-gradient(135deg, #2d5016, #4a7c2a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .price {
      font-family: 'Arial', sans-serif;
    }

    .btn-warning {
      background: linear-gradient(135deg, #f57c00, #e56b00);
      border: none;
      border-radius: 12px;
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
    }

    .btn-warning:hover {
      background: linear-gradient(135deg, #e56b00, #d45a00);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
      color: white;
    }

    .btn-outline-secondary {
      border-radius: 12px;
      border: 2px solid #6c757d;
      transition: all 0.3s ease;
    }

    .btn-outline-secondary:hover {
      background-color: #6c757d;
      border-color: #6c757d;
      transform: translateY(-2px);
    }

    .category small {
      font-size: 0.85rem;
      letter-spacing: 0.5px;
    }

    .product-description li {
      font-size: 1rem;
      color: #495057;
    }

    .wishlist-text small {
      font-size: 0.8rem;
      letter-spacing: 0.5px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .product-image {
        min-height: 300px;
      }
      
      .product-title {
        font-size: 2rem;
      }
      
      .price {
        font-size: 1.5rem !important;
      }
      
      .card-body {
        padding: 2rem !important;
      }
    }

    @media (max-width: 576px) {
      .product-card {
        margin: 1rem;
      }
      
      .product-title {
        font-size: 1.75rem;
      }
      
      .btn-lg {
        padding: 0.75rem 1rem;
      }
    }

    .card-boxx{
      padding: 0px 70px 50px 70px;
    }

    /* Important Information Section Styles */
.info-section {
  padding: 80px 0;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b3d2e;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.info-list {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(11, 61, 46, 0.1);
}

.info-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(11, 61, 46, 0.02);
  margin: 0 -1rem;
  padding: 1.5rem 1rem;
  border-radius: 10px;
}

.info-item:last-child {
  border-bottom: none;
}

.info-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0b3d2e, #1a6b52);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 1.5rem;
    margin-top: 0.25rem;
}

.info-content {
  flex: 1;
}

.info-content h5 {
  color: #0b3d2e;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-content p {
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .info-list {
    padding: 2rem 1.5rem;
  }
  
  .info-item {
    padding: 1.25rem 0;
  }
  
  .info-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    margin-right: 1rem;
  }
  
  .info-content h5 {
    font-size: 1.1rem;
  }
  
  .info-content p {
    font-size: 0.95rem;
  }
  
  .info-item:hover {
    margin: 0 -0.5rem;
    padding: 1.25rem 0.5rem;
  }
}

@media (max-width: 576px) {
 body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden ;
 }

  .info-list {
    padding: 1.5rem 1rem;
  }
  
  .info-item {
    padding: 1rem 0;
    flex-direction: column;
  }
  
  .info-number {
    margin-right: 0;
    margin-bottom: 0.75rem;
  }
  
  .info-item:hover {
    margin: 0;
    padding: 1rem 0;
  }

  .boxx {
    padding: 580px 10px 50px 10px;
   }

   .card-boxx {
        padding: 0px 0px 50px 0px;
    }

}


.tour-package-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
}

.tour-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  margin-bottom: 2rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.tour-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .image-overlay {
  opacity: 1;
}

.tour-card:hover .tour-image {
  transform: scale(1.15);
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.badge-text {
  background: linear-gradient(135deg, #f57c00, #e56b00);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
  letter-spacing: 0.5px;
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 61, 46, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .tour-overlay {
  opacity: 1;
}

.btn-quick-view {
  background: white;
  color: #0b3d2e;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-quick-view:hover {
  background: #f57c00;
  color: white;
  transform: translateY(-2px);
}

/* Icons Section */
.tour-icons {
  display: flex;
  justify-content: space-around;
  padding: 1.2rem 1rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-3px);
}

.icon-wrapper {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(11, 61, 46, 0.1);
  transition: all 0.3s ease;
}

.icon-item:hover .icon-wrapper {
  background: #0b3d2e;
  transform: scale(1.1);
}

.icon-item:hover .icon-wrapper i {
  color: white;
}

.icon-item i {
  font-size: 1.1rem;
  color: #0b3d2e;
  transition: color 0.3s ease;
}

.icon-item span {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 600;
  text-align: center;
}

/* Content Section - Optimized Spacing */
.tour-content {
  padding: 1.8rem 1.8rem 1.5rem 1.8rem; /* Reduced bottom padding */
  display: flex;
  flex-direction: column;
     height: calc(100% - 275px - 80px);
}

.tour-rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.tour-rating i {
  color: #ffc107;
  font-size: 0.9rem;
  margin-right: 2px;
}

.rating-text {
  font-size: 0.8rem;
  color: #6c757d;
  margin-left: 0.5rem;
  font-weight: 500;
}

.tour-title {
  color: #0b3d2e;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  position: relative;
}

.tour-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #f57c00, #e56b00);
  border-radius: 2px;
}

.tour-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem; /* Reduced margin */
  font-size: 0.85rem;
  flex-grow: 1;
}

.tour-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem; /* Reduced gap */
  margin-bottom: 1rem; /* Reduced margin */
}

.feature {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #6c757d;
}

.feature i {
  color: #0b3d2e;
  margin-right: 0.5rem;
  width: 16px;
}

/* Price Section - Optimized Spacing */
.tour-price {
  margin-bottom: 1rem; /* Reduced margin */
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.price-amount {
  color: #0b3d2e;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0b3d2e, #1a6b52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.per-person {
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 500;
}

.price-discount {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.original-price {
  color: #6c757d;
  font-size: 0.9rem;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-badge {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Action Buttons - Optimized Spacing */
.tour-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: auto; /* Push buttons to bottom */
  padding-top: 0.5rem; /* Add space above buttons */
}

.btn {
  border: none;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-enquiry {
  flex: 1;
  background: linear-gradient(135deg, #0b3d2e, #1a6b52);
  color: white;
  padding: 0.9rem 1.2rem; /* Slightly reduced padding */
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(11, 61, 46, 0.3);
}

.btn-enquiry:hover {
  background: linear-gradient(135deg, #1a6b52, #0b3d2e);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11, 61, 46, 0.4);
}

.btn-call {
  width: 48px; /* Slightly reduced */
  height: 48px; /* Slightly reduced */
  background: linear-gradient(135deg, #f57c00, #e56b00);
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
  flex-shrink: 0;
}

.btn-call:hover {
  background: linear-gradient(135deg, #e56b00, #d45a00);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.4);
}

.btn-call i {
  font-size: 1.1rem;
}

/* Button hover effects */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .tour-package-section {
    padding: 60px 0;
  }
  
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .tour-image-container {
    height: 250px;
  }
  
  .tour-content {
    padding: 1.5rem 1.5rem 1.2rem 1.5rem; /* Reduced bottom padding */
  }
  
  .tour-title {
    font-size: 1.4rem;
  }
  
  .tour-description {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  
  .tour-features {
    margin-bottom: 0.8rem;
  }
  
  .tour-price {
    margin-bottom: 0.8rem;
  }
  
  .price-amount {
    font-size: 1.6rem;
  }
  
  .btn-enquiry {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .btn-call {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 576px) {
  .tour-image-container {
    height: 220px;
  }
  
  .tour-badge {
    top: 12px;
    left: 12px;
  }
  
  .badge-text {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .tour-icons {
    padding: 1rem 0.8rem;
  }
  
  .icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .icon-item i {
    font-size: 1rem;
  }
  
  .tour-content {
    padding: 1.2rem 1.2rem 1rem 1.2rem; /* Further reduced bottom padding */
  }
  
  .tour-actions {
    gap: 0.6rem;
    padding-top: 0.3rem;
  }
  
  .btn-enquiry {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }
  
  .btn-call {
    width: 40px;
    height: 40px;
  }
  
  .btn-call i {
    font-size: 1rem;
  }
}

/* Ensure equal height cards */
.row.justify-content-center {
  display: flex;
  flex-wrap: wrap;
}

.col-lg-3 {
  display: flex;
}


   .section-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
            font-size: 1.4rem;
        }

        .booking-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .detail-item {
            margin-bottom: 15px;
        }

        .detail-label {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 0.95rem;
        }

        .detail-value {
            font-size: 1.1rem;
            color: var(--dark);
            padding: 8px 0;
        }

        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--border), transparent);
            margin: 25px 0;
        }

        .address-section {
            margin-bottom: 30px;
        }


         .passenger-form {
            margin-bottom: 30px;
        }

        .passenger-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .passenger-title {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .add-passenger {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 8px 15px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }

        .add-passenger:hover {
            background: var(--primary-light);
        }

        .passenger-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        .passenger-table th {
            background-color: var(--primary);
            color: white;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .passenger-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
        }

        .passenger-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .passenger-type {
            font-weight: 600;
            color: var(--primary);
            text-align: center;
            width: 80px;
        }

        .age-input {
            max-width: 80px;
        }

        .remove-passenger {
            background: none;
            border: none;
            color: #dc3545;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.2s;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .remove-passenger:hover {
            background: rgba(220, 53, 69, 0.1);
        }

        .payment-section {
            background-color: #f8f9fa;
            border-radius: var(--radius);
            padding: 20px;
            margin-top: 20px;
        }

        .payment-note {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 15px;
        }

        .terms-check {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
        }

        .terms-check input {
            margin-top: 5px;
        }

        .payable-amount {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.3rem;
            color: var(--primary);
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }

        .amount {
            color: var(--secondary);
            font-size: 1.5rem;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn-primary {
            background: var(--primary);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(44, 85, 48, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }




