.carousel {
    overflow: hidden;
}

.carousel-item {
    display: flex !important;
}

.carousel-item img {
    filter: brightness(0.6);
    width: 100vw; 
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.zoom-animation {
    -webkit-animation: zoom-in-zoom-out 10s;
    animation: zoom-in-zoom-out 10s;
}

@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    100% {
      transform: scale(1.2, 1.2);
    }
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
}

.carousel-caption > * {
    margin: 0;
    padding: 20px;
}

.carousel-caption p {
    font-family: 'Myriad Arabic';
    font-size: 32px;
    color: #FFF;
    padding-top: 0;
    line-height: 1;
}

.carousel-caption h1 {
    font-family: 'Myriad Arabic';
    font-size: 50px;
    color: #FFF;
    padding-bottom: 5px;
    line-height: 1;
}

@media (max-width: 992px) {
    .carousel-caption {
        padding: 10px;
        width: 80%;
    }

    .carousel-item img {
        width: auto;
        height: 500px;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        width: 90%;
    }
}