body{
  font-family:'Poppins',sans-serif;
  background:#f9fafb;
}

/* ================= HERO ================= */
.donate-hero{
  position:relative;
  padding:110px 20px 140px;
  text-align:center;
  color:#fff;

  /* 🔁 CHANGE IMAGE URL HERE */
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.45),        /* light black */
      rgba(231, 111, 45, 0.85)    /* orange */
    ),
    url("/img/picture.jpg") center/cover no-repeat;
}

.donate-hero h1{
  font-family:'Merriweather',serif;
  font-size:50px;
  margin-bottom:12px;
}

.donate-hero p{
  max-width:750px;
  margin:auto;
  font-size:18px;
  opacity:.95;
}

/* ================= GRID ================= */
.donation-grid{
  max-width:1200px;
  margin:-90px auto 70px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  padding:0 20px;
}

/* ================= CARD ================= */
.card{
  background:#fff;
  border-radius:18px;
  padding:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.card h2{
  font-size:22px;
  font-weight:600;
  margin-bottom:10px;
  color:#0f172a;
}

/* ================= IMAGE CARD ================= */
.image-box{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  min-height:300px;
  background:url("/img/donate.gif") center/cover no-repeat;
}

.image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.75),rgba(0,0,0,.25));
  color:#fff;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

/* ================= AMOUNT ================= */
.amount-options button{
  border:2px solid #14b8a6;
  padding:10px 18px;
  border-radius:12px;
  font-weight:500;
  color:#0f766e;
  transition:.3s;
}
.amount-options button:hover{
  background:#e07a2f;
  color:#fff;
}

.amount-input{
  width:100%;
  border:1px solid #ccc;
  padding:12px;
  border-radius:12px;
  margin:16px 0;
}

.toggle button{
  flex:1;
  padding:10px;
  border-radius:12px;
  border:1px solid #ddd;
  transition:.3s;
}
.toggle .active{
  background:#e29a52;
  color:#fff;
  border:none;
}

/* ================= BUTTON ================= */
.primary-btn{
  background:linear-gradient(90deg,#e76f2d,#f4c430);
  color:#fff;
  padding:14px;
  width:100%;
  border-radius:14px;
  font-weight:600;
  margin-top:16px;
  transition:.3s;
  display:block;
  text-align:center;
}
.primary-btn:hover{
  filter:brightness(.95);
}

/* ================= BANK / QR ================= */
.info-switch button{
  flex:1;
  padding:10px;
  border-radius:12px;
  border:1px solid #ddd;
  transition:.3s;
}
.info-switch button:hover{
  background:#e07a2f;
  color:#fff;
}

.qr-box img{
  margin:auto;
}
/* Bank Details */

/* BANK DETAILS CARD */
#bankBox {
  max-width: 520px;
  margin: 25px auto;
  padding: 22px 26px;
  background: linear-gradient(
    135deg,
    rgba(8,110,102,0.12),
    rgba(246,149,53,0.10)
  );
  border-radius: 16px;
  border: 1px solid rgba(8,110,102,0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  font-family: "Poppins", sans-serif;
  animation: fadeSlide 0.8s ease forwards;
}

/* EACH ROW */
#bankBox p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  margin: 0;
  font-size: 15px;
  color: #1f2933;
  border-bottom: 1px dashed rgba(8,110,102,0.25);
}

/* REMOVE LAST BORDER */
#bankBox p:last-child {
  border-bottom: none;
}

/* LABEL STYLE */
#bankBox strong {
  color: #086e66;
  font-weight: 600;
  font-size: 14px;
}

/* VALUE STYLE */
#bankBox span,
#bankBox p {
  font-weight: 500;
}

/* HOVER EFFECT */
#bankBox:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

/* MOBILE RESPONSIVE */
@media (max-width: 480px) {
  #bankBox {
    padding: 18px 20px;
  }

  #bankBox p {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
  }

  #bankBox strong {
    font-size: 13px;
  }
}

/* ENTRY ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
