/* Extracted from resources/views/frontend/pages/about.blade.php */
/* Brand Card */
.brand-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

/* Logo */
.brand-img {
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Hover Effect */
.brand-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.brand-box:hover .brand-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
