#clients {
    background: none;
    }
    .clients-header {
        text-align: center;
        border-bottom: 1px solid #ddd;
        margin-bottom: 30px;
        padding-bottom: 10px;
      }
    .clients-wrapper {
    position: relative;
    }
    .clients-scrollable {
        padding-top: 1rem;
        display: grid;
        grid-template-rows: repeat(2, 120px);
        grid-auto-flow: column;
        column-gap: 1rem;
        row-gap: 0rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        width: 100%;
        }
    
    .clients-wrapper::before,
    .clients-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px; 
    z-index: 5;
    pointer-events: none;
    }
    .clients-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f9f9f9 0%, rgba(249,249,249,0) 100%);
    }
    .clients-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f9f9f9 0%, rgba(249,249,249,0) 100%);
    }
    .client-card {
    width: 220px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    }
    .client-card:hover {
    transform: scale(var(--hover-scale));
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    .client-card img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
    }