.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* default 6 kolom */
  grid-gap: 20px;
  justify-content: center;
}

.client-item {
  overflow: hidden;
  text-align: center;
}

.client-item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.client-item img:hover {
  transform: scale(1.08);
}

.clients-pagination {
  margin-top: 70px;
  text-align: center;
}

.clients-pagination a {
  margin: 0 5px;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid #ccc;
}

.clients-pagination a.active {
  background: #333;
  color: #fff;
}

.clients-maintenance {
  text-align: center;
  font-style: italic;
  color: #888;
}

/* Responsive tweaks */
@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr); /* tablet */
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr); /* mobile */
  }
}
