.sifency-clients--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 30px;
    align-items: center;
}
.sifency-carousel-wrapper {
    position: relative;
}
.sifency-client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.sifency-client-item img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: filter 0.4s ease, opacity 0.4s ease;
}
.sifency-client-item:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sifency-client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.sifency-carousel-wrapper .swiper-slide {
    height: auto;
}