.trip-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;

    /* Hide scrollbar */
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;     /* Firefox */
}

.trip-scroll::-webkit-scrollbar {
    display: none;             /* Chrome, Safari */
}


.trip-card {
    position: relative;
    height: 350px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.25); */
    border: 0px solid #ff0000;
    transition: all 0.5s ease;
}

.trip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: linear-gradient(
        to top,
        rgb(0, 0, 0),
        rgba(0,0,0,0.2),
        transparent
    );
}

.trip-overlay h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.price-box span {
    font-size: 20px;
    font-weight: 700;
}

.price-box small {
    opacity: 0.9;
}

.trip-card:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
    border: 4px solid #ff0000;
}