/* --- Clients Section --- */
.clients-section {
  padding: 0.5rem 5rem;
  background-color: #4acdf8a9;
  text-align: center;
}

.clients-header h2 {
  font-size: 2.5rem;
  color: #0d1e4d;
  margin-bottom: 0.5rem;
  font-family: Arial, sans-serif;
  text-align: center;
	margin-top: -0.5rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.client-logo-box {
  background-color: #fff;
  padding: 0.5rem 4rem;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.client-logo-box:hover {
  transform: translateY(-10px);
}

.client-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease-in-out;
}

/* Mobile */
@media (max-width: 768px) {
  .clients-section {
    padding: 2rem 1rem;
  }

  .clients-header h2 {
    font-size: 2rem;
    position: static;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .client-logo-box {
    padding: 1rem;
    height: 150px;
    width: 100%;
    box-sizing: border-box;
  }

  .client-logo-box img {
    max-width: 100%;
    max-height: 100%;
  }
}
