.box {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}
.client-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 205, 120, 0.6);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: all 0.35s ease;
}