
.owl-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

    .owl-carousel .item {
        position: relative;
        height: 100vh; /* Tam ekran yüksekliği */
    }

        .owl-carousel .item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* taşan yerleri keser, boşluk kalmaz */
            vertical-align: top;
        }


/* Opsiyonel: oklar ve noktalar stil */
.owl-nav {
    font-size: 3rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px; /* Butonları kenardan 30px içeri al */
    transform: translateY(-50%);
    z-index: 1000;
    color: #fff !important;
}

    .owl-nav button {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

        .owl-nav button:hover {
            background: none !important;
            color: #F38322 !important;
        }


.owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.no-zoom,
.no-zoom:hover {
    transform: none !important;
    scale: 1 !important;
    animation: none !important;
    transition: none !important;
}


