:root{
  --primary:#0b2e4a;
  --secondary:#14532d;
  --accent:#f4b400;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#f7f8fa;
  --white:#ffffff;
  --soft:#eef3f0;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  width:100%;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(12px);
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  padding:16px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 4px 25px rgba(0,0,0,0.05);
}

.logo-area{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:58px;
}

.logo-area h1{
  font-size:16px;
  color:var(--primary);
}

.logo-area p{
  font-size:12px;
  color:var(--muted);
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:24px;
  cursor:pointer;
  color:var(--primary);
}

nav{
  display:flex;
  align-items:center;
  gap:24px;
}

nav a{
  text-decoration:none;
  color:var(--text);
  font-size:14px;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

nav a:hover{
  color:var(--secondary);
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:0.3s ease;
}

nav a:hover::after{
  width:100%;
}

.nav-donate{
  background:var(--accent);
  padding:10px 18px;
  border-radius:12px;
  color:#111 !important;
  font-weight:600;
}

.nav-donate::after{
  display:none;
}

.dropdown{
  position:relative;
}

.dropdown-content{
  display:none;
  position:absolute;
  top:35px;
  background:white;
  min-width:240px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  border-radius:18px;
  overflow:hidden;
}

.dropdown-content a{
  display:block;
  padding:14px 18px;
  border-bottom:1px solid #f1f1f1;
}

.dropdown-content a:hover{
  background:#fff7df;
}

.dropdown:hover .dropdown-content{
  display:block;
}

.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,rgba(255,255,255,0.06),transparent 60%);
  z-index:1;
}

.slides,
.slide{
  position:absolute;
  inset:0;
}

.slide{
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.5s ease;
}

.slide.active{
  opacity:1;
  animation:zoom 9s ease forwards;
}

@keyframes zoom{
  from{transform:scale(1);}
  to{transform:scale(1.08);}
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:140px 20px 80px;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.55) 65%,
    rgba(0,0,0,0.78) 100%
  );
  overflow:hidden;
}

.hero-badge{
  color:#ffd45a;
  border:1px solid rgba(255,255,255,0.25);
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(8px);
  padding:10px 18px;
  border-radius:50px;
  margin-bottom:22px;
  font-size:13px;
  letter-spacing:0.4px;
  animation:fadeDown 1s ease;
}

.hero-content h2{
  font-size:64px;
  max-width:980px;
  line-height:1.08;
  margin-bottom:24px;
  color:white;
  text-shadow:0 8px 30px rgba(0,0,0,0.45);
  animation:fadeUp 1s ease;
}

.hero-content p{
  max-width:760px;
  font-size:18px;
  line-height:1.9;
  color:rgba(255,255,255,0.92);
  margin-bottom:32px;
  text-shadow:0 4px 18px rgba(0,0,0,0.35);
  animation:fadeUp 1.2s ease;
}

