*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:Arial,sans-serif;
  background:#f4f8f2;
  color:#222;
  overflow-x:hidden;
  padding-top:165px;
}

/* NAVBAR */

header{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.98);
  backdrop-filter:blur(12px);
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.navbar{
  max-width:1300px;
  margin:auto;
  padding:14px 5.5%;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:40px;
}

.logo img {
  width: 360px;
  height: auto;
  display: block;
}

/* DESKTOP NAVBAR */

.nav-links{
  display:flex;
  gap:38px;
  align-items:center;
  order:1;
  margin-left:34px;
  transition:all 0.3s ease;
}

.nav-links.active{
  position:absolute;
  top:118px;
  right:35px;
  width:220px;
  background:white;
  flex-direction:column;
  gap:8px;
  padding:18px 20px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  border:1px solid rgba(46,125,50,0.08);
  margin-left:0;
}

.nav-links a{
  text-decoration:none;
  color:#1b5e20;
  font-weight:700;
  font-size:18px;
  padding:8px 0;
  transition:all 0.25s ease;
  letter-spacing:0.2px;
  white-space:nowrap;
}

.nav-links.active a{
  font-size:17px;
  padding:12px 16px;
  display:block;
  border-radius:8px;
  transition:all 0.2s ease;
}

.nav-links.active a:hover{
  background:#eef6eb;
}

.nav-links a:hover{
  color:#2e7d32;
}

.menu-toggle{
  display:block;
  order:2;
  margin-left:auto;
  font-size:34px;
  cursor:pointer;
  color:#1b5e20;
  transition:color 0.25s ease;
}

.menu-toggle:hover{
  color:#2e7d32;
}
/* HERO */

.hero-banner {
  width: 100%;
  margin-top: 0;
  background: #eef6eb;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* DONATE BUTTON */

.donate-open-btn{
  margin-top:30px;

  background:#2e7d32;
  color:white;

  border:none;

  padding:15px 30px;

  border-radius:30px;

  cursor:pointer;

  font-size:16px;
  font-weight:bold;

  transition:0.4s;
}

.donate-open-btn:hover{
  background:#1b5e20;
  transform:scale(1.05);
}

/* ANIMATION */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* COMMON */

section{
  padding:52px 7%;
}

.hero-banner + section{
  padding-top:44px;
}

.tight-section{
  padding-top:25px;
  padding-bottom:25px;
}

.top-space{
  padding-top:42px;
  padding-bottom:0;
}

.section-title{
  text-align:center;
  margin-bottom:28px;
}

.section-title h2{
  font-size:42px;
  color:#1b5e20;
}

.green-bg{
  background:#eef6eb;
}

/* ABOUT */

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}

.about-container.single-column{
  grid-template-columns:1fr;
}

/* GLASS CARD */

.glass-card{
  background:rgba(255,255,255,0.6);

  backdrop-filter:blur(12px);

  border-radius:20px;

  padding:34px;

  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.glass-card h3{
  margin-bottom:16px;
  color:#1b5e20;
}

.glass-card p{
  line-height:1.8;
  margin-bottom:12px;
  text-align: justify;
}

/* CARD GRID */
.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
  gap:28px;
  align-items:stretch;
}
/* Event card cover image styling */
.event-cover{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:15px 15px 0 0;
  display:block;
}

