

/* === travel-banner start == */
.travel-banner {
    margin-top: 65px;
}

.travel-banner {
    background-image: url('../images/package/location_banner.jpg');
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
}

.travel-banner .search-box {
    margin-top: 10px;
    background-color: rgb(255 255 255 / 35%);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* === travel-banner end === */

/* travel_cards start */
.travel_cards .travel-card {
    background-size: cover;
    background-position: center;
    height: 250px;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.travel_cards .travel-card:hover {
    transform: scale(1.02);
}

.travel_cards .travel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.travel_cards .travel-card-content {
    position: relative;
    z-index: 2;
}

.travel_cards .travel-card h5 {
    font-weight: bold;
}

.travel_cards .travel-card .btn {
    background-color: white;
    color: #000;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
}

/* travel_cards end */


/* featured-destinations start */
.featured-destinations .destination-card .card {
    height: 280px;
    transition: transform 0.3s ease;
}

.featured-destinations .destination-card .card:hover {
    transform: scale(1.03);
}

.featured-destinations .destination-card .card-img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.4s ease;
}

.featured-destinations .destination-card:hover .card-img {
    transform: scale(1.05);
}

.featured-destinations .destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.featured-destinations .price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffc107;
    color: #000;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.875rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* featured-destinations end */


/* why-us-section start */
/* .why-us-section {
    min-height: 500px;
} */

.why-us-section {
    background-image: url('../images/package/location_banner.jpg');
    width: 100%;
    /* height: 550px; */
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .why-us-section .p-5 {
        padding: 2rem !important;
    }
}

/* why-us-section end */

