/* PAGE BANNER */
.page-banner {
  position: relative;
  height: 320px;
  background: url('../images/hero.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.banner-content {
  position: relative;
  color: white;
}

.banner-content h1 {
  font-size: 52px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #ff6b35;
}

.banner-content p {
  font-size: 18px;
  color: #eee;
}

/* ACTIVE DONATE BTN */
.active-donate {
  background: #F4B400 !important;
  box-shadow: 0 0 0 3px rgba(209, 195, 3, 0.35);
}

/* DONATE SECTION */
.donate-section {
  padding: 80px 80px 90px;
  background: #f5f7fa;
}

.donate-container-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ── FORM TILE ───────────────────────────────────────────── */
.donate-form-tile {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

.tile-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.tile-header i {
  font-size: 40px;
  color: #F4B400;
  margin-bottom: 10px;
  display: block;
}

.tile-header h2 {
  font-size: 26px;
  color: #1d3557;
  margin: 0 0 8px;
}

.tile-header p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* FORM FIELDS */
.donate-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-group > label {
  font-size: 12px;
  font-weight: 700;
  color: #1d3557;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* AMOUNT GRID */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.amount-btn {
  padding: 12px 8px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: #1d3557;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}

.amount-btn:hover {
  border-color: #F4B400;
  color: #F4B400;
}

.amount-btn.selected {
  background: #F4B400;
  border-color: #F4B400;
  color: white;
}

.custom-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid #F4B400;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 4px;
}

.rupee-sign {
  padding: 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: #F4B400;
  background: #fff0ea;
  height: 46px;
  display: flex;
  align-items: center;
}

.custom-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #1d3557;
}

/* TOGGLE GROUP */
.toggle-group {
  display: flex;
  gap: 12px;
}

.toggle-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: #777;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.toggle-btn.active-toggle {
  background: #1d3557;
  border-color: #1d3557;
  color: white;
}

.toggle-btn:hover:not(.active-toggle) {
  border-color: #1d3557;
  color: #1d3557;
}

/* PURPOSE GRID */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.purpose-btn {
  padding: 12px 8px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.purpose-btn i {
  font-size: 18px;
  color: #F4B400;
}

.purpose-btn:hover {
  border-color: #F4B400;
  color: #F4B400;
}

.purpose-btn.selected {
  background: #fff0ea;
  border-color: #F4B400;
  color: #F4B400;
}

/* TEXT INPUTS */
.text-input {
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  color: #333;
  background: #fafafa;
  resize: none;
}

.text-input:focus {
  border-color: #F4B400;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.10);
  background: white;
}

/* METHOD TABS */
.method-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.method-tab {
  flex: 1;
  padding: 11px 8px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #777;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.method-tab.active-method {
  background: #1d3557;
  border-color: #1d3557;
  color: white;
}

.method-tab:hover:not(.active-method) {
  border-color: #1d3557;
  color: #1d3557;
}

/* METHOD PANELS */
.method-panel {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 22px;
  border: 1.5px solid #f0f0f0;
}

.method-panel.hidden {
  display: none;
}

/* UPI PANEL */
.upi-info {
  margin-bottom: 16px;
}

.upi-id-label {
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 8px;
}

.upi-id-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #1d3557;
  margin-bottom: 8px;
}

.copy-btn {
  background: #fff0ea;
  border: none;
  color: #F4B400;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: #F4B400;
  color: white;
}

.upi-note {
  font-size: 12px;
  color: #999;
  margin: 0;
}

/* QR PANEL */
.qr-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.qr-img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  border: 3px solid #F4B400;
  object-fit: contain;
  background: white;
  padding: 6px;
  margin-bottom: 10px;
}

.qr-note {
  font-size: 13px;
  color: #666;
  margin: 0 0 14px;
}

.qr-apps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.qr-apps img {
  height: 26px;
  object-fit: contain;
  opacity: 0.75;
}

/* BANK DETAILS IN PANEL */
.bank-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: white;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

.bank-label {
  font-size: 12px;
  color: #aaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bank-value {
  font-size: 13px;
  color: #1d3557;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy-btn-sm {
  background: none;
  border: none;
  color: #F4B400;
  cursor: pointer;
  font-size: 13px;
  padding: 2px 4px;
  transition: color 0.2s;
}

.copy-btn-sm:hover {
  color: #e85a2a;
}

/* PAY BUTTON */
.pay-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #F4B400, #886402);
  color: white;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

.pay-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,107,53,0.45);
}

