.client-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.client-header {
  text-align: center;
  margin: 30px 0;
}

.client-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-family: 'Unbounded', sans-serif;
}

.client-header p {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

/* Logos grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.logo-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.logo-item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.1),
    rgba(142, 68, 173, 0.1)
  );
  z-index: 1;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7f8c8d;
  font-weight: 500;
}

.logo-placeholder i {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: #3498db;
}

.section-title {
  text-align: center;
  margin: 40px 0 30px;
  color: #2c3e50;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .client-header h1 {
    font-size: 2.2rem;
  }

  .client-header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .logos-grid {
    grid-template-columns: 1fr;
  }

  .logo-item {
    height: 160px;
    padding: 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Animation for logos */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-item {
  animation: fadeIn 0.5s ease-out;
}

.logo-item:nth-child(1) {
  animation-delay: 0.1s;
}
.logo-item:nth-child(2) {
  animation-delay: 0.2s;
}
.logo-item:nth-child(3) {
  animation-delay: 0.3s;
}
.logo-item:nth-child(4) {
  animation-delay: 0.4s;
}
.logo-item:nth-child(5) {
  animation-delay: 0.5s;
}
.logo-item:nth-child(6) {
  animation-delay: 0.6s;
}
.logo-item:nth-child(7) {
  animation-delay: 0.7s;
}
.logo-item:nth-child(8) {
  animation-delay: 0.8s;
}
.logo-item:nth-child(9) {
  animation-delay: 0.9s;
}
.logo-item:nth-child(10) {
  animation-delay: 1s;
}
.logo-item:nth-child(11) {
  animation-delay: 1.1s;
}
.logo-item:nth-child(12) {
  animation-delay: 1.2s;
}