/* Event card look */
.event-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:white;
  border-radius:15px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  overflow:hidden;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 40px rgba(0,0,0,0.12);
}
.event-card .meta{ color:#386232; font-weight:700; margin:12px 0; }
.event-card .summary{ color:#4a5b36; line-height:1.6; text-align: justify; }
.event-card .btn{ margin:18px 20px 24px; background:#2e7d32; color:white; border:none; padding:12px 22px; border-radius:30px; cursor:pointer; }


/* CARDS */

/* PROFESSIONAL NGO INFO CARDS */

.info-card,
.impact-card{
  background:#ffffff;
  border-radius:24px;
  padding:32px 28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s ease;
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:18px;
}

a.info-card{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
}

.info-card:hover,
.impact-card:hover,
a.info-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.info-card h3{
  color:#1b5e20;
  font-size:24px;
  line-height:1.5;
  margin:0;
  font-weight:700;
  letter-spacing:0.2px;
}
.info-card p,
.summary-card p{
  text-align:left;
  line-height:1.8;
  color:#555;
  font-size:15px;
  margin:0;
}

.event-page{
  padding:78px 7% 54px;
}

.event-banner{
  background:white;
  border-radius:28px;
  padding:44px;
  margin-bottom:24px;
  box-shadow:0 18px 36px rgba(0,0,0,0.08);
}

.event-banner-text{
  max-width:860px;
}

.event-tag{
  display:inline-block;
  background:#2e7d32;
  color:white;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  letter-spacing:0.6px;
  margin-bottom:14px;
}

.event-meta{
  color:#386232;
  font-weight:700;
  margin:12px 0;
}

.event-description{
  line-height:1.8;
  color:#3c4f30;
  font-size:18px;
  text-align: justify;
}

.section-card{
  background:white;
  border-radius:25px;
  padding:36px;
  box-shadow:0 18px 36px rgba(0,0,0,0.06);
  margin:24px 0;
}

.event-summary{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.summary-card{
  background:#eef6eb;
  border:1px solid rgba(46,125,50,0.12);
  border-radius:20px;
  padding:25px;
}

.summary-card h3{
  color:#1b5e20;
  margin-bottom:12px;
}





@media(max-width:900px){
  .event-page{
    padding:64px 5% 44px;
  }

  .event-banner{
    padding:32px;
  }
}

@media(max-width:650px){
  .hero-content h1{
    font-size:44px;
  }

  .gallery-grid img{
    height:220px;
  }
}

.impact-card h2{
  color:#2e7d32;
  font-size:40px;
  margin-bottom:15px;
}

/* CARD IMAGE */

.card-image{
  width:100%;
  height:180px;

  object-fit:cover;

  border-radius:15px;

  margin-bottom:20px;
}

/* CONTACT */

.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.about-contact-section{
  padding:5px 7% 64px;
  background:#eef6eb;
}

.about-contact-section .section-title{
  margin-bottom:24px;
}

.about-contact-section .section-title h2{
  font-size:34px;
}

.about-contact-container{
  max-width:1100px;
  margin:0 auto;
  gap:28px;
}

.about-contact-card{
  padding:18px;
  border-radius:16px;
}

.about-contact-card .card-image{
  height:95px;
  margin-bottom:10px;
}

.about-contact-card h3{
  margin-bottom:12px;
}

.about-contact-card p{
  font-size:14px;
  line-height:1.55;
  margin-bottom:8px;
}

.about-contact-card.contact-form input,
.about-contact-card.contact-form textarea{
  margin-bottom:10px;
  padding:11px 13px;
  font-size:14px;
}

.about-contact-card.contact-form textarea{
  height:80px;
}

.about-contact-card.contact-form button{
  padding:12px;
}

.contact-form{
  display:flex;
  flex-direction:column;
}

.contact-form input,
.contact-form textarea,
.donation-box input,
.donation-box textarea,
.donation-box select{
  margin-bottom:20px;

  padding:15px;

  border:none;

  border-radius:10px;

  background:#f5f5f5;

  font-size:15px;
}

.contact-form button,
.donation-box button{
  padding:15px;

  border:none;

  background:#2e7d32;

  color:white;

  border-radius:30px;

  font-weight:bold;

  cursor:pointer;

  transition:0.4s;
}

.contact-form button:hover,
.donation-box button:hover{
  background:#1b5e20;
}

/* DONATION MODAL */
/* REPLACE OLD DONATION CSS WITH THIS */

/* DONATION MODAL */

.donation-modal{

  position:fixed;

  top:0;
  left:0;

  width:100%;
  height:100vh;

  background:rgba(0,0,0,0.65);

  backdrop-filter:blur(6px);

  display:none;

  justify-content:center;
  align-items:center;

  z-index:99999;

  padding:20px;

}

/* DONATION BOX */

.donation-box{

  width:100%;
  max-width:720px;

  background:white;

  border-radius:30px;

  padding:50px;

  position:relative;

  animation:popup 0.4s ease;

  box-shadow:0 15px 40px rgba(0,0,0,0.2);

}

/* HEADER */

.donation-header{

  text-align:center;

  margin-bottom:35px;

}

.donation-header h2{

  color:#1b5e20;

  font-size:42px;

  margin-bottom:10px;

}

.donation-header p{

  color:#666;

  line-height:1.7;

  font-size:16px;

}

/* CLOSE BUTTON */

.close-btn{

  position:absolute;

  top:20px;
  right:25px;

  font-size:40px;

  color:#222;

  cursor:pointer;

  transition:0.3s;

}

.close-btn:hover{

  color:#2e7d32;

  transform:rotate(90deg);

}

/* FORM */

.donation-form{

  display:flex;

  flex-direction:column;

  gap:22px;

}

/* ROW */

.form-row{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:20px;

}

/* INPUT GROUP */

.input-group{

  display:flex;

  flex-direction:column;

}

.input-group label{

  margin-bottom:10px;

  font-weight:600;

  color:#1b5e20;

}

/* INPUTS */

.input-group input,
.input-group select,
.input-group textarea{

  width:100%;

  padding:16px 18px;

  border:none;

  border-radius:15px;

  background:#f4f4f4;

  font-size:15px;

  transition:0.3s;

  outline:none;

}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

  background:#eef6eb;

  box-shadow:0 0 0 2px #8bc34a;

}

/* BUTTON */

.donation-submit-btn{

  margin-top:10px;

  background:linear-gradient(135deg,#43a047,#1b5e20);

  color:white;

  border:none;

  padding:18px;

  border-radius:50px;

  font-size:18px;

  font-weight:bold;

  cursor:pointer;

  transition:0.4s;

  box-shadow:0 8px 20px rgba(67,160,71,0.3);

}

.donation-submit-btn:hover{

  transform:translateY(-3px);

  box-shadow:0 12px 25px rgba(67,160,71,0.4);

}

/* POPUP ANIMATION */

@keyframes popup{

  from{

    opacity:0;
    transform:scale(0.8);

  }

  to{

    opacity:1;
    transform:scale(1);

  }

}


/* FOOTER */

footer{
  background:#1b5e20;
  color:white;
  text-align:center;
  padding:25px;
}

/* RESPONSIVE */
@media(max-width:768px){

  section{
    padding:42px 5%;
  }

  .hero-banner + section{
    padding-top:36px;
  }

  .navbar{
    padding:18px 5%;
  }

  .logo img{
    width:320px;
    height:auto;
    max-width:78vw;
  }

  /* smaller header on small screens */
  body{
    padding-top:150px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:112px;
    right:20px;
    width:220px;
    background:white;
    flex-direction:column;
    padding:20px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    display:none;
    gap:18px;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    font-size:20px;
    font-weight:bold;
    padding:8px 0;
  }
}

@media(max-width:600px){

  section{
    padding:34px 5%;
  }

  .hero-content h1{
    font-size:35px;
  }

  .hero-content p{
    font-size:18px;
  }

  .section-title h2{
    font-size:30px;
  }

  .section-title{
    margin-bottom:22px;
  }

  .donation-box{
    padding:25px;
  }

  .navbar{
    padding:18px 5%;
  }

  .logo{
    font-size:20px;
  }

  .about-container,
  .contact-container{
    grid-template-columns:1fr;
  }

  .about-contact-section{
    padding:38px 5% 46px;
  }

  .about-contact-card{
    padding:22px;
  }

}

/* TOP SPACE */

.top-space{
  min-height:100vh;
  padding-top:42px;
}

/* CARD IMAGE */

.card-image{
  width:100%;
  height:220px;

  object-fit:cover;

  border-radius:15px;

  margin-bottom:20px;
}

/* FOOTER ALWAYS BOTTOM */

.bottom-footer{
  margin-top:auto;
}

/* Event card styles (used on program pages) */

.event-card,
.event-card img{
  display:block;
}

.event-card{
  background:white;
  border-radius:24px;
  overflow:hidden;
  text-align:left;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:0.4s ease;
  position:relative;
}

.event-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 50px rgba(0,0,0,0.15);
}

.event-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:0.4s ease;
}

.event-card:hover img{
  transform:scale(1.05);
}

.event-card-content{
  padding:24px;
}

.event-card .meta{
  color:#1f5f2e;
  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
}

.event-card .summary{
  color:#555;
  line-height:1.7;
  font-size:15px;
  margin-bottom:18px;
}

.event-card .btn{
  display:inline-block;
  background:#2e7d32;
  color:white;
  padding:12px 22px;
  border-radius:999px;
  text-decoration:none;
  border:none;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

.event-card .btn:hover{
  background:#1b5e20;
  transform:scale(1.05);
}

/* Breadcrumb */

.breadcrumb{
  margin:14px 0 22px 0;
  color:#666;
  font-size:15px;
  font-weight:500;
}

.breadcrumb a{
  color:#2e7d32;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.breadcrumb a:hover{
  color:#1b5e20;
}

/* MOBILE */

@media(max-width:768px){

  .event-card img{
    height:220px;
  }

  .event-card-content{
    padding:18px;
  }

  .event-card .meta{
    font-size:16px;
  }

  .event-card .summary{
    font-size:14px;
  }

  .event-card .btn{
    width:100%;
    text-align:center;
  }

  .breadcrumb{
    font-size:13px;
  }
}


/* =========================================
   NGO PROFESSIONAL PHOTO & VIDEO GALLERY
========================================= */

.cover-box{
  width:100%;
  margin-top:14px;
}

.cover-box img{
  width:100%;
  height:650px;
  object-fit:cover;
  border-radius:24px;
  display:block;
  box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* PHOTO GRID */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,500px));
  justify-content:center;
  gap:24px;
  width:100%;
}

.gallery-item{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  transition:0.4s ease;
}

.gallery-item:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.14);
}