.neft-btn {
  background: linear-gradient(135deg, #1d3557, #2a4a7f);
  box-shadow: 0 6px 20px rgba(29,53,87,0.30);
}

.neft-btn:hover {
  box-shadow: 0 10px 28px rgba(29,53,87,0.40);
}

/* DONATE SUCCESS */
.donate-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  gap: 14px;
}

.donate-success i {
  font-size: 64px;
  color: #F4B400;
  animation: heartbeat 1s ease infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

.donate-success h3 {
  font-size: 24px;
  color: #1d3557;
  margin: 0;
}

.donate-success p {
  font-size: 15px;
  color: #777;
  margin: 0;
  max-width: 380px;
  line-height: 1.7;
}

.back-home-btn {
  background: #1d3557;
  color: white;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.3s;
  margin-top: 6px;
}

.back-home-btn:hover {
  background: #F4B400;
}

/* ── RIGHT INFO PANEL ────────────────────────────────────── */
.donate-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: center;
}

.info-icon {
  font-size: 36px;
  color: #F4B400;
  margin-bottom: 12px;
}

.info-card h3 {
  font-size: 18px;
  color: #1d3557;
  margin: 0 0 10px;
}

.info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* IMPACT CARD */
.impact-card {
  background: #1d3557;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.impact-card h3 {
  font-size: 16px;
  color: #F4B400;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.impact-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.impact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 14px;
}

.impact-amount {
  font-size: 14px;
  font-weight: 700;
  color: #F4B400;
}

.impact-desc {
  font-size: 12px;
  color: #ccc;
  text-align: right;
}

