.nst-customers-section {
  background: #F7F9FC;
  padding: 90px 32px 80px;
  width: 100%;
  box-sizing: border-box;
}
.nst-customers-inner {
  text-align: center;
  margin-bottom: 56px;
}
.nst-customers-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00B894;
  margin: 0 0 12px;
}
.nst-customers-heading {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #0F4C81;
  margin: 0;
  line-height: 1.15;
}
.nst-customers-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.nst-logo-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  min-width: 260px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nst-logo-card.nst-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nst-logo-card.nst-animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nst-logo-card:hover {
  border-color: #00B894;
  box-shadow: 0 10px 32px rgba(0, 184, 148, 0.14);
  transform: translateY(-4px) !important;
}
.nst-logo-card img {
  max-width: 190px;
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .nst-logo-card {
    min-width: 180px;
    height: 130px;
    padding: 24px 32px;
  }
  .nst-logo-card img {
    max-width: 148px;
    max-height: 62px;
  }
  .nst-customers-heading {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .nst-customers-grid {
    gap: 18px;
  }
  .nst-logo-card {
    min-width: 150px;
    height: 110px;
    padding: 18px 24px;
  }
  .nst-logo-card img {
    max-width: 120px;
    max-height: 50px;
  }
}