/* ===== DONATION PAGE ===== */
nav a.nav-active { color: var(--saffron); border-bottom: 2px solid var(--saffron); padding-bottom: 2px; }

/* ── HERO ─────────────────────────────────────────── */
.don-hero {
  position: relative;
  min-height: auto;
  height: auto;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5ee 0%, #fffaf5 50%, #f0fff4 100%);
}
.don-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,106,0,.08) 0%, rgba(19,136,8,.06) 100%);
  z-index: 1;
}
.don-hero-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 0;
}
.hero-img-mobile { display: none; }
.don-hero-content {
  display: none !important;
  position: relative;
  z-index: 2;
  padding: 120px 0 60px 0;
  max-width: 600px;
}
.don-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.35);
  color: #ff6b00; font-size: .75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px; margin-bottom: 20px;
}
.don-hero-content h1 {
  font-size: 3rem; font-weight: 900; color: #000000;
  line-height: 1.1; margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.don-hero-content h1 span { color: #ff6b00; }
.don-hero-content > p {
  font-size: 1rem; color:rgb(0 0 0 / 85%);
  max-width: 520px; margin-bottom: 28px; line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.don-breadcrumb {
  display: flex; align-items: center;
  gap: 8px; font-size: .78rem; color: rgb(0 0 0 / 85%);
}
.don-breadcrumb a { color: #ff6b00; font-weight: 600; }
.don-breadcrumb i { font-size: .55rem; }

/* ── DONATE BUTTONS SECTION ───────────────────────── */
.don-section { padding: 70px 0; background: #fff; }
.don-section-head { text-align: center; margin-bottom: 48px; }
.don-section-head h2 { font-size: 1.8rem; font-weight: 800; color: #111827; margin-bottom: 10px; }
.don-section-head p { font-size: .9rem; color: #6b7280; max-width: 480px; margin: 0 auto; line-height: 1.7; }
.don-title-line { display: flex; gap: 5px; justify-content: center; margin-top: 12px; }
.don-title-line span:first-child { display: block; width: 40px; height: 3px; background: #ff6b00; border-radius: 2px; }
.don-title-line span:last-child  { display: block; width: 24px; height: 3px; background: var(--green); border-radius: 2px; }

.don-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.don-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #f0e8e0;
  box-shadow: 0 6px 28px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.don-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,107,0,.14);
  border-color: rgba(255,107,0,.3);
}
.don-card-top {
  padding: 36px 28px 24px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1;
  background: #fff;
}
.don-card-icon {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 20px;
  flex-shrink: 0;
}
.don-card h3 {
  font-size: 1.15rem; font-weight: 800;
  color: #111827; margin-bottom: 12px;
}
.don-card p {
  font-size: .85rem; line-height: 1.75;
  color: #4b5563; margin-bottom: 0;
}
.don-card-footer {
  padding: 20px 28px 28px;
  background: #fff;
}
.don-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 13px 20px; border-radius: 10px;
  font-size: .88rem; font-weight: 700; transition: .25s;
  text-decoration: none; letter-spacing: .3px;
  border: none; cursor: pointer;
}
.don-btn i.arrow { font-size: .75rem; transition: transform .25s; }
.don-btn:hover i.arrow { transform: translateX(4px); }

/* PM CARES — orange */
.don-card--pmcares .don-card-icon { background: rgba(255,107,0,.12); color: #ff6b00; }
.don-card--pmcares .don-btn { background: #ff6b00; color: #fff; box-shadow: 0 6px 20px rgba(255,107,0,.3); }
.don-card--pmcares .don-btn:hover { background: #e05a00; box-shadow: 0 10px 28px rgba(255,107,0,.4); }

/* Bharat Ke Veer — green */
.don-card--bkv .don-card-icon { background: rgba(19,136,8,.1); color: #138808; }
.don-card--bkv .don-btn { background: #138808; color: #fff; box-shadow: 0 6px 20px rgba(19,136,8,.25); }
.don-card--bkv .don-btn:hover { background: #0f6b06; box-shadow: 0 10px 28px rgba(19,136,8,.35); }

/* BJP — orange */
.don-card--bjp .don-card-icon { background: rgba(255,107,0,.12); color: #ff6b00; }
.don-card--bjp .don-btn { background: #ff6b00; color: #fff; box-shadow: 0 6px 20px rgba(255,107,0,.3); }
.don-card--bjp .don-btn:hover { background: #e05a00; box-shadow: 0 10px 28px rgba(255,107,0,.4); }

/* ── SCHEMES SECTION ──────────────────────────────── */
.schemes-section { padding: 70px 0; background: #f8f3ec; }

.schemes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scheme-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border: 1px solid #f0e8e0;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px);
}
.scheme-card.in { opacity: 1; transform: translateY(0); transition: opacity .4s ease, transform .4s ease; }
.scheme-card:nth-child(2) { transition-delay: .07s; }
.scheme-card:nth-child(3) { transition-delay: .14s; }
.scheme-card:nth-child(4) { transition-delay: .07s; }
.scheme-card:nth-child(5) { transition-delay: .14s; }
.scheme-card:nth-child(6) { transition-delay: .21s; }
.scheme-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(255,107,0,.14); }

.scheme-card-img {
  width: 100%; height: 160px; object-fit: cover; display: block;
}
.scheme-card-img-placeholder {
  width: 100%; height: 160px;
  background: linear-gradient(135deg, #fff5ee, #fdf3e8);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: #ff6b00;
}
.scheme-card-body { padding: 18px 18px 14px; flex: 1; }
.scheme-cat {
  display: inline-block;
  background: rgba(255,107,0,.1); color: #ff6b00;
  font-size: .65rem; font-weight: 700; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
  text-transform: uppercase;
}
.scheme-card-body h3 { font-size: .92rem; font-weight: 700; color: #111827; margin-bottom: 8px; line-height: 1.4; }
.scheme-card-body p  { font-size: .78rem; color: #6b7280; line-height: 1.65; }
.scheme-card-footer { padding: 0 18px 18px; }
.scheme-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 7px;
  font-size: .78rem; font-weight: 700;
  background: #ff6b00; color: #fff;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.scheme-btn:hover { background: #e05a00; transform: translateX(3px); }
.scheme-btn i { font-size: .7rem; }

.schemes-empty {
  text-align: center; padding: 60px 20px; color: #aaa;
  grid-column: 1 / -1;
}
.schemes-empty i { font-size: 2.8rem; display: block; margin-bottom: 12px; color: #ddd; }

/* ── SCROLL TOP ───────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px; background: var(--saffron); color: #fff;
  border: none; border-radius: 50%; font-size: 1rem; cursor: pointer;
  opacity: 0; pointer-events: none; transition: .3s; z-index: 999;
  box-shadow: 0 4px 16px rgba(255,106,0,.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media(max-width:992px) {
  .hero-img-desktop { display: none; }
  .hero-img-mobile  { display: block; }
  .don-cards    { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .schemes-grid { grid-template-columns: repeat(2, 1fr); }
  .don-hero-content { padding: 100px 0 50px 0; }
  .don-hero-content h1 { font-size: 2.4rem; }
}
@media(max-width:768px) {
  .don-hero-content { padding: 80px 20px 40px; text-align: center; margin: 0 auto; max-width: 100%; }
  .don-hero { min-height: auto; height: auto; }
}
@media(max-width:640px) {
  nav, .header .btn-primary { display: none; }
  .hamburger { display: block; }
  .don-hero-content h1 { font-size: 1.9rem; }
  .schemes-grid { grid-template-columns: 1fr; }
  .don-cards { max-width: 100%; }
}

/* ── FONT INHERIT ─────────────────────────────────── */
input, select, textarea, button { font-family: 'Poppins', sans-serif; }

/* ── FLOAT UP KEYFRAME ────────────────────────────── */
@keyframes floatUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
