body {
    font-family: 'Poppins', sans-serif;
}

footer {
    background: #262626;
    color: #aaa;
}

section {
    scroll-margin-top: 80px;
    /* height of your navbar */
}

/* .hero {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),
        url('https://images.unsplash.com/photo-1543269865-cbf427effbad') center/cover no-repeat;
    color: #fff;
    padding: 150px 0;
} */

.hero {
    position: relative;
    padding: 290px 0;
    color: #fff;
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}



.category-card img {
    height: 180px;
    object-fit: cover;
}

.cta-section {
    background: #ffffff00;
}

.btn-thm {
    background-color: #ef3630 !important;
    color: white;
}

.bg-thm {
    background-color: #ffeded;
}
.text-thm-light{
    color: #ffcac8!important;
}

.listing-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform .4s ease;
}

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

.listing-card:hover {
    transform: translateY(-10px) scale(1.03);
}

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

.listing-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.swiper {
    cursor: grab;
}

.swiper:active {
    cursor: grabbing;
}