.clients {
  padding: 80px 20px;
  background: var(--background);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 50px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.client-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 28, 45, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 28, 45, 0.15);
}

.client-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

.client-name {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.client-desc {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.client-links a {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.client-links a:hover {
  background: var(--accent);
  transform: scale(1.1);
}
