/*--------------------------------------------------------------
# Sliding Text One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    z-index: 4;
}

.brand-one__wrap {
    position: relative;
    display: block;
    padding-top: 20px;
}

.brand-one__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
}

.brand-one__list li {
    position: relative;
    display: block;
    float: left;
}

.brand-one__list li img {
    width: auto;
    margin-right: 40px;
    margin-left: 40px;
}

.brand-one__list-two {
    margin-top: 30px;
}

/* Custom Client Card Styles */
.client-card-custom {
    width: 250px;
    background-color: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 25px 20px;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 100%;
}

.client-card-custom:hover {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--Freshflow-base);
    transform: translateY(-5px);
}

.client-logo-box {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.client-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    mix-blend-mode: multiply;
}

.client-card-custom:hover .client-logo-box img {
    opacity: 1; 
}

.client-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--Freshflow-black);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/