.banner-section {
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 494px;
}

/* Add a gradient overlay over everything */
.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* adjust gradient as you like */
    background: #000000A6;
}

/* Each image layer for smooth transitions */
.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: -1;
    transform: scale(1);
    animation: fadeZoom 20s infinite ease-in-out;
}

/* Assign background images and stagger timing */
.bg-slide-1 {
    background-image: url("../images/home/bg.webp");
    animation-delay: 0s;
}

.bg-slide-2 {
    background-image: url("../images/home/bg2.webp");
    animation-delay: 4s;
}

.bg-slide-3 {
    background-image: url("../images/home/bg3.webp");
    animation-delay: 8s;
}

.bg-slide-4 {
    background-image: url("../images/home/bg4.webp");
    animation-delay: 12s;
}

.bg-slide-5 {
    background-image: url("../images/home/bg5.webp");
    animation-delay: 16s;
}

/* Smooth fade + zoom animation */
@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
        transform: scale(1.02);
    }

    20% {
        opacity: 1;
        transform: scale(1.08);
    }

    25% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

/* Keep content visible on top */
.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 90px;
    padding-bottom: 60px;
}



.banner-title {
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    background: #FFFFFF4D;
    border-radius: 40px;
    max-width: 278px;
    margin: 0 auto;
    align-items: center;
}

.heart-icon {
    display: flex;
    align-items: center;
    max-width: 20px;
    max-height: 20px;
    overflow: hidden;
}

.banner-heading {
    max-width: 798px;
    margin: 0 auto;
}

.banner-subheading {
    max-width: 750px;
    margin: 0 auto;
}

.banner-buttons {
    max-width: 288px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
}




@media (max-width:1199px) {
    .banner-title {
        padding: 6px 10px;
    }
}

@media (max-width:991px) {

    .banner-subheading .h4-text {
        font-size: 14px;
    }
    .banner-section{
        min-height: 446px;
        display: flex;
        align-items: flex-end;
    }

}

@media screen and (max-width: 768px) {

    /*  */

}