.gallery-item{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  transition:0.4s ease;
  max-width:500px;
  margin:auto;
  width:100%;
}

.gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transition:0.5s ease;
}

.gallery-caption{
  display: none !important;
}



/* VIDEO GRID */

.video-grid,
.video-box{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
  gap:24px;
  width:100%;
}

.video-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  padding:14px;
}

.video-card video,
.video-box video{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:18px;
  background:#000;
  display:block;
}

/* SECTION STYLE */

.section-card{
  background:#fff;
  border-radius:30px;
  padding:38px;
  margin:26px 0;
  box-shadow:0 15px 45px rgba(0,0,0,0.06);
}

/* MOBILE */

@media(max-width:768px){

  .cover-box img{
    height:300px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .gallery-item img{
    height:240px;
  }

  .video-grid,
  .video-box{
    grid-template-columns:1fr;
  }

  .video-card video,
  .video-box video{
    height:240px;
  }

  .section-card{
    padding:22px;
  }

}

/* QR Donation Modal Styles */
.qr-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.qr-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  text-align: center;
  animation: slideDown 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 90vh;
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.qr-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: 0.2s ease;
}

.qr-close-btn:hover {
  color: #1b5e20;
  transform: scale(1.1);
}

.qr-image-container {
  margin: 20px 0;
}

