/* OUR CLIENT PAGE CSS */
.py-section { padding: 90px 0; }

.sector-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.sector-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.sector-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sector-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.sector-header h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0;
  font-weight: 700;
}

.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: default;
}
.client-card:hover {
  box-shadow: 0 8px 28px rgba(26,107,255,.1);
  transform: translateY(-3px);
  border-color: rgba(26,107,255,.2);
}
.client-card i {
  display: block;
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: .5rem;
}
.client-card span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

@media (max-width: 768px) { .py-section { padding: 60px 0; } }