/* =========================================================
   VALUED CLIENTS ECOSYSTEM STYLESHEET (abhimo.com Style)
   All In One Technology - 246+ Corporate Client Logos
   ========================================================= */

:root {
  --client-amber: #f59e0b;
  --client-primary: #0284c7;
  --client-card-bg: #ffffff;
}

/* Division Pill Badge (Abhimo style) */
.badge-clients {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #b45309;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Client Logo Card (Abhimo Crisp White Frosted Card) */
.client-grid-card {
  background: var(--client-card-bg);
  border: 1px solid rgba(0, 119, 255, 0.1);
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 12rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.client-grid-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 16px 35px rgba(2, 132, 199, 0.12);
}

.client-grid-card h5 {
  color: #082032;
  font-weight: 700;
}

.client-grid-card span {
  color: #0284c7;
  font-weight: 600;
}

/* Filter Pill */
.client-pill {
  transition: all 0.25s ease;
  cursor: pointer;
}

.client-pill:hover {
  transform: translateY(-2px);
}

/* Responsive Enhancements for Valued Clients */
@media (max-width: 640px) {
  .client-grid-card {
    height: 11rem;
    padding: 0.75rem;
    border-radius: 14px;
  }
  .client-grid-card h5 {
    font-size: 0.78rem;
  }
  .client-grid-card span {
    font-size: 0.68rem;
  }
  .client-pill {
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 1920px) {
  #clients-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

