 /* ================= PARTNERSHIPS HERO ================= */
.partner-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  background-image: url("../images/partnerships-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay */
.partner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(15,43,70,0.65),
      rgba(15,43,70,0.55)
    );
  z-index: 1;
}

/* Content */
.partner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #ffffff;
}

/* Pill */
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.partner-pill i {
  font-size: 15px;
}

/* Heading */
.partner-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Paragraph */
.partner-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d7e1eb;
  max-width: 640px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .partner-hero {
    min-height: 480px;
  }

  .partner-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .partner-hero {
    min-height: 440px;
  }

  .partner-hero h1 {
    font-size: 2rem;
  }

  .partner-hero p {
    font-size: 0.95rem;
  }
}

/* ================= SUCCESS STORIES ================= */
.success-stories {
  padding: 90px 0;
  background: #faf8f4;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #212529;
}

.section-header p {
  color: #6b7a8c;
  font-size: 16px;
}

/* Grid */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ 3 per row on desktop */
  gap: 28px;
  margin-top: 50px;
}

/* Card */
.story-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* Card head */
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.card-head h5 {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

/* Badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f4ec;
  color: #2c8a57;
  font-weight: 500;
}

/* Sub */
.card-sub {
  font-size: 14px;
  color: #6b7a8c;
  margin-bottom: 14px;
}

.card-sub i {
  margin-right: 6px;
}

/* List */
.story-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.story-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3c4b5e;
  margin-bottom: 10px;
}

.story-card li i {
  color: #2c8a57;
  font-size: 15px;
  margin-top: 2px;
}

/* Link */
.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #0f2b46;
  text-decoration: none;
}

.learn-link:hover {
  text-decoration: underline;
}

/* Responsive */
/* Tablet */
@media (max-width: 991px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PARTNERSHIP BENEFITS ================= */
.partner-benefits {
  padding: 90px 0;
  background: #faf8f4;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-header p {
  color: #6b7a8c;
  font-size: 16px;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

/* Card */
.benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.benefit-card h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f2b46;
  margin-bottom: 6px;
}

.benefit-card h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #212529;
}

.benefit-card p {
  font-size: 14px;
  color: #6b7a8c;
}

/* ================= CTA ================= */
.partner-cta {
  background: #18355b;
  color: #fff;
  padding: 90px 0;
}

.partner-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.partner-cta p {
  font-size: 16px;
  color: #c9d5e5;
  max-width: 640px;
  margin: 0 auto 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #1f4f82;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}

.cta-btn:hover {
  background: #2566a6;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .partner-benefits,
  .partner-cta {
    padding: 60px 0;
  }
}