.qr-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.bank-details {
  background: #f1f8e9;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #c5e1a5;
  color: #333;
}

.bank-details h4 {
  color: #1b5e20;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.2rem;
}

.bank-details p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

.bank-details strong {
  color: #2e7d32;
}

/* 80G Certificate Button */
.btn-80g-certificate {
  display: block;
  width: 100%;
  margin-top: 25px;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.25);
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  flex-shrink: 0;
}

.btn-80g-certificate:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.35);
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

/* 80G Form Modal */
.modal-80g {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.modal-80g-content {
  background-color: #fff;
  margin: 3% auto;
  padding: 45px;
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: slideUp 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-80g-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: 0.2s ease;
}

.close-80g-btn:hover {
  color: #2e7d32;
  transform: scale(1.15) rotate(90deg);
}

.modal-80g-content > h2 {
  color: #1b5e20;
  font-size: 32px;
  margin-bottom: 8px;
  text-align: center;
}

.form-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 30px;
  font-size: 15px;
}

/* Form Styles */
.form-80g {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-section {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #2e7d32;
}

.form-section h3 {
  color: #1b5e20;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.form-row:last-child {
  margin-bottom: 0;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #1b5e20;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-family: Arial, sans-serif;
  transition: 0.3s ease;
  outline: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #2e7d32;
  background: #f0f8f0;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.input-group textarea {
  resize: vertical;
  min-height: 80px;
}

.file-help {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  font-style: italic;
}

/* Checkbox Styles */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 25px;
  padding: 15px;
  background: #f0f8f0;
  border-radius: 10px;
  border: 1px solid #c5e1a5;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #2e7d32;
  flex-shrink: 0;
}

