/* Clients Gallery Grid */
.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8rem;
    justify-items: center;
    align-items: center;
    margin-top: 2rem;
}
.client-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(40,53,147,0.08);
    padding: 8px;
    transition: transform 0.2s;
    display: block;
}
.client-logo img:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(40,53,147,0.15);
}
