.brand-slider {
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    width: calc(200px * 10); /* Marka sayısına göre güncelle */
    animation: scroll 40s linear infinite;
}

.brand-item {
    width: 200px;
    flex-shrink: 0;
    text-align: center;
    padding: 10px;
}

    .brand-item img {
        max-width: 100%;
        height: auto;
        filter: grayscale(100%);
        transition: filter 0.3s;
    }

        .brand-item img:hover {
            filter: grayscale(0%);
        }

    .brand-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px; /* istersen */
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.video-slider {
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    padding: 20px 0;
}

.video-track {
    display: flex;
    width: calc(500px * 4); 
    animation: scroll 40s linear infinite;
}

.video-item {
    width: 500px;
    height: 800px;
    flex-shrink: 0;
    text-align: center;
    padding: 10px;
}
    .video-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px; /* istersen */
    }
.toast {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-weight: 500;
}





/*SLİDER*/
/*SLİDER*/
/*SLİDER*/





.vertical-slider-wrapper {
    position: relative;
    height: 800px;/**/ /* Yüksekliği ayarlayabilirsin */
    overflow: hidden;
}

.vertical-slider {
    height: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease-in-out;
}

.slide {
   
    flex-shrink: 0;
    margin-bottom: 10px;
}

    .slide img {
        height: 100%; /* Fotoğrafı tam doldurur */
        width: 100%; /* Bootstrap'in w-100'ü de var */
        object-fit: cover;
        border-radius: 30px;
    }


.slide-up,
.slide-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
    color: #ee5007;
}

.slide-up {
    top: 5px;
}

.slide-down {
    bottom: 5px;
}
