.client-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .client-img {
    max-height: 100px;
    object-fit: contain;
  }
  