body{
    overflow-x:hidden !important;
}

@media only screen and (max-width: 600px) {
 
 .navAbsolute__button {
     display:none;
}
}

  .tour-category-section {
    background-color: #f9f9f9;
  }

  .highlighted-text {
    /*color: #EB662B;*/
    color:var(--color-new-1);
  }

  .filter-btn-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .filter-btn {
    background: transparent;
    border: 2px solid var(--color-theme-1);
    color: var(--color-theme-1);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
  }

  .filter-btn.active,
  .filter-btn:hover {
    background-color:var(--color-theme-1);
    color: white;
  }

  .tour-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
  }

  .tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  .tour-img {
    overflow: hidden;
  }

  .tour-img img {
    width: 100%;
    height: 260px;
    border-radius:15px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border: 4px solid  var(--color-new-1);
  }

  .tour-card:hover .tour-img img {
    transform: scale(1.08);
  }

  .tour-content {
    padding: 20px;
    position: relative;
    background-color: #fff;
  }

  .tour-content .badge {
    background:var(--color-new-1);
    color: #fff;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 0 0 10px 0;
    position: absolute;
    top: -18px;
    left: 0;
  }

  .tour-content h5 {
    font-size: 18px;
    margin: 10px 0 10px;
    color: #222;
  }

  .arrow-icon {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:var(--color-new-1);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  .tour-card:hover .arrow-icon {
    transform: translateX(5px);
  }

  .car-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-filter {
    margin-bottom: 40px;
  }
  .tour-img img:hover{
          /*border: 4px solid  #EB662B;*/
  }
  