.text-bhislider {
    position: absolute;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    text-align: center;
}

.bhislider-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bhislider {
    position: relative;
    width: 100%;
    height: 100%;
}

.bhislide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.bhislide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: transform 5s ease-in-out;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 0;
}

.active {
    opacity: 1;
}

.active img {
    transform: scale(1.1);
}
