@keyframes slides {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.logos {
    overflow: hidden;
    padding: 15px 0px;
    white-space: nowrap;
    position: relative;
    background: #fff;
    width: 100%;
}

.logos:before, .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
    display: inline-flex;
    animation: 30s slides infinite linear;
    padding: 0 8px;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img {
    height: 35px;
    margin: 0 12px;
    vertical-align: middle;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
    object-fit: contain;
}

.logo_items img:hover {
    filter: grayscale(0%);
}

.logo_items a {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .logo_items img {
        height: 30px;
        margin: 0 8px;
    }
    
    .logos:before, .logos:after {
        width: 60px;
    }
}

@media screen and (max-width: 480px) {
    .logo_items img {
        height: 25px;
        margin: 0 6px;
    }
    
    .logos:before, .logos:after {
        width: 30px;
    }
} 

.logo-popup {
    position: absolute;
    background: #fff;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    max-width: 250px;
    display: none;
    font-size: 14px;
    transition: opacity 0.2s ease;
}