.hero-buttons{
  animation:fadeUp 1.4s ease;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeDown{
  from{
    opacity:0;
    transform:translateY(-40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

.btn,
.btn-light{
  display:inline-block;
  padding:14px 28px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  margin:5px;
  transition:0.35s ease;
}

.btn{
  background:var(--accent);
  color:#111;
  border:none;
  cursor:pointer;
}

.btn-light{
  border:2px solid white;
  color:white;
}

.btn:hover,
.btn-light:hover{
  transform:translateY(-4px);
}

.section-label{
  display:inline-block;
  color:var(--secondary);
  background:#eef7f0;
  padding:8px 16px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
}

.gold{
  background:#fff1c7;
  color:#111;
}

section{
  padding:100px 0;
}

.section-head{
  text-align:center;
  margin-bottom:50px;
}

.section-head h2{
  font-size:42px;
  color:var(--primary);
  margin-bottom:14px;
}

.section-head p{
  color:var(--muted);
  max-width:760px;
  margin:auto;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:30px;
  transition:0.5s ease;
}

.about-image img:hover{
  transform:scale(1.03);
}

.about-text h2{
  font-size:44px;
  line-height:1.25;
  color:var(--primary);
  margin-bottom:18px;
}

.about-text p{
  color:var(--muted);
  margin-bottom:14px;
}

.text-link{
  text-decoration:none;
  color:var(--secondary);
  font-weight:600;
}

.text-link i{
  margin-left:8px;
}

.impact-section{
  background:white;
  text-align:center;
}

.impact-section h2{
  font-size:42px;
  color:var(--primary);
  margin-bottom:50px;
}

.impact-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.impact-item{
  background:#f9fafb;
  padding:40px 25px;
  border-radius:24px;
  transition:0.4s ease;
}

.impact-item h3{
  font-size:48px;
  color:var(--secondary);
}

.impact-item p{
  color:var(--muted);
}

.programs-section{
  background:var(--soft);
  text-align:center;
}

.programs-section h2{
  font-size:42px;
  color:var(--primary);
  margin-bottom:50px;
}

.program-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.program-card{
  background:white;
  padding:35px 28px;
  border-radius:28px;
  text-align:left;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.program-card i{
  width:65px;
  height:65px;
  background:#fff4d8;
  border-radius:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:var(--primary);
  font-size:28px;
  margin-bottom:22px;
}

.program-card h3{
  color:var(--primary);
  margin-bottom:12px;
}

.program-card p{
  color:var(--muted);
  font-size:14px;
}

.projects-section{
  background:white;
}

.project-card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.project-card{
  background:white;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:0.45s ease;
}

.project-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.project-card-content{
  padding:28px;
}

.project-card-content span{
  color:var(--secondary);
  font-size:13px;
  font-weight:600;
}

.project-card-content h3{
  color:var(--primary);
  margin:12px 0;
  font-size:28px;
}

.project-card-content p{
  color:var(--muted);
  margin-bottom:20px;
}

.project-btn{
  border:none;
  background:var(--primary);
  color:white;
  padding:12px 20px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
}

.testimonials-section{
  background:linear-gradient(135deg,#0b2e4a,#061b2c);
  color:white;
  text-align:center;
}

.testimonials-section h2{
  font-size:42px;
  margin-bottom:40px;
}

.testimonial-slider{
  position:relative;
  max-width:900px;
  margin:auto;
  min-height:300px;
}

.testimonial{
  position:absolute;
  inset:0;
  opacity:0;
  transition:1s ease;
  transform:translateY(30px);
}

.testimonial.active{
  opacity:1;
  transform:translateY(0);
}

.testimonial p{
  font-size:22px;
  line-height:1.8;
  margin-bottom:18px;
}

.testimonial h4{
  color:#ffd45a;
}

.upcoming-section{
  background:#fff;
  text-align:center;
}

.upcoming-section h2{
  font-size:42px;
  color:var(--primary);
  margin-bottom:50px;
}

.upcoming-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.upcoming-card{
  min-height:320px;
  border-radius:30px;
  padding:35px;
  text-align:left;
  position:relative;
  overflow:hidden;
  color:white;
  box-shadow:0 14px 35px rgba(0,0,0,0.15);
}

.upcoming-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.3);
}

.upcoming-card *{
  position:relative;
  z-index:2;
}

.pad{
  background:linear-gradient(135deg,#8b1e3f,#f4b400);
}

.school{
  background:linear-gradient(135deg,#0b2e4a,#2e8b57);
}

.senior{
  background:linear-gradient(135deg,#14532d,#f4b400);
}

.upcoming-card span{
  display:inline-block;
  background:rgba(255,255,255,0.2);
  padding:7px 14px;
  border-radius:30px;
  margin-bottom:22px;
}

.upcoming-card h3{
  font-size:28px;
  margin-bottom:14px;
}

.upcoming-card p{
  margin-bottom:24px;
}

.upcoming-card a{
  background:white;
  color:#111;
  text-decoration:none;
  padding:12px 18px;
  border-radius:12px;
  display:inline-block;
  font-weight:600;
}

.team-section{
  background:white;
  text-align:center;
}

.team-section h2{
  font-size:42px;
  color:var(--primary);
  margin-bottom:50px;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.team-card{
  background:#f9fafb;
  padding:18px;
  border-radius:24px;
  text-align:left;
}

.team-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:15px;
}

.team-card h3{
  font-size:16px;
  color:var(--primary);
}

.team-card p{
  color:var(--secondary);
  font-weight:600;
  font-size:14px;
}

.volunteer-section{
  background:linear-gradient(135deg,#f8fafc,#eef3f0);
}

.volunteer-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.volunteer-text h2{
  font-size:42px;
  color:var(--primary);
  margin-bottom:18px;
}

.volunteer-text p{
  color:var(--muted);
}

.volunteer-form{
  background:white;
  padding:35px;
  border-radius:30px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea{
  width:100%;
  padding:16px;
  border:1px solid #d1d5db;
  border-radius:14px;
  outline:none;
  transition:0.3s ease;
}

.volunteer-form input:focus,
.volunteer-form select:focus,
.volunteer-form textarea:focus{
  border-color:var(--secondary);
  box-shadow:0 0 0 4px rgba(20,83,45,0.08);
}

.form-note{
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

.donate-section{
  text-align:center;
  background:linear-gradient(135deg,var(--accent),#ffe49a);
}

.donate-section h2{
  font-size:44px;
  margin-bottom:14px;
}

.donate-section p{
  max-width:760px;
  margin:0 auto 25px;
}

footer{
  background:#081827;
  color:white;
}

.footer-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  padding:80px 0 45px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1.3fr 1.2fr;
  gap:40px;
}

.footer-col h3{
  color:var(--accent);
  margin-bottom:20px;
}

.footer-col p,
.footer-col a{
  color:rgba(255,255,255,0.78);
  font-size:14px;
  line-height:1.8;
}

.footer-col a{
  display:block;
  text-decoration:none;
  margin-bottom:8px;
}

.footer-col a:hover{
  color:var(--accent);
}

.newsletter{
  display:flex;
  margin-top:16px;
}

.newsletter input{
  flex:1;
  padding:12px;
  border:none;
  outline:none;
  border-radius:8px 0 0 8px;
}

.newsletter button{
  padding:12px 16px;
  border:none;
  background:var(--accent);
  font-weight:700;
  border-radius:0 8px 8px 0;
}

.footer-socials{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.footer-socials a{
  width:40px;
  height:40px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  text-decoration:none;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  padding:18px;
  color:rgba(255,255,255,0.65);
}

.floating-whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  width:58px;
  height:58px;
  background:#25D366;
  color:white;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  font-size:28px;
  z-index:2000;
  box-shadow:0 8px 22px rgba(0,0,0,0.25);
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.08);}
  100%{transform:scale(1);}
}

.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:3000;
  padding:20px;
}

.modal.active{
  display:flex;
}

.modal-content{
  background:white;
  width:100%;
  max-width:1100px;
  max-height:90vh;
  overflow-y:auto;
  border-radius:28px;
  padding:35px;
  position:relative;
  animation:modalFade 0.4s ease;
}

@keyframes modalFade{
  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

.close-modal{
  position:absolute;
  right:20px;
  top:20px;
  background:none;
  border:none;
  font-size:34px;
  cursor:pointer;
}

.modal-content h2{
  color:var(--primary);
  margin-bottom:12px;
}

.modal-content p{
  color:var(--muted);
  margin-bottom:30px;
}

.modal-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.modal-gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:18px;
}

.modal-media{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.modal-media img,
.modal-media video{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:20px;
}

.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

.interactive-card{
  transition:0.4s ease;
  cursor:pointer;
}

.interactive-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.clicked{
  animation:clickPop 0.25s ease;
}

@keyframes clickPop{
  0%{transform:scale(1);}
  50%{transform:scale(0.96);}
  100%{transform:scale(1);}
}

@media(max-width:1000px){
  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    padding:25px;
    display:none;
  }

  nav.active{
    display:flex;
  }

  .dropdown-content{
    position:static;
    display:none;
    box-shadow:none;
    margin-top:10px;
  }

  .dropdown:hover .dropdown-content{
    display:block;
  }

  .about-grid,
  .volunteer-container,
  .modal-media{
    grid-template-columns:1fr;
  }

  .impact-grid,
  .program-grid,
  .upcoming-grid,
  .project-card-grid{
    grid-template-columns:1fr 1fr;
  }

  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-container{
    grid-template-columns:1fr 1fr;
  }

  .hero-content h2{
    font-size:44px;
    line-height:1.15;
  }

  .hero-content{
    padding:120px 18px 70px;
  }
}

@media(max-width:700px){
  section{
    padding:70px 0;
  }

  .hero{
    height:92vh;
  }

  .hero-content{
    padding:110px 18px 60px;
  }

  .hero-content h2{
    font-size:32px;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.8;
  }

  .hero-badge{
    font-size:11px;
  }

  .impact-grid,
  .program-grid,
  .upcoming-grid,
  .project-card-grid,
  .team-grid,
  .footer-container,
  .modal-gallery{
    grid-template-columns:1fr;
  }

  .about-image img,
  .project-card img,
  .modal-gallery img,
  .modal-media img,
  .modal-media video{
    height:260px;
  }

  .testimonial-slider{
    min-height:430px;
  }

  .testimonial p{
    font-size:17px;
  }

  .team-card img{
    height:280px;
  }

  .newsletter{
    flex-direction:column;
    gap:10px;
  }

  .newsletter input,
  .newsletter button{
    border-radius:8px;
  }

  .footer-container{
    gap:25px;
  }

  header{
    padding:14px 18px;
  }

  .logo{
    width:50px;
  }

  .logo-area h1{
    font-size:14px;
  }

  .logo-area p{
    font-size:11px;
  }

  .floating-whatsapp{
    width:52px;
    height:52px;
  }
}.hero-inner{
  width:100%;
  max-width:980px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.hero-content{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-content h2,
.hero-content p{
  text-align:center;
}/* FINAL HOMEPAGE ALIGNMENT FIX */

.hero{
  height:100vh;
  min-height:650px;
}

.hero-content{
  padding:90px 20px 60px !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  text-align:center !important;
}

.hero-inner{
  width:100%;
  max-width:900px;
  margin:0 auto;
  transform:translateY(-20px);
}

.hero-content h2{
  font-size:clamp(38px, 5vw, 58px) !important;
  line-height:1.08 !important;
  max-width:900px !important;
  margin:18px auto 24px !important;
}

.hero-content p{
  max-width:760px !important;
  margin:0 auto 28px !important;
  font-size:17px !important;
  line-height:1.8 !important;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.btn,
.btn-light{
  margin:0 !important;
}

@media(max-width:700px){
  .hero{
    height:92vh;
    min-height:620px;
  }

  .hero-inner{
    transform:translateY(-10px);
  }

  .hero-content h2{
    font-size:32px !important;
  }

  .hero-content p{
    font-size:14px !important;
  }
}/* ===== FIX HERO/HOME PAGE OVERLAY ALIGNMENT ===== */

.hero{
  height:100vh !important;
  min-height:650px !important;
  position:relative !important;
  overflow:hidden !important;
  margin:0 !important;
  padding:0 !important;
}

.slides,
.slide{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
}

.slide{
  background-size:cover !important;
  background-position:center center !important;
}

.hero::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  background:rgba(0,0,0,0.68) !important;
  z-index:1 !important;
}

.hero-content{
  position:relative !important;
  z-index:2 !important;
  width:100% !important;
  height:100% !important;
  background:transparent !important;
  padding:120px 20px 70px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}

.hero-inner{
  width:100% !important;
  max-width:900px !important;
  margin:0 auto !important;
}

.hero-content h2{
  font-size:clamp(36px, 5vw, 58px) !important;
  line-height:1.12 !important;
  margin:20px auto 24px !important;
  max-width:900px !important;
}

.hero-content p{
  max-width:760px !important;
  margin:0 auto 30px !important;
  font-size:17px !important;
  line-height:1.8 !important;
}

.hero-buttons{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:14px !important;
  flex-wrap:wrap !important;
}

@media(max-width:700px){
  .hero{
    min-height:620px !important;
  }

  .hero-content{
    padding:105px 18px 55px !important;
  }

  .hero-content h2{
    font-size:31px !important;
  }

  .hero-content p{
    font-size:14px !important;
  }
}
#pageLoader{
  position:fixed;
  inset:0;
  background:#081827;
  z-index:9999;
  display:flex;
  justify-content:center;
  align-items:center;
  transition:0.8s ease;
}

.loader-logo{
  text-align:center;
  color:white;
  animation:loaderPulse 1.4s infinite;
}

.loader-logo img{
  width:110px;
  margin-bottom:15px;
}

.loader-logo p{
  color:#f4b400;
  font-weight:600;
}

.hide-loader{
  opacity:0;
  visibility:hidden;
}

@keyframes loaderPulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.08);}
  100%{transform:scale(1);}
}

.floating-donate{
  position:fixed;
  right:20px;
  bottom:90px;
  background:#f4b400;
  color:#111;
  padding:13px 22px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  z-index:2000;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  animation:donateFloat 2s infinite;
}

@keyframes donateFloat{
  0%{transform:translateY(0);}
  50%{transform:translateY(-7px);}
  100%{transform:translateY(0);}
}

.event-countdown{
  background:#081827;
  color:white;
  padding:35px;
  border-radius:28px;
  margin:35px auto 45px;
  max-width:850px;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.event-countdown h3{
  color:#f4b400;
  margin-bottom:25px;
  font-size:26px;
}

.countdown-boxes{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.countdown-boxes div{
  background:rgba(255,255,255,0.08);
  padding:20px;
  border-radius:20px;
}

.countdown-boxes span{
  display:block;
  font-size:36px;
  color:#f4b400;
  font-weight:700;
}

.countdown-boxes p{
  font-size:13px;
  color:rgba(255,255,255,0.75);
}

.news-section{
  background:#f7f8fa;
  text-align:center;
}

.news-section h2{
  color:#0b2e4a;
  font-size:42px;
  margin-bottom:40px;
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:35px;
}

.news-card{
  background:white;
  padding:32px;
  border-radius:26px;
  text-align:left;
  box-shadow:0 12px 30px rgba(0,0,0,0.07);
}

.news-card span{
  color:#14532d;
  font-size:13px;
  font-weight:700;
}

.news-card h3{
  color:#0b2e4a;
  margin:14px 0;
  font-size:22px;
}

.news-card p{
  color:#6b7280;
  margin-bottom:18px;
}

.news-card a{
  color:#14532d;
  font-weight:700;
  text-decoration:none;
}

@media(max-width:700px){
  .countdown-boxes,
  .news-grid{
    grid-template-columns:1fr;
  }

  .floating-donate{
    right:15px;
    bottom:82px;
    padding:11px 18px;
    font-size:14px;
  }

  .event-countdown{
    padding:25px;
  }
}.campaign-page{
  min-height:100vh;
  background:
  linear-gradient(rgba(8,24,39,0.78),rgba(8,24,39,0.78)),
  url('images/slide1.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}

.campaign-box{
  background:white;
  max-width:850px;
  width:100%;
  padding:55px;
  border-radius:30px;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

.campaign-box h1{
  font-size:42px;
  color:var(--primary);
  margin-bottom:22px;
}

.campaign-box p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:18px;
}

.campaign-buttons{
  margin-top:30px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.dark-btn{
  border:2px solid var(--primary);
  color:var(--primary);
}

@media(max-width:700px){
  .campaign-box{
    padding:35px 25px;
  }

  .campaign-box h1{
    font-size:30px;
  }
}