/* Main dropdown fix */
.navbar .dropdown-menu {
    display: none;
    margin-top: 0;
}

/* Show first level dropdown on hover */
.navbar .nav-item:hover > .dropdown-menu {
    display: block;
}

/* Multi-level submenu */
.dropdown-submenu {
    position: relative;
}

/* Second level menu */
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Arrow icon */
.dropdown-submenu > .dropdown-item::after {
    content: "›";
    float: right;
    font-size: 14px;
}
  
  
  
 /* Tour card start  */ 
  .tour-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
    height: 100%;
    display: flex;
    flex-direction: column;
}
  .tour-body {
    flex: 1;
}

.tour-card:hover {
    transform: perspective(1000px) rotateX(3deg) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.tour-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-img {
    transform: scale(1.08);
}

.tour-body {
    padding: 15px;
}

.tour-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.tour-rating {
    margin-top: 8px;
    font-size: 14px;
}

.tour-price {
    font-weight: bold;
    color: #0aa2c0;
    margin-top: 8px;
}

.tour-btn {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 8px;
    background: #0aa2c0;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.tour-btn:hover {
    background: #087f95;
}
 .tour-titlea {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;

    min-height: 40px;
}
  
  .filter-box {
    position: sticky;
    top: 90px; /* safe default */
    z-index: 10;
}
   
 /* Tour card end  */ 
 