
.client-card {
    border: 1px solid #dee2e6;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
    background-color: #ffffff;
    height: 200px;
  }

  .client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .client-logo {
    max-height: 80px;
    object-fit: contain;
  }

  .page-title {
    margin-bottom: 2rem;
  }