.partner-carousel .logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 180px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(198,161,110,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 auto;
}
.partner-carousel .logo-box:hover {
    transform: translateY(-8px) scale(1.07);
    box-shadow: 0 8px 32px rgba(198,161,110,0.18);
}
.partner-carousel .logo-box img {
    max-height: 90px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(40%);
    transition: filter 0.3s;
}
.partner-carousel .logo-box:hover img {
    filter: grayscale(0%);
}