/* BANK CARD */
.bank-card {
  background: white;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.bank-card h3 {
  font-size: 16px;
  color: #1d3557;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bank-card h3 i {
  color: #F4B400;
}

.bank-details-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bank-details-info .bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

/* TRUST BADGES */
.trust-card {
  background: #fff8f5;
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #ffe0d0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

.trust-item i {
  color: #F4B400;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .donate-section { padding: 60px 20px; }
  .donate-container-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-content h1 { font-size: 36px; }
  .donate-form-tile { padding: 28px 20px; }
}

/* REQUIRED STAR */
.required {
  color: #F4B400;
  font-size: 14px;
}

.req-note {
  color: #ff6b35;
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* PHONE INPUT */
.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.phone-input-wrap:focus-within {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.10);
  background: white;
}

.phone-prefix {
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #ff6b35;
  background: #fff0ea;
  height: 46px;
  display: flex;
  align-items: center;
  border-right: 1.5px solid #e8e8e8;
  flex-shrink: 0;
}

.phone-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.field-hint {
  font-size: 12px;
  color: #999;
  margin: 2px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-hint i {
  color: #ff6b35;
}

/* SUCCESS SCREEN */
.donate-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
}

.success-top {
  text-align: center;
  padding: 40px 20px 28px;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

.success-heart {
  font-size: 60px;
  color: #F4B400;
  animation: heartbeat 1s ease infinite;
  display: block;
  margin-bottom: 14px;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

.donate-success h3 {
  font-size: 22px;
  color: #1d3557;
  margin: 0 0 10px;
}

.donate-success > .success-top > p {
  font-size: 14px;
  color: #777;
  margin: 0 0 16px;
  line-height: 1.7;
}

/* RECEIPT INFO BOX */
.receipt-info-box {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  color: #444;
  line-height: 1.9;
  text-align: left;
  margin-top: 10px;
  border-left: 4px solid #F4B400;
}

.receipt-info-box strong {
  color: #1d3557;
}

/* UPLOAD SECTION */
.upload-section {
  width: 100%;
  padding: 28px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.upload-label {
  font-size: 14px;
  font-weight: 700;
  color: #1d3557;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.upload-label i {
  color: #F4B400;
}

.upload-sublabel {
  font-size: 13px;
  color: #888;
  margin: 0 0 16px;
}

/* DROP ZONE */
.upload-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed #ddd;
  border-radius: 14px;
  padding: 30px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background: #fafafa;
  text-align: center;
}

.upload-drop-zone:hover {
  border-color: #F4B400;
  background: #fff8f5;
}

.upload-drop-zone i {
  font-size: 36px;
  color: #ccc;
  transition: color 0.3s;
}

.upload-drop-zone:hover i {
  color: #F4B400;
}

.upload-drop-zone span:first-of-type {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.upload-formats {
  font-size: 11px;
  color: #aaa;
}

/* UPLOAD PREVIEW */
.upload-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f5f7fa;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 14px;
  border: 1.5px solid #e0e0e0;
}

.upload-preview img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #F4B400;
  flex-shrink: 0;
}

.preview-info {
  flex: 1;
}

.preview-info p {
  margin: 0 0 4px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

.preview-info p:last-of-type {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
}

.remove-file-btn {
  background: #fee;
  border: none;
  color: #F4B400;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
}

.remove-file-btn:hover {
  background: #F4B400;
  color: white;
}

/* SEND VIA WHATSAPP BUTTON */
.send-receipt-btn {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #25d366;
  color: white;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}

.send-receipt-btn i {
  font-size: 20px;
}

.send-receipt-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.40);
}

.whatsapp-receipt-note {
  font-size: 12px;
  color: #aaa;
  margin: 10px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.6;
}

.whatsapp-receipt-note i {
  color: #F4B400;
  margin-top: 2px;
  flex-shrink: 0;
}

/* BACK HOME BUTTON */
.back-home-btn {
  background: #1d3557;
  color: white;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.3s;
  margin: 24px auto;
}

.back-home-btn:hover {
  background: #ff6b35;
}

/* DROP ZONE ACTIVE STATE */
.upload-drop-zone.drag-over {
  border-color: #ff6b35;
  background: #fff0ea;
}







/* =========================================
   DONATE SUCCESS MOBILE FIX
========================================= */

@media(max-width:900px){

  /* MAIN SECTION */
  .donate-wrapper,
  .donate-container,
  .donation-container,
  .donate-grid{
    display:block !important;
    width:100% !important;
  }

  /* LEFT PANEL */
  .donation-form-container,
  .donate-left{
    width:100% !important;
    max-width:100% !important;
    padding:0 !important;
  }

  /* SUCCESS SCREEN */
  .donate-success{

    width:100% !important;
    max-width:100% !important;

    margin:0 auto !important;

    padding:24px 18px !important;

    border-radius:24px !important;

    box-sizing:border-box;

    overflow:hidden;
  }

  /* TITLE */
  .success-top{
    text-align:center;
  }

  .success-top h3{
    font-size:1.7rem !important;
    line-height:1.3;
  }

  .success-top p{
    font-size:.92rem;
    line-height:1.7;
  }

  .success-heart{
    font-size:3rem !important;
  }

  /* UPLOAD BOX */
  .upload-section{
    width:100%;
    margin-top:26px;
  }

  .upload-drop-zone{
    width:100% !important;

    padding:28px 14px !important;

    text-align:center;

    overflow:hidden;
  }

  #uploadText{
    display:block;
    width:100%;

    word-break:break-word;
  }

  .upload-formats{
    display:block;
    margin-top:10px;
  }

  /* PREVIEW */
  .upload-preview{
    width:100%;

    display:flex;
    flex-direction:column;

    align-items:center;

    gap:16px;
  }

  .upload-preview img{
    width:100%;
    max-width:220px;

    border-radius:18px;
  }

  .preview-info{
    width:100%;
    text-align:center;
  }

  /* BUTTONS */
  .send-receipt-btn,
  .back-home-btn,
  .remove-file-btn{

    width:100% !important;

    justify-content:center;

    text-align:center;

    padding:14px 18px;
  }

  /* WHATSAPP NOTE */
  .whatsapp-receipt-note{
    text-align:center;
    font-size:.82rem;
    line-height:1.6;
  }

  /* RIGHT INFO PANEL */
  .donate-info-panel{
    margin-top:26px;
    width:100%;
  }

}
/* ======================================
   SUCCESS SCREEN MOBILE FINAL FIX
====================================== */

@media(max-width:900px){

  .donate-success{
    width:100% !important;
    max-width:100% !important;

    padding:26px 16px !important;

    margin:0 auto !important;

    box-sizing:border-box;

    overflow:hidden;

    text-align:center !important;
  }

  /* TOP SECTION */
  .success-top{
    width:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center !important;
  }

  .success-top h3{
    width:100%;

    font-size:1.7rem !important;
    line-height:1.3 !important;

    text-align:center !important;

    margin:14px auto !important;
  }

  .success-top p{
    width:100%;

    text-align:center !important;

    font-size:.92rem !important;
    line-height:1.7 !important;

    margin:0 auto 18px !important;
  }

  .success-heart{
    font-size:3rem !important;

    margin:auto;
  }

  /* UPLOAD SECTION */
  .upload-section{
    width:100% !important;

    padding:0 !important;

    margin-top:26px !important;

    text-align:center !important;
  }

  .upload-label,
  .upload-sublabel{
    width:100%;
    text-align:center !important;
  }

  /* DROP ZONE */
  .upload-drop-zone{

    width:100% !important;
    max-width:100% !important;

    padding:24px 14px !important;

    border-radius:20px;

    box-sizing:border-box;

    overflow:hidden;

    text-align:center !important;
  }

  #uploadText{
    display:block;

    width:100%;

    word-break:break-word;

    line-height:1.6;
  }

  .upload-formats{
    display:block;

    margin-top:10px;
  }

  /* BUTTONS */
  .send-receipt-btn,
  .back-home-btn{

    width:100% !important;
    max-width:100% !important;

    display:flex !important;
    align-items:center;
    justify-content:center;

    padding:14px 16px !important;

    text-align:center !important;

    box-sizing:border-box;

    margin-top:14px;
  }

  /* WHATSAPP NOTE */
  .whatsapp-receipt-note{
    width:100%;

    text-align:center !important;

    font-size:.82rem;

    line-height:1.6;

    margin-top:14px;
  }

}



