.carousel-inner {
    position: fixed;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .carousel-inner {
        position: fixed;
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
        margin-top: 80px;
    }
}


.carousel-item {
    display: none;
    position: relative;
    text-align: center;
    transition: transform !important
}

.carousel-item.active {
    display: block;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    display: none !important
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin-right: 5px;
    cursor: pointer;
}

.carousel-indicators .active {
    background-color: #fff;
}
.carousel-inner .carousel-item img {
    max-width: 100%;
    /* max-height: 750px; */
    margin: auto;
    transform: scale(1.2, 1.2);
    transition: transform 8000ms ease-out 0s, opacity 800ms ease 0s;
}

.carousel-item img {
    transition: transform 0.1s ease;
}

   .carousel-item img {
        animation: zoomInOut 10s infinite alternate; /* Adjust duration and other properties as needed */
        transform-origin: center center;
    }

    @keyframes zoomInOut {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.2); /* Adjust the zoom level as needed */
        }
    }
    @media screen and (max-width: 767px) {
        .carousel-inner .carousel-item img {
    max-width: 100%;
    /* max-height: 750px; */
    margin: auto;
    transform: scale(1.2, 1.2);
    transition: transform 8000ms ease-out 0s, opacity 800ms ease 0s;
    margin-top: 25px;
}

.carousel-item img {
    transition: transform 0.1s ease;
}

   .carousel-item img {
        animation: zoomInOut 10s infinite alternate; /* Adjust duration and other properties as needed */
        transform-origin: center center;
    }
}