/* Brand Logo Hover Effect - Colorful by default, grayscale on hover */
.brand-item img {
    filter: none;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(100%);
    transform: scale(1.05);
}

.brand-item {
    display: inline-block;
    transition: all 0.3s ease;
}