/* HERO SECTION */
.client-hero {
    height: 300px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

/* CLIENT CARD */
.client-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.client-card img {
    max-width: 120px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.client-card h6 {
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}