/* =========================
   PARTNER SECTION
========================= */
.partner {
  text-align: center;
}

/* =========================
   GRID (UPGRADE)
========================= */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}

/* =========================
   CARD (PREMIUM)
========================= */
.partner-card {
  position: relative;
  padding: 30px;
  border-radius: 22px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(0,0,0,0.05);

  text-align: left;

  box-shadow: 0 15px 40px rgba(0,0,0,0.06);

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

/* GLOW EFFECT */
.partner-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(79,172,254,0.2), transparent 70%);
  top: -80px;
  left: -80px;
  opacity: 0;
  transition: 0.4s;
}

/* =========================
   HOVER (WOW EFFECT)
========================= */
.partner-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.partner-card:hover::before {
  opacity: 1;
}

/* =========================
   TITLE
========================= */
.partner-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
}

/* =========================
   TEXT
========================= */
.partner-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =========================
   LINK (INTERACTIVE)
========================= */
.partner-card a {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

/* underline animation */
.partner-card a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.partner-card a:hover::after {
  width: 100%;
}

/* =========================
   HIGHLIGHT CARD
========================= */
.partner-card.highlight {
  border: 2px solid #4facfe;
  background: rgba(79,172,254,0.06);

  transform: scale(1.04);
  box-shadow: 0 25px 70px rgba(79,172,254,0.2);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}