/* ================= OUR PARTNERS ================= */

.partners-section {
  margin: 30px auto;
}

.partners-card {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(15,23,42,0.18);
  border: 1px solid rgba(226,232,240,0.9);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  margin-top: 22px;
}

/* Logo bubble */
.partner-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto;

  background: #ffffff;
  border-radius: 50%;
  padding: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 14px 30px rgba(15,23,42,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  animation: floatLogo 5s ease-in-out infinite;
}

/* Slight random feel */
.partner-logo:nth-child(odd) {
  animation-duration: 6s;
}
.partner-logo:nth-child(even) {
  animation-duration: 4.5s;
}

/* Image floats freely */
.partner-logo img {
  max-width: 80px;
  max-height: 42px;
  object-fit: contain;
}

/* Hover */
.partner-logo:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 22px 48px rgba(15,23,42,0.22);
}

/* Floating animation */
@keyframes floatLogo {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .partner-logo {
    width: 96px;
    height: 96px;
  }
}

/* ================= ADVISOR NETWORK + ELIGIBILITY (DARK MATCH) ================= */

.advisor-section {
  margin: 40px auto 60px;
}

/* Main dark card – MATCH HERO */
.advisor-card {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 28px;

    background: radial-gradient(
    80% 95% at 50% 0%,
    #94a3b8 0%,
    #0f172a 55%,
    #020617 100%
  );

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;

  box-shadow: 0 30px 70px rgba(15,23,42,0.45);
  color: #e5e7eb;
}

/* LEFT SIDE */
.advisor-title {
  font-size: 30px;
  margin: 6px 0;
  color: #ffffff;
}

.advisor-title span {
  color: #22c55e; /* green accent */
}

.advisor-desc {
  font-size: 15px;
  color: #cbd5f5;
  margin-bottom: 18px;
  max-width: 520px;
}

/* CTA button */
.advisor-btn {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.advisor-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* RIGHT SIDE – ELIGIBILITY (LIGHT CARD ON DARK) */
.advisor-eligibility {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(226,232,240,0.9);
  color: #0f172a;
}

.eligibility-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #16a34a;
  background: #dcfce7;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.advisor-eligibility h3 {
  font-size: 20px;
  margin: 4px 0 12px;
  color: #0f172a;
}

.advisor-eligibility ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advisor-eligibility li {
  font-size: 14px;
  color: #475569;
  padding-left: 22px;
  margin-bottom: 8px;
  position: relative;
}

.advisor-eligibility li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .advisor-card {
    grid-template-columns: 1fr;
  }
}