.form-checkbox label {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.5;
}

/* Submit Button */
.btn-submit-80g {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit-80g:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.4);
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

.btn-submit-80g:active {
  transform: translateY(0);
}

/* Success Message Styles */
.success-message-80g {
  text-align: center;
  padding: 40px 20px;
  animation: slideUp 0.4s ease;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-message-80g h3 {
  color: #1b5e20;
  font-size: 24px;
  margin-bottom: 12px;
}

.success-message-80g p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn-close-success {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-close-success:hover {
  background: #1b5e20;
  transform: scale(1.05);
}

/* Reduce navbar padding for less white space */
.hero-banner {
  margin-top: -10px;
}

/* ========================================
   MODERN DONATION SECTION STYLES
======================================== */

.donation-section {
  padding: 58px 7% !important;
}

.donation-section .section-title {
  margin-bottom: 40px;
}

.donation-section .section-title h2 {
  font-size: 42px;
  color: #1b5e20;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Two Column Layout Container */
.donation-layout-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* LEFT SIDE: QR PAYMENT CARD */
.donation-qr-column {
  display: flex;
  justify-content: center;
}

.donation-qr-card {
  background: white;
  border-radius: 28px;
  padding: 30px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(46, 125, 50, 0.08);
  transition: 0.4s ease;
  width: 100%;
  max-width: 420px;
}

.donation-qr-card:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(46, 125, 50, 0.15);
  transform: translateY(-4px);
}

/* QR Image Wrapper - Fix for full display */
.qr-image-wrapper {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border: 2px solid #f0f0f0;
}

.donation-qr-image {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* Payment Methods Icons */
.payment-methods {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.payment-icon {
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
  transition: 0.3s ease;
}

.payment-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3);
}

/* Right Side: Bank Details Card */
.donation-bank-column {
  display: flex;
  justify-content: center;
}

.donation-bank-card {
  background: white;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(46, 125, 50, 0.08);
  width: 100%;
  transition: 0.4s ease;
}

.donation-bank-card:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(46, 125, 50, 0.15);
  transform: translateY(-4px);
}

/* Bank Information */
.bank-info {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid #f0f0f0;
}

.bank-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.bank-detail-row:last-child {
  border-bottom: none;
}

.bank-detail-label {
  font-weight: 700;
  color: #1b5e20;
  font-size: 14px;
  min-width: 120px;
}

.bank-detail-value {
  color: #333;
  font-size: 14px;
  text-align: right;
  font-family: 'Courier New', monospace;
}

/* Cheque/DD Section */
.cheque-dd-section {
  background: #fafafa;
  border-radius: 16px;
  padding: 20px;
  border-left: 4px solid #2e7d32;
}

.cheque-dd-section h4 {
  color: #1b5e20;
  margin-bottom: 12px;
}

.cheque-dd-section p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.cheque-dd-section strong {
  color: #1b5e20;
  font-weight: 700;
}

/* Donation Buttons */
.btn-donation-80g,
.btn-donation-cheque-80g {
  width: 100%;
  margin-top: 24px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.btn-donation-80g:hover,
.btn-donation-cheque-80g:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(46, 125, 50, 0.35);
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

.btn-donation-80g:active,
.btn-donation-cheque-80g:active {
  transform: translateY(0);
}

/* Mobile responsive - donation section */
@media(max-width: 1024px) {
  .donation-layout-container {
    gap: 28px;
  }

  .donation-qr-card,
  .donation-bank-card {
    padding: 28px;
  }

  .donation-section {
    padding: 48px 7% !important;
  }
}

@media(max-width: 768px) {
  .donation-layout-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .donation-section {
    padding: 34px 5% !important;
  }

  .donation-section .section-title {
    margin-bottom: 28px;
  }

  .donation-section .section-title h2 {
    font-size: 32px;
  }

  .donation-qr-card,
  .donation-bank-card {
    padding: 24px;
  }

  .qr-image-wrapper {
    min-height: 240px;
    padding: 15px;
  }

  .donation-qr-image {
    max-height: 300px;
  }

  .payment-methods {
    gap: 8px;
    margin: 15px 0;
  }

  .payment-icon {
    padding: 7px 12px;
    font-size: 11px;
  }

  .btn-donation-80g,
  .btn-donation-cheque-80g {
    margin-top: 18px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .bank-detail-label {
    min-width: 110px;
    font-size: 13px;
  }

  .bank-detail-value {
    font-size: 13px;
  }

  .cheque-dd-section {
    padding: 16px;
  }

  .cheque-dd-section h4 {
    font-size: 14px;
  }

  .cheque-dd-section p {
    font-size: 13px;
  }
}

@media(max-width: 480px) {
  .donation-layout-container {
    gap: 15px;
  }

  .donation-section {
    padding: 26px 4% !important;
  }

  .donation-section .section-title h2 {
    font-size: 26px;
  }

  .donation-section .section-title p {
    font-size: 0.95rem;
  }

  .donation-qr-card,
  .donation-bank-card {
    padding: 18px;
  }

  .qr-image-wrapper {
    min-height: 200px;
    padding: 10px;
  }

  .donation-qr-image {
    max-height: 250px;
  }

  .btn-donation-80g,
  .btn-donation-cheque-80g {
    padding: 11px 16px;
    font-size: 13px;
  }

  .bank-detail-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
  }

  .bank-detail-value {
    text-align: left;
    margin-top: 4px;
  }
}

/* Mobile responsive - form grid to single column */
@media(max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .modal-80g-content {
    padding: 25px;
    margin-top: 10%;
  }

  .modal-80g-content > h2 {
    font-size: 24px;
  }

  .form-section {
    padding: 18px;
  }

  .form-section h3 {
    font-size: 16px;
  }

  /* QR Modal Responsive */
  .qr-modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }

  .btn-80g-certificate {
    margin-top: 15px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .qr-image-container img {
    max-width: 100%;
    height: auto;
  }

  .bank-details {
    padding: 15px;
  }

  .bank-details h4 {
    font-size: 1rem;
  }

  .bank-details p {
    font-size: 14px;
  }
}