@media(max-width:900px){

  .navbar{
  width:100%;
  padding:16px 18px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  flex-wrap:nowrap;

  position:relative;

  overflow:hidden;
}

.logo-container{
  display:flex;
  align-items:center;
  gap:10px;

  width:auto;

  min-width:0;
}

.logo-container img{
  height:42px;
  width:auto;
}

.logo-container span{
  font-size:.9rem;

  white-space:nowrap;

  overflow:hidden;
  text-overflow:ellipsis;

  max-width:140px;
}

/* DONATE BUTTON */
.donate-container{
  display:flex;
  align-items:center;

  margin-left:auto;

  margin-right:58px;

  flex-shrink:0;
}

.donate-btn{
  padding:10px 18px;

  font-size:.82rem;

  border-radius:40px;

  white-space:nowrap;
}

/* BURGER */
.burger{
  display:flex !important;

  flex-direction:column;

  gap:5px;

  position:absolute;

  right:18px;
  top:50%;

  transform:translateY(-50%);

  background:none;
  border:none;

  cursor:pointer;

  z-index:9999;
}
}

/* =========================================
   REAL MOBILE NAVBAR FIX
========================================= */

@media(max-width:900px){

  /* NAVBAR */

  .navbar{
    padding:14px 16px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    flex-wrap:nowrap !important;

    width:100% !important;

    overflow:hidden !important;
  }

  /* LOGO */

  .logo-container{
    display:flex !important;
    align-items:center !important;

    gap:8px !important;

    flex:none !important;
    width:auto !important;

    min-width:auto !important;
  }

  .logo-container img{
    height:38px !important;
    width:auto !important;
  }

  .logo-container span{
    font-size:.82rem !important;

    white-space:nowrap !important;
  }

  /* HIDE NAV LINKS */

  .nav-links{
    display:none !important;
  }

  /* DONATE BUTTON */

  .donate-container{
    margin-left:auto !important;

    margin-right:54px !important;

    display:flex !important;
    align-items:center !important;
  }

  .donate-btn{
    padding:8px 14px !important;

    font-size:.78rem !important;

    white-space:nowrap !important;
  }

  /* BURGER */

  .burger{
    display:flex !important;

    flex-direction:column !important;

    gap:4px !important;

    position:absolute !important;

    right:16px !important;
    top:50% !important;

    transform:translateY(-50%) !important;

    background:none !important;
    border:none !important;
  }

  .burger span{
    width:22px !important;
    height:2.5px !important;

    background:#fff !important;

    border-radius:10px !important;

    display:block !important;
  }

}





/* ==========================
   DONATE PAGE MOBILE FIX
========================== */

@media (max-width:768px){

.donate-section{
    padding:40px 15px;
}

.donate-container-grid{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.donate-form-tile{
    padding:20px 16px;
}

.amount-grid{
    grid-template-columns:repeat(2,1fr);
}

.purpose-grid{
    grid-template-columns:repeat(2,1fr);
}

.method-tabs{
    flex-direction:column;
}

.toggle-group{
    flex-direction:column;
}

.upi-id-box{
    flex-direction:column;
    gap:12px;
    text-align:center;
}

.bank-row{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
}

.upload-preview{
    flex-direction:column;
    text-align:center;
}

.banner-content h1{
    font-size:34px;
}

.banner-content p{
    font-size:15px;
}

}

/* ======================================
   DONATE PAGE OVERFLOW FIX
====================================== */

@media (max-width:768px){

    *,
    *::before,
    *::after{
        box-sizing:border-box;
    }

    html,
    body{
        width:100%;
        overflow-x:hidden;
    }

    .donate-section,
    .donate-container-grid,
    .donate-form-tile,
    .method-panel,
    .upload-section,
    .donate-info-panel,
    .info-card,
    .bank-card,
    .impact-card,
    .trust-card{
        width:100%;
        max-width:100%;
        overflow:hidden;
    }

    input,
    textarea,
    select,
    button{
        max-width:100%;
    }

}


