.partner-logos {
    background: #f8f9fa;
  }
  
  .logo-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px; /* Set your desired card height */
    transition: transform 0.3s ease;
  }
  
  .logo-card:hover {
    transform: translateY(-5px);
  }
  
  .logo-card img {
    max-height: 80px; /* All logos will have this fixed max height */
    max-width: 100%;
    object-fit: contain;
  }
  