.partnership-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  position: relative;
}
.partnership-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(13, 110, 253, 0.05);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
}
.partner-card-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
.partner-img-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  height: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .partner-img-box { min-height: 380px; padding: 40px; }
}
.partner-card-wrapper:hover .partner-img-box {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(13, 110, 253, 0.08);
  border-color: rgba(13, 110, 253, 0.15);
}
.partner-img-box img {
  max-width: 75%;
  max-height: 160px;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter 0.4s ease;
}
.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.partner-card-wrapper:hover .partner-img-box img {
  filter: grayscale(0%);
}
.partner-content-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.partner-card-wrapper:hover .partner-content-box {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--theme-color, #0d6efd);
  transform: translateY(-4px);
}
.partner-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--theme-color, #0d6efd);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
.partner-cta-box {
  background: linear-gradient(135deg, var(--theme-color, #0d6efd) 0%, #084298 100%);
  border-radius: 30px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}
.partner-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  opacity: 0.5;
}
