/* ================= GLOBAL ================= */
body {
  font-family: 'Poppins', sans-serif;
  padding-top: 85px; /* space for fixed header */
}

/* ================= NAVBAR ================= */
.ngo-navbar {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* down shadow */
}

/* Logo */
.navbar-brand img {
  height: 70px;
}


/* Nav links */
.navbar-nav .nav-link {
  color: #000000 !important;
  font-weight: 500;
  margin-left: 16px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #f68c25 !important;
}

/* Donate button */
.btn-donate {
  background: #227849;
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 22px;
  border: none;
}

.btn-donate:hover {
  background: #f68c25;
}

/* Mobile menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }
}




/* ================= HERO SECTION ================= */
:root{
  --green:#227849;
  --orange:#f68c25;
}

/* HERO */
.hero-wrap{height:100vh;background:#f4f7f6}

/* LEFT */
.hero-left{
  background:linear-gradient(160deg,var(--green),#184f3d);
  display:flex;
  align-items:center;
}
.hero-inner{padding:90px 80px;color:#fff}
.hero-pill{
  background:rgba(255,255,255,.18);
  padding:8px 18px;
  border-radius:50px;
  font-size:13px;
}
.hero-title{
  font-size:60px;
  font-weight:900;
  margin:25px 0 20px;
  line-height:1.05;
}
.hero-title span{color:var(--orange)}
.hero-text{font-size:17px;max-width:480px;opacity:.95}
.hero-actions{margin-top:35px}
.hero-btn-primary{
  background:var(--orange);
  color:#fff;
  padding:14px 36px;
  border-radius:30px;
  margin-right:15px;
}
.hero-btn-secondary{
  border:2px solid #fff;
  color:#fff;
  padding:14px 36px;
  border-radius:30px;
}

/* RIGHT */
.hero-right{height:100vh}
.carousel,
.carousel-inner,
.carousel-item,
.carousel-item img{height:100%}
.carousel-item img{width:100%;object-fit:cover}

/* ARROW STYLE (SLIGHTLY BOLDER) */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

/* MOBILE */
@media(max-width:991px){
  .hero-wrap{height:auto}
  .hero-left{min-height:60vh}
  .hero-right{height:50vh}
  .hero-inner{padding:60px 30px}
  .hero-title{font-size:42px}
}

/* ================= SLIM MOBILE (VERY NARROW PHONES) ================= */
@media (max-width:420px){

  .hero-actions{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:28px;
  }

  .hero-btn-primary,
  .hero-btn-secondary{
    width:100%;
    text-align:center;
    padding:15px 20px;
    margin-right:0; /* kills side gap issue */
  }

  /* Primary = more power */
  .hero-btn-primary{
    font-size:16px;
    box-shadow:0 10px 24px rgba(246,140,37,.35);
  }

  /* Secondary = softer */
  .hero-btn-secondary{
    font-size:15px;
    opacity:.9;
  }

}




:root{
  --green:#227849;
  --orange:#f68c25;
  --dark:#1e1e1e;
  --light:#f5f7f6;
}

/* SECTION */
.dd-focus{
  background:linear-gradient(180deg,#f5f7f6,#ffffff);
  padding:120px 0;
}

/* GRID */
.dd-focus-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  max-width:1400px;
  margin:auto;
  padding:0 30px;
}

/* ITEM */
.dd-focus-item{
  position:relative;
  background:#ffffff;
  border-radius:26px;
  padding:60px 40px;
  min-height:420px;
  display:flex;
  align-items:flex-end;
  box-shadow:
    0 20px 45px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(255,255,255,.6);
  overflow:hidden;
  transition:.45s ease;
}

/* TOP COLOR STRIP */
.dd-focus-item::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:10px;
  background:var(--accent);
}

/* BACKGROUNDS */
.dd-focus-item.health{ --accent:var(--green); }
.dd-focus-item.education{ --accent:var(--orange); }
.dd-focus-item.environment{ --accent:#2f8f5f; }
.dd-focus-item.social{ --accent:#1f2d27; }

/* CONTENT */
.dd-focus-content{
  position:relative;
  z-index:2;
  max-width:320px;
}

.dd-focus-content h3{
  font-size:28px;
  font-weight:800;
  margin-bottom:16px;
  color:#111;
}

.dd-focus-content p{
  font-size:15.5px;
  line-height:1.7;
  color:#555;
}

/* ICON BADGE */
.dd-icon{
  position:absolute;
  top:32px;
  right:32px;
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
  background:var(--accent);
  box-shadow:0 12px 25px rgba(0,0,0,.2);
}

/* HOVER */
.dd-focus-item:hover{
  transform:translateY(-10px);
  box-shadow:
    0 30px 65px rgba(0,0,0,.14),
    inset 0 0 0 1px rgba(255,255,255,.8);
}

/* RESPONSIVE */
@media(max-width:1200px){
  .dd-focus-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:768px){
  .dd-focus{
    padding:80px 0;
  }
  .dd-focus-grid{
    grid-template-columns:1fr;
    padding:0 20px;
  }
  .dd-focus-item{
    min-height:360px;
    padding:50px 30px;
  }
}




/* ================= IMPACT FLOW ================= */
/* ================= LIVING CANVAS ================= */
.living-canvas{
  background:
    radial-gradient(
      1200px 500px at 10% 10%,
      rgba(246,140,37,0.18),
      transparent 60%
    ),
    radial-gradient(
      1000px 600px at 90% 80%,
      rgba(34,120,73,0.22),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      #eaf3ef,
      #eef4f1
    );
  padding:150px 0;
}

.canvas-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:90px;
  align-items:center;
}

/* LEFT */
.canvas-left h2{
  font-size:52px;
  font-weight:900;
  line-height:1.1;
  color:#1f3d33;
  margin-bottom:26px;
}

.canvas-left h2 span{
  color:#f68c25;
}

.canvas-left p{
  font-size:17px;
  line-height:1.8;
  color:#355f51;
  max-width:640px;
}

.canvas-tag{
  margin-top:30px;
  display:inline-block;
  padding:10px 22px;
  border-radius:30px;
  background:rgba(34,120,73,0.15);
  color:#227849;
  font-weight:600;
}

/* RIGHT */
.canvas-right{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.canvas-block{
  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(14px);
  padding:28px 36px;
  border-radius:22px;
  font-size:26px;
  font-weight:800;
  color:#227849;
  box-shadow:0 25px 45px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media(max-width:992px){
  .canvas-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .canvas-left h2{
    font-size:40px;
  }
}

@media(max-width:576px){
  .canvas-left h2{
    font-size:34px;
  }
}


/* ================= SILENT AUTHORITY ================= */
.authority-strip{
  background:#eef2f0; /* soft neutral, not white */
  padding:90px 0;
}

.authority-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:60px;
  padding:0 40px;
}

.authority-item{
  flex:1;
  font-size:20px;
  line-height:1.4;
  color:#355f51;
}

.authority-item strong{
  display:block;
  margin-top:6px;
  font-weight:800;
  color:#227849;
}

/* Responsive */
@media(max-width:900px){
  .authority-inner{
    flex-direction:column;
    gap:30px;
  }

  .authority-item{
    font-size:18px;
  }
}



/* ================= FOUNDATION FOOTER ================= */
.foundation-footer{
  background: #243b34;; /* deep stable green */
  color:#e6f0ec;
}

/* Top Band (creates presence) */
.foundation-band{
  display:flex;
  gap:60px;
  padding:26px 40px;
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#f68c25;
  border-bottom:1px solid rgba(255,255,255,.12);
  overflow-x:auto;
}

.foundation-band span{
  white-space:nowrap;
}

/* Core */
.foundation-core{
  padding:90px 0 50px;
}

.foundation-main{
  max-width:700px;
}

.foundation-main img{
  height:70px;
  margin-bottom:30px;
}

.foundation-main p{
  font-size:17px;
  line-height:1.8;
  color:#cfe2db;
}

/* Meta */
.foundation-meta{
  margin-top:70px;
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  font-size:14px;
  color:#b7d0c7;
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:24px;
}

/* Responsive */
@media(max-width:768px){
  .foundation-core{
    padding:70px 24px 40px;
  }

   /* Disable horizontal scrolling completely */
  .foundation-band {
    overflow: hidden;        /* no sideways scroll */
    flex-wrap: wrap;         /* wrap instead of slide */
    justify-content: center; /* center items */
    gap: 16px;
  }

  /* Make items behave normally */
  .foundation-band span {
    white-space: normal;     /* allow line break */
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .foundation-main p{
    font-size:16px;
  }

  .foundation-meta{
    gap:20px;
  }
}





/* ================= COLORS ================= */
:root{
  --green:#227849;
  --orange:#f68c25;
  --bg-soft:#eef4f1;
  --text-main:#1f3d33;
  --text-sub:#355f51;
}

/* ================= HERO ================= */
.about-hero{
  background:linear-gradient(135deg,#eef4f1,#e6f0ec);
  padding:120px 0 80px;
}

.about-hero h1{
  font-size:42px;
  font-weight:800;
  color:var(--green);
}

.about-hero p{
  max-width:720px;
  font-size:17px;
  color:var(--text-sub);
  margin-top:12px;
}

/* ================= SECTIONS ================= */
.about-section{
  padding:80px 0;
}

.about-section.soft{
  background:var(--bg-soft);
}

.about-wrap{
  max-width:850px;
}

.about-wrap h2{
  font-size:30px;
  font-weight:700;
  color:var(--text-main);
  margin-bottom:18px;
}

.about-wrap p{
  font-size:16px;
  line-height:1.8;
  color:#444;
}

/* ================= FOCUS ================= */
.focus-list{
  display:flex;
  gap:50px;
  margin-top:30px;
}

.focus-list div{
  flex:1;
}

.focus-list strong{
  display:block;
  font-size:18px;
  color:var(--green);
  margin-bottom:6px;
}

.focus-list span{
  font-size:15.5px;
  color:#444;
}

/* ================= APPROACH ================= */
.approach-points{
  margin-top:20px;
  padding-left:18px;
}

.approach-points li{
  margin-bottom:10px;
  font-size:15.5px;
}

/* ================= VALUES ================= */
.about-values{
  background:#1f3d33;
  padding:50px 0;
}

.values-row{
  display:flex;
  justify-content:space-between;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:2px;
  color:#e6f0ec;
}

/* ================= FOOTER ================= */
.simple-footer{
  background:#243b34;
  padding:60px 0;
  text-align:center;
}

.simple-footer img{
  height:48px;
  margin-bottom:18px;
}

.simple-footer p{
  font-size:14.5px;
  color:#cfe2db;
  margin-bottom:10px;
}

.simple-footer span{
  font-size:13px;
  color:#a9c4bb;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .about-hero h1{
    font-size:32px;
  }

  .focus-list{
    flex-direction:column;
    gap:25px;
  }

  .values-row{
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
  }
}






/* ================= ABOUT PAGE HEADING ================= */
.about-page-heading{
  text-align:center;
  max-width:820px;
  margin:0 auto 90px;
}

.about-page-heading h1{
  font-size:48px;
  font-weight:900;
  letter-spacing:1px;
  color:#1f3d33;
  margin-bottom:14px;
}

.about-page-heading p{
  font-size:17px;
  line-height:1.6;
  color:#355f51;
}

/* Mobile */
@media(max-width:768px){
  .about-page-heading{
    margin-bottom:60px;
  }

  .about-page-heading h1{
    font-size:34px;
  }
}



/* ================= ABOUT SECTION ================= */
/* ================= ABOUT : SIGNATURE INTRO ================= */
.about-signature-intro{
  padding:140px 0;
  background:
    linear-gradient(
      135deg,
      rgba(34,120,73,0.16),
      rgba(246,140,37,0.18)
    );
}

/* GRID */
.about-signature-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:90px;
  align-items:center;
}

/* LEFT VISUAL */
.about-visual{
  background:
    linear-gradient(
      160deg,
      #227849,
      #1f5d43
    );
  padding:65px 55px;
  border-radius:30px;
  color:#ffffff;
  box-shadow:0 40px 80px rgba(0,0,0,0.2);
}

.about-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#f68c25;
  font-weight:700;
  margin-bottom:18px;
}

.about-visual h2{
  font-size:40px;
  font-weight:900;
  line-height:1.15;
  margin-bottom:20px;
}

.about-visual h2 span{
  color:#f68c25;
}

.about-highlight{
  font-size:17px;
  line-height:1.8;
  color:#e6f0ec;
  max-width:420px;
}

/* RIGHT PANEL */
.signature-panel{
  background:rgba(255,255,255,0.65);
  backdrop-filter:blur(14px);
  padding:55px 50px;
  border-radius:30px;
  box-shadow:0 35px 70px rgba(0,0,0,0.15);
}

.panel-line{
  padding:26px 0;
  border-bottom:1px solid rgba(0,0,0,0.12);
}

.panel-line:last-child{
  border-bottom:none;
}

.panel-line strong{
  display:block;
  font-size:22px;
  font-weight:800;
  color:#1f3d33;
  margin-bottom:6px;
}

.panel-line span{
  font-size:14px;
  letter-spacing:1px;
  color:#555;
}

/* IMPACT STRIP */
.about-impact-strip{
  margin-top:90px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

.impact-item{
  background:#227849;
  color:#ffffff;
  padding:32px 26px;
  border-radius:22px;
  text-align:center;
}

.impact-item.orange{
  background:#f68c25;
  color:#1e1e1e;
}

.impact-item.green{
  background:#1f5d43;
}

.impact-item.dark{
  background:#243b34;
}

.impact-item strong{
  display:block;
  font-size:26px;
  font-weight:800;
  margin-bottom:6px;
}

.impact-item span{
  font-size:13.5px;
  line-height:1.4;
}

/* MOBILE */
@media(max-width:992px){
  .about-signature-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .about-impact-strip{
    grid-template-columns:repeat(2,1fr);
  }

  .about-visual h2{
    font-size:32px;
  }
}

@media(max-width:576px){
  .about-signature-intro{
    padding:90px 0;
  }

  .about-impact-strip{
    grid-template-columns:1fr;
    margin-top:60px;
  }

  .about-visual,
  .signature-panel{
    padding:40px 30px;
  }
}





/* ================= PROGRAMS : POWER ================= */
.programs-power{
  padding:140px 0;
  background:
    linear-gradient(
      135deg,
      #eef4f1,
      #f3f7f5
    );
}

/* Heading */
.programs-power-head{
  text-align:center;
  max-width:880px;
  margin:0 auto 90px;
}

.programs-power-head h1{
  font-size:54px;
  font-weight:900;
  color:#1f3d33;
  margin-bottom:16px;
}

.programs-power-head p{
  font-size:18px;
  color:#355f51;
  line-height:1.6;
}

/* Grid */
.programs-power-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:60px;
}

/* Cards */
.program-power-card{
  padding:60px 56px;
  border-radius:32px;
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

.program-power-card h3{
  font-size:30px;
  font-weight:800;
  margin-bottom:16px;
}

.program-power-card p{
  font-size:16.5px;
  line-height:1.8;
  max-width:520px;
  margin-bottom:26px;
}

/* Accent line */
.program-line{
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  opacity:0.9;
}

/* Individual Themes (soft but bold) */
.program-power-card.edu{
  background:linear-gradient(160deg,#f9c27c,#f68c25);
  color:#2b1b07;
}

.program-power-card.health{
  background:linear-gradient(160deg,#66b68f,#227849);
  color:#0e2c1f;
}

.program-power-card.community{
  background:linear-gradient(160deg,#b7d8c8,#4c9b77);
  color:#143a2c;
}

.program-power-card.social{
  background:linear-gradient(160deg,#dfe8e3,#8faea0);
  color:#1f3d33;
}

/* Mobile */
@media(max-width:992px){
  .programs-power-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .programs-power-head h1{
    font-size:42px;
  }
}

@media(max-width:576px){
  .programs-power{
    padding:90px 0;
  }

  .programs-power-head h1{
    font-size:34px;
  }

  .program-power-card{
    padding:40px 32px;
  }
}






/* ================= VOLUNTEER HERO ================= */
.volunteer-hero{
  padding:130px 0 90px;
  background:
    linear-gradient(
      135deg,
      rgba(34,120,73,0.25),
      rgba(246,140,37,0.25)
    );
  text-align:center;
}

.volunteer-hero h1{
  font-size:52px;
  font-weight:900;
  color:#1f3d33;
  margin-bottom:16px;
}

.volunteer-hero p{
  font-size:18px;
  max-width:800px;
  margin:0 auto;
  color:#355f51;
}

/* ================= WHY VOLUNTEER ================= */
.volunteer-why{
  padding:110px 0;
  background:#ffffff;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.why-card{
  padding:40px 34px;
  border-radius:24px;
  background:
    linear-gradient(
      160deg,
      #f3f7f5,
      #eef4f1
    );
}

.why-card h3{
  font-size:22px;
  font-weight:800;
  color:#227849;
  margin-bottom:12px;
}

.why-card p{
  font-size:15.5px;
  line-height:1.7;
  color:#444;
}

/* ================= FORM SECTION ================= */
.volunteer-form-section{
  padding:130px 0;
  background:
    linear-gradient(
      135deg,
      #eef4f1,
      #f3f7f5
    );
}

.form-wrapper{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:80px;
  align-items:flex-start;
}

/* Left Info */
.form-info .form-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#f68c25;
  font-weight:700;
  margin-bottom:14px;
}

.form-info h2{
  font-size:36px;
  font-weight:800;
  color:#1f3d33;
  margin-bottom:18px;
}

.form-info p{
  font-size:16.5px;
  line-height:1.8;
  color:#444;
  margin-bottom:24px;
}

.form-points{
  padding-left:18px;
}

.form-points li{
  margin-bottom:10px;
  font-weight:600;
  color:#227849;
}

/* Form Card */
.form-card{
  background:#ffffff;
  padding:50px 46px;
  border-radius:28px;
  box-shadow:0 35px 70px rgba(0,0,0,0.15);
}

.form-card label{
  font-weight:600;
  margin-bottom:6px;
  display:block;
}

.form-control{
  padding:12px 14px;
  border-radius:12px;
}

.submit-btn{
  width:100%;
  padding:14px;
  font-weight:700;
  background:#227849;
  color:#ffffff;
  border-radius:30px;
  border:none;
}

.submit-btn:hover{
  background:#1f5d43;
}

/* Mobile */
@media(max-width:992px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .form-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .volunteer-hero h1{
    font-size:40px;
  }
}

@media(max-width:576px){
  .volunteer-hero{
    padding:90px 0 60px;
  }

  .volunteer-form-section{
    padding:90px 0;
  }

  .form-card{
    padding:36px 30px;
  }
}

/* ================= FORM SUCCESS ================= */
/* SUCCESS MESSAGE */
.form-success-message{
  display:none;
  text-align:center;
  padding:40px 20px;
}

.form-success-message h4{
  font-size:28px;
  font-weight:800;
  color:#227849;
  margin-bottom:12px;
}

.form-success-message p{
  font-size:16.5px;
  color:#444;
  line-height:1.6;
}




/* ================= DONATION HERO ================= */
.donate-hero {
  background: linear-gradient(135deg, #227849, #f68c25);
  color: #ffffff;
  padding: 150px 20px 110px;
}

.donate-hero h1 {
  font-size: 44px;
  font-weight: 800;
}

.donate-hero p {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 17px;
  opacity: 0.95;
}

/* ================= DONATION CARD ================= */
.donate-section {
  margin-top: -80px;
  padding-bottom: 90px;
}

.donate-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  text-align: center;
}

.donate-card h3 {
  font-weight: 800;
  color: #227849;
}

.donate-sub {
  color: #666;
  margin-bottom: 25px;
}

/* Amount buttons */
.amount-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.amount-btn {
  border: 2px solid #f68c25;
  background: transparent;
  padding: 10px;
  border-radius: 30px;
  font-weight: 600;
  color: #f68c25;
  cursor: pointer;
}

.amount-btn.active,
.amount-btn:hover {
  background: #f68c25;
  color: #ffffff;
}

/* Inputs */
.donate-input {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 12px;
}

/* Donate button */
.btn-donate-main {
  background: #227849;
  color: #ffffff;
  font-weight: 700;
  border-radius: 40px;
  padding: 14px;
  font-size: 18px;
}

.btn-donate-main:hover {
  background: #1c6340;
}

.donate-note {
  margin-top: 15px;
  font-size: 13px;
  color: #777;
}

/* ================= IMPACT STRIP ================= */
.donate-impact {
  background: #f9fafc;
  padding: 80px 0;
}

.donate-impact h2 {
  font-weight: 800;
  color: #227849;
}

.impact-mini {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .amount-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .donate-hero h1 {
    font-size: 32px;
  }
}
