/* ============================
   PARTNERS & AFFILIATIONS
============================ */
.partners-section {
    width: -webkit-fill-available;
    padding: 100px 6vw 6vw 6vw;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}

.partners-section:nth-of-type(odd) {
  background: #ffffff; /* subtle alternation if multiple sections stacked */
}

.partners-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 25px 0;
  color: #001737;
}

/* Grid wrapper */
.partners-grid {
    max-width: 100%;
    display: flex;
    width: 100%;
    gap: 24px;
    align-items: center;
    justify-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
}

/* Individual partner card */
.partner-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 35px;
    width: 200px;
    height: 128px;
    display: flex;
    align-items: center;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    text-align:center;
}
.partner-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

/* Hover effect */
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.6);
}

/* ========== RESPONSIVE ========== */
