
  :root{
    --brand-green:#008102;
    --brand-green-dark:#006401;
    --brand-purple:#6e37c8;
    --brand-gold:#3e5ce0;
    --brand-gold-dark:#c98f2b;
    --text-wthite:#ffffff;
    --text-dark:#1c2b22;
    --text-muted:#5f6f66;
    --bg-soft:#f6f7f2;
  }

  *{
    box-sizing:border-box;
}

  body{
    font-family:'TiroBanglaRegular';
    color:var(--text-dark);
    background:#fff;
  }

  h1,h2,h3,h4,h5,h6{ font-family:'AnekBangla'; }

  a{ text-decoration:none; }

  /* ===== Top utility bar ===== */
  .topbar{
    background:var(--brand-green);
    color:#fff;
    font-size:.8rem;
  }
  .topbar a{ color:#e7f3ea; }

  /* ===== Navbar ===== */
  .navbar > .container{
    align-items:center;
  }
  .navbar-brand{
    max-width:calc(100% - 3.75rem);
    margin-right:0;
    padding-top:.25rem;
    padding-bottom:.25rem;
  }
  .navbar-brand img{
    width:auto !important;
    max-width:min(220px, 100%);
    height:52px !important;
    max-height:52px;
    object-fit:contain;
    display:block;
  }
  .footer-brand-logo{
    display:inline-block;
    max-width:100%;
  }
  .footer-brand-logo img{
    width:auto !important;
    max-width:min(240px, 100%);
    height:56px !important;
    max-height:56px;
    object-fit:contain;
    display:block;
  }
  .navbar-toggler{
    margin-left:auto;
    flex-shrink:0;
    border-color:rgba(0,0,0,.12);
    padding:.4rem .55rem;
  }
  .navbar-brand-logo{
    width:42px;height:42px;border-radius:8px;
    background:var(--brand-gold);
    display:inline-flex;align-items:center;justify-content:center;
    color:var(--brand-green-dark);font-weight:800;font-size:1.1rem;
  }
  .main-nav .nav-link{
    color:var(--text-dark)!important;
    font-weight:500;
    padding:.5rem 1rem!important;
    font-size:19px;
  }
  .main-nav .nav-link:hover{ color:var(--brand-green)!important; }

  /* ===== Dropdown / Submenu / Child-menu ===== */
  .main-nav .nav-item{ position:relative; }
  .main-nav .dropdown-toggle::after{
    vertical-align:.15em; margin-right:.3em;
  }
  .main-nav .dropdown-menu{
    border:none;
    border-radius:8px;
    margin-top:.0px;
    box-shadow:0 12px 30px rgba(0,0,0,.12); padding:.5rem; min-width:220px;
  }
  .main-nav .dropdown-menu .dropdown-item{
    border-radius:6px; 
    padding:.55rem .8rem; 
    font-size:18px;
    font-weight:500;
    color:var(--text-dark);
  }
  .main-nav .dropdown-menu .dropdown-item:hover,
  .main-nav .dropdown-menu .dropdown-item:focus{
    background:#eaf5ee; color:var(--brand-green-dark);
  }
  .main-nav .dropdown-menu .dropdown-divider{ margin:.35rem 0; }

  /* nested (child) submenu */
  .main-nav .dropdown-submenu{ position:relative; }
  .main-nav .dropdown-submenu > .dropdown-item{
    display:flex; align-items:center; justify-content:space-between;
  }
  .main-nav .dropdown-submenu > .dropdown-item::after{
    content:"\f285"; font-family:"NotoSerifRegular"; font-size:.8rem; margin-right:0;
  }
  .main-nav .dropdown-submenu > .dropdown-menu{
    top:0; left:100%; right:auto; margin-top:0; margin-left:.3rem;
    display:none;
  }
  .main-nav .dropdown-submenu:hover > .dropdown-menu,
  .main-nav .dropdown-submenu.show > .dropdown-menu{
    display:block;
  }

  /* desktop: open top-level dropdown on hover */
  @media (min-width:992px){
    .main-nav .dropdown:hover > .dropdown-menu{ display:block; }
    .main-nav .dropdown-submenu > .dropdown-menu{
      top:-.5rem;
    }
  }
  @media (max-width:991px){
    .main-nav .dropdown-submenu > .dropdown-menu{
      position:static; right:auto; box-shadow:none; background:#f8f9f7;
      display:none; margin-right:0; padding-right:.5rem;
    }
    .main-nav .dropdown-submenu.show > .dropdown-menu{ display:block; }
    .main-nav .dropdown-submenu > .dropdown-item::after{ transform:rotate(90deg); }
  }
  .btn-brand{
    background:var(--brand-green);
    border:none;color:#fff;font-weight:600;
    padding:.55rem 1.4rem;border-radius:6px;
  }
  .btn-brand:hover{ background:var(--brand-green-dark); color:#fff; }
  .lang-pill{
    border:1px solid #dcdcdc;border-radius:20px;overflow:hidden;font-size:.8rem;
  }
  .lang-pill span{ padding:.25rem .7rem; cursor:pointer;}
  .lang-pill span a{
    color:var(--text-dark);
    text-decoration:none;
    display:inline-block;
  }
  .lang-pill span.active{ background:var(--brand-green); color:#fff; }
  .lang-pill span.active a{ color:#fff; }

  /* ===== Hero ===== */
  .hero{
    position:relative;
    background:
      linear-gradient(120deg, rgba(10,60,30,.85) 10%, rgba(10,60,30,.35) 55%, rgba(10,60,30,.05) 100%),
      url('https://images.unsplash.com/photo-1590650046871-92c887180603?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding:70px 0 150px;
    color:#fff;
  }
  .hero::before{
    content:"";
    position:absolute; inset:0;
    background-image:radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 1px);
    background-size:18px 18px;
    opacity:.25;
    pointer-events:none;
  }
  .hero h1{
    font-weight:800; font-size:2.6rem; margin-bottom:1rem;
  }
  .hero p{
    max-width:560px; color:#e9f2ec; margin-bottom:1.8rem;
  }
  .hero .btn-outline-light{
    border-radius:6px; font-weight:600; padding:.55rem 1.4rem;
  }

  /* ===== Donation Form Card ===== */
  .donate-card{
    background:#fff;
    border-radius:18px;
    padding:1.6rem 1.8rem;
    margin-top:-90px;
    position:relative;
    z-index:5;
    box-shadow:0 18px 40px rgba(40,20,60,.12);
    color:var(--text-dark);
  }
  .donate-card-intro{
    display:flex;
    align-items:center;
    gap:1rem;
  }
  .donate-card-icon{
    flex:0 0 72px;
    width:72px;
    height:72px;
    border-radius:50%;
    background:#efe8f8;
  }
  .donate-card-tagline{
    margin:0;
    font-weight:700;
    font-size:1.05rem;
    line-height:1.55;
    color:var(--text-dark);
  }
  .donate-amounts{
    display:flex;
    flex-wrap:wrap;
    gap:.55rem;
    margin-bottom:.85rem;
  }
  .donate-amount-btn{
    border:1.5px solid #d9d9e3;
    background:#fff;
    color:var(--text-dark);
    border-radius:8px;
    padding:.55rem 1rem;
    font-weight:700;
    font-size:.92rem;
    min-width:78px;
    transition:background .2s ease, border-color .2s ease, color .2s ease;
  }
  .donate-amount-btn:hover{
    border-color:var(--brand-purple);
    color:var(--brand-purple);
  }
  .donate-amount-btn.active{
    background:var(--brand-purple);
    border-color:var(--brand-purple);
    color:#fff;
  }
  .donate-custom-amount{
    flex:1 1 140px;
    min-width:140px;
    border-radius:8px;
    border:1.5px solid #d9d9e3;
    padding:.55rem .9rem;
  }
  .donate-fields{
    display:grid;
    grid-template-columns:1.1fr 1.3fr 1.3fr auto;
    gap:.55rem;
    align-items:center;
  }
  .donate-card .form-select,
  .donate-card .form-control{
    border-radius:8px;
    border:1.5px solid #d9d9e3;
    padding:.6rem .85rem;
    font-size:.9rem;
    min-height:46px;
  }
  .donate-card .btn-go{
    background:var(--brand-green);
    color:#fff;
    font-weight:700;
    border:none;
    border-radius:8px;
    padding:.65rem 1.5rem;
    white-space:nowrap;
    min-height:46px;
  }
  .donate-card .btn-go:hover{
    background:var(--brand-green-dark);
    color:#fff;
  }
  .donate-card .fine-print{
    font-size:.72rem;
    color:#8a8f98;
    margin:.75rem 0 0;
    line-height:1.5;
  }
  .donate-card .fine-print a{ color:var(--brand-purple); font-weight:600; }

  /* ===== Section Titles ===== */
  .section-title{
    text-align:center; font-weight:800; color:var(--text-dark);
    margin-bottom:.4rem; 
    font-size:2rem;
  }
  .section-sub{
    text-align:center; color:var(--text-muted); max-width:640px; margin:0 auto 2.5rem;
    font-size:.92rem;
  }
  .section-pad{ padding:70px 0; }
  .bg-soft{ background:var(--bg-soft); }
  .section-label{
    display:inline-block;
    color:var(--brand-purple);
    font-weight:700;
    font-size:.95rem;
    margin-bottom:.55rem;
  }
  .section-accent{
    display:block;
    width:52px;
    height:3px;
    background:var(--brand-green);
    border-radius:3px;
    margin:.85rem 0 1.1rem;
  }
  .section-accent--center{
    margin-left:auto;
    margin-right:auto;
  }

  /* ===== About Home + Values ===== */
  .about-home-section{
    background:#fff;
    padding-top:80px;
  }
  .about-home-title{
    font-weight:800;
    font-size:2.15rem;
    color:var(--text-dark);
    margin:0;
    line-height:1.35;
  }
  .about-home-text{
    color:var(--text-muted);
    font-size:.98rem;
    line-height:1.8;
    margin:0;
    max-width:520px;
  }
  .about-home-media{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 14px 34px rgba(20,20,40,.1);
  }
  .about-home-media img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
  }
  .values-row{
    margin-top:3rem;
  }
  .value-card{
    background:#f3f1f6;
    border-radius:16px;
    padding:1.5rem 1.35rem 1.45rem;
    height:100%;
  }
  .value-card-head{
    display:flex;
    align-items:center;
    gap:.85rem;
    margin-bottom:.85rem;
  }
  .value-dot{
    width:52px;
    height:52px;
    flex:0 0 52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    overflow:hidden;
    padding:10px;
  }
  .value-dot img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    filter: brightness(0) invert(1);
  }
  .value-dot--purple{
    background:var(--brand-purple);
  }
  .value-dot--green{
    background:var(--brand-green);
  }
  .value-card h5{
    margin:0;
    font-weight:800;
    font-size:1.15rem;
    color:var(--text-dark);
  }
  .value-card p{
    margin:0;
    color:var(--text-muted);
    font-size:.9rem;
    line-height:1.75;
  }

  @media (max-width: 991px){
    .donate-fields{
      grid-template-columns:1fr 1fr;
    }
    .donate-fields .btn-go{
      grid-column:1 / -1;
    }
  }
  @media (max-width: 575px){
    .donate-fields{
      grid-template-columns:1fr;
    }
    .about-home-title{ font-size:1.7rem; }
    .about-home-media img{ height:240px; }
  }

  .btn-outline-brand{
    border:1.5px solid var(--brand-green); color:var(--brand-green);
    font-weight:600; border-radius:6px; padding:.5rem 1.6rem;
  }
  .btn-outline-brand:hover{ background:var(--brand-green); color:#fff; }

  /* ===== Program / Fund Cards ===== */
  .prog-card{
    border-radius:12px; overflow:hidden; background:#fff;
    box-shadow:0 6px 20px rgba(0,0,0,.07);
    height:100%;
  }
  .prog-card .img-wrap{
    position:relative; height:190px; overflow:hidden;
  }
  .prog-card .img-wrap > img{
    width:100%;height:100%;object-fit:cover;
  }
  .prog-card .tag{
    position:absolute; top:12px; left:12px;
    background:var(--brand-green); color:#fff;
    font-size:.72rem; font-weight:600;
    padding:.25rem .7rem; border-radius:20px;
  }
  .prog-card .body{ padding:1.1rem 1.2rem 1.3rem; }
  .prog-card h6{ font-weight:700; margin-bottom:.5rem; }
  .prog-card p{ color:var(--text-muted); font-size:.85rem; margin-bottom:1rem; }
  .prog-card .btn-sm-brand{
    display:inline-block; width:100%; text-align:center;
    background:var(--brand-green); color:#fff; font-weight:600;
    padding:.5rem; border-radius:6px; font-size:.88rem;
  }
  .prog-card .btn-sm-brand:hover{ background:var(--brand-green-dark); color:#fff; }

  /* Homepage programs section (design match) */
  .programs-section{
    background:#f7f7f8;
  }
  .programs-header .section-title{
    margin-bottom:0;
  }
  .programs-header .section-sub{
    margin-top:.35rem;
    margin-bottom:2.2rem;
  }
  .program-card{
    border-radius:16px;
    overflow:visible;
    box-shadow:0 10px 28px rgba(40,20,60,.08);
    background:#fff;
  }
  .program-card .img-wrap{
    height:200px;
    border-radius:16px 16px 0 0;
    overflow:visible;
  }
  .program-card .img-wrap > img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px 16px 0 0;
    display:block;
  }
  .program-card .prog-icon-badge{
    position:absolute;
    right:16px;
    bottom:-22px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--brand-purple);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    box-shadow:0 6px 16px rgba(110,55,200,.28);
    z-index:2;
  }
  .program-card .prog-icon-badge img{
    width:100%;
    height:100%;
    object-fit:contain;
    filter:brightness(0) invert(1);
  }
  .program-card .body{
    padding:2rem 1.25rem 1.35rem;
  }
  .program-card .body h6{
    font-size:1.15rem;
    font-weight:800;
    color:var(--text-dark);
    margin-bottom:.55rem;
  }
  .program-card .body p{
    font-size:.9rem;
    line-height:1.7;
    margin-bottom:1rem;
    color:var(--text-muted);
  }
  .program-card .prog-link{
    display:inline-flex;
    align-items:center;
    gap:.35rem;
    color:var(--brand-green);
    font-weight:700;
    font-size:.92rem;
  }
  .program-card .prog-link:hover{
    color:var(--brand-green-dark);
  }
  .btn-programs-all{
    display:inline-block;
    background:#efe8f8;
    color:var(--text-dark);
    border:1px solid rgba(110,55,200,.28);
    border-radius:10px;
    font-weight:700;
    padding:.7rem 2.2rem;
  }
  .btn-programs-all:hover{
    background:var(--brand-purple);
    border-color:var(--brand-purple);
    color:#fff;
  }
  .programs-section .program-swiper{
    padding-bottom:10px;
  }
  .programs-section .swiper-button-next,
  .programs-section .swiper-button-prev{
    color:var(--brand-purple);
  }

  .fund-card .img-wrap{
    background:linear-gradient(135deg,#dfe7e2,#eef2ef);
  }
  .fund-card .img-wrap img{ opacity:.9; }

  /* Homepage donation funds */
  .donation-funds-section{
    background:#f7faf8;
  }
  .donation-funds-header .section-title{
    margin-bottom:0;
  }
  .donation-funds-header .section-sub{
    margin-top:.35rem;
    margin-bottom:2.2rem;
  }
  .fund-action-card{
    height:100%;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(0,129,2,.1);
    box-shadow:0 10px 28px rgba(11,36,21,.06);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .fund-action-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(11,36,21,.12);
  }
  .fund-action-media{
    height:200px;
    overflow:hidden;
    position:relative;
  }
  .fund-action-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
  }
  .fund-action-card:hover .fund-action-media img{
    transform:scale(1.06);
  }
  .fund-action-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,129,2,0) 40%, rgba(0,129,2,.35) 100%);
  }
  .fund-action-body{
    padding:1.25rem 1.3rem 1.4rem;
    display:flex;
    flex-direction:column;
    flex:1;
  }
  .fund-action-body h6{
    margin:0 0 .45rem;
    font-weight:800;
    font-size:1.12rem;
    color:var(--text-dark);
  }
  .fund-action-body p{
    margin:0 0 1.1rem;
    color:var(--text-muted);
    font-size:.9rem;
    line-height:1.65;
    flex:1;
  }
  .fund-action-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.4rem;
    width:100%;
    padding:.7rem 1rem;
    border-radius:10px;
    background:var(--brand-green);
    color:#fff;
    font-weight:700;
    font-size:.92rem;
    transition:background .2s ease;
  }
  .fund-action-btn:hover{
    background:var(--brand-green-dark);
    color:#fff;
  }
  .fund-action-card:hover .fund-action-btn i{
    transform:translateX(3px);
  }
  .fund-action-btn i{
    transition:transform .2s ease;
  }

  .swiper-button-next, .swiper-button-prev{
    color:var(--brand-green);
    width:34px;height:34px; background:#fff; border-radius:50%;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
  }
  .swiper-button-next:after, .swiper-button-prev:after{ font-size:15px; }

  /* ===== Video Section ===== */
  .video-wrap{
    position:relative; border-radius:14px; overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.15); max-width:900px; margin:0 auto;
  }
  .video-wrap img{ width:100%; display:block; filter:brightness(.65); }
  .play-btn{
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:72px;height:72px;border-radius:50%;
    background:rgba(255,255,255,.9);
    display:flex;align-items:center;justify-content:center;
    color:var(--brand-green); font-size:1.8rem; cursor:pointer;
    transition:.2s;
  }
  .play-btn:hover{ transform:translate(-50%,-50%) scale(1.08); }
  .eyebrow{
    display:inline-block; background:var(--brand-gold); color:#fff;
    font-size:.75rem; font-weight:700; padding:.3rem 1rem; border-radius:20px;
    margin-bottom:.8rem;
  }

  /* ===== Connect With Us ===== */
  .connect-section{
    background:#fff;
  }
  .connect-header .section-title{
    margin-bottom:0;
  }
  .connect-header .section-sub{
    margin-top:.35rem;
    margin-bottom:2.2rem;
  }
  .connect-actions{
    max-width:980px;
    margin-left:auto;
    margin-right:auto;
  }
  .connect-action{
    display:flex;
    flex-direction:column;
    height:100%;
    overflow:hidden;
    border-radius:18px;
    text-decoration:none;
    color:inherit;
    background:#fff;
    border:1px solid rgba(0,129,2,.1);
    box-shadow:0 10px 28px rgba(11,36,21,.06);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .connect-action:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(11,36,21,.12);
    color:inherit;
  }
  .connect-action-media{
    position:relative;
    height:210px;
    overflow:hidden;
  }
  .connect-action-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
  }
  .connect-action:hover .connect-action-media img{
    transform:scale(1.06);
  }
  .connect-action-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(11,36,21,0) 35%, rgba(11,36,21,.45) 100%);
  }
  .connect-action--donor .connect-action-media::after{
    background:linear-gradient(180deg, rgba(0,129,2,0) 30%, rgba(0,129,2,.5) 100%);
  }
  .connect-action--volunteer .connect-action-media::after{
    background:linear-gradient(180deg, rgba(62,92,224,0) 30%, rgba(62,92,224,.45) 100%);
  }
  .connect-action-content{
    padding:1.35rem 1.4rem 1.5rem;
    display:flex;
    flex-direction:column;
    flex:1;
  }
  .connect-action-tag{
    display:inline-block;
    align-self:flex-start;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    padding:.28rem .65rem;
    border-radius:999px;
    margin-bottom:.7rem;
  }
  .connect-action--donor .connect-action-tag{
    background:rgba(0,129,2,.12);
    color:var(--brand-green-dark);
  }
  .connect-action--volunteer .connect-action-tag{
    background:rgba(62,92,224,.12);
    color:#2f47b8;
  }
  .connect-action-content h5{
    margin:0 0 .45rem;
    font-weight:800;
    font-size:1.25rem;
    color:var(--text-dark);
  }
  .connect-action-content p{
    margin:0 0 1.1rem;
    color:var(--text-muted);
    font-size:.92rem;
    line-height:1.7;
    flex:1;
  }
  .connect-action-btn{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    align-self:flex-start;
    padding:.65rem 1.15rem;
    border-radius:10px;
    font-weight:700;
    font-size:.92rem;
    color:#fff;
    transition:background .2s ease, transform .2s ease;
  }
  .connect-action--donor .connect-action-btn{
    background:var(--brand-green);
  }
  .connect-action--volunteer .connect-action-btn{
    background:var(--brand-gold);
  }
  .connect-action:hover .connect-action-btn{
    filter:brightness(.95);
  }
  .connect-action:hover .connect-action-btn i{
    transform:translateX(3px);
  }
  .connect-action-btn i{
    transition:transform .2s ease;
  }
  @media (max-width:767.98px){
    .connect-action-media{
      height:180px;
    }
  }

  /* legacy connect classes kept for safety */
  .connect-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:1rem;
    height:100%;
    background:#f7f5fb;
    border:1px solid rgba(110,55,200,.08);
    border-radius:16px;
    padding:1.5rem 1.4rem;
    color:inherit;
    text-decoration:none;
  }
  .connect-main-btn{
    background:var(--brand-green); color:#fff; border-radius:10px;
    padding:1.3rem; text-align:center; font-weight:700; font-size:1.05rem;
    display:block; box-shadow:0 8px 20px rgba(15,122,61,.25);
  }
  .connect-main-btn:hover{ background:var(--brand-green-dark); color:#fff; }
  .connect-main-btn i{ display:block; font-size:1.8rem; margin-bottom:.4rem; }
  .connect-sub-btn{
    border-radius:10px; padding:1.1rem; text-align:center; font-weight:700;
    color:#fff; display:block; border:2px dashed rgba(255,255,255,.5);
  }
  .connect-sub-btn i{ display:block; font-size:1.5rem; margin-bottom:.3rem; }
  .connect-blue{ background:#3d7fd6; }
  .connect-gold{ background:var(--brand-gold); }
  .connect-purple{ background:#7a4fc9; }

  /* ===== Gallery ===== */
  /* ===== Gallery ===== */
  .gallery-section{
    background:#fff;
  }
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(12, 1fr);
    grid-auto-rows:210px;
    gap:14px;
  }
  .gallery-item{
    position:relative;
    display:block;
    border-radius:14px;
    overflow:hidden;
    grid-column:span 4;
    box-shadow:0 8px 22px rgba(12,40,20,.06);
  }
  .gallery-item--lg{
    grid-column:1 / span 8;
    grid-row:1 / span 2;
  }
  .gallery-item--wide{
    grid-column:span 8;
  }
  .gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .45s ease;
  }
  .gallery-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(10, 60, 30, .05) 20%, rgb(118 22 191 / 78%) 100%);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;
    gap:.35rem;
    padding:1.1rem 1.2rem;
    opacity:0;
    transition:opacity .3s ease;
  }
  .gallery-caption{
    color:#fff;
    font-weight:700;
    font-size:.95rem;
    transform:translateY(8px);
    transition:transform .3s ease;
  }
  .gallery-overlay i{
    color:#fff;
    font-size:1.15rem;
    opacity:.9;
    transform:translateY(8px);
    transition:transform .3s ease;
  }
  .gallery-item:hover img{ transform:scale(1.08); }
  .gallery-item:hover .gallery-overlay{ opacity:1; }
  .gallery-item:hover .gallery-caption,
  .gallery-item:hover .gallery-overlay i{
    transform:translateY(0);
  }

  @media (max-width: 991px){
    .gallery-grid{
      grid-auto-rows:200px;
    }
    .gallery-item,
    .gallery-item--wide{
      grid-column:span 6;
    }
    .gallery-item--lg{
      grid-column:1 / -1;
      grid-row:span 1;
    }
  }
  @media (max-width: 575px){
    .gallery-grid{
      grid-auto-rows:190px;
    }
    .gallery-item,
    .gallery-item--lg,
    .gallery-item--wide{
      grid-column:1 / -1;
      grid-row:auto;
    }
  }

  /* ===== Campaigns ===== */
  .campaigns-section{
    background:#f7f7f8;
  }
  .campaigns-header .section-title{
    margin-bottom:0;
  }
  .campaigns-header .section-sub{
    margin-top:.35rem;
    margin-bottom:2.2rem;
  }
  .campaign-card{
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 28px rgba(40,20,60,.08);
    height:100%;
    display:flex;
    flex-direction:column;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .campaign-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 34px rgba(40,20,60,.12);
  }
  .campaign-media{
    position:relative;
    height:200px;
    overflow:hidden;
  }
  .campaign-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
  }
  .campaign-card:hover .campaign-media img{
    transform:scale(1.04);
  }
  .campaign-badge{
    position:absolute;
    top:14px;
    left:14px;
    background:rgba(110,55,200,.92);
    color:#fff;
    font-size:.72rem;
    font-weight:700;
    padding:.3rem .75rem;
    border-radius:20px;
  }
  .campaign-card .body{
    padding:1.25rem 1.25rem 1.4rem;
    display:flex;
    flex-direction:column;
    flex:1;
  }
  .campaign-card small{
    color:var(--brand-purple);
    font-weight:700;
    font-size:.8rem;
  }
  .campaign-card h6{
    font-weight:800;
    font-size:1.1rem;
    margin:.45rem 0 .65rem;
    color:var(--text-dark);
    line-height:1.4;
  }
  .campaign-card p{
    color:var(--text-muted);
    font-size:.9rem;
    line-height:1.7;
    margin-bottom:1rem;
    flex:1;
  }
  .campaign-link{
    display:inline-flex;
    align-items:center;
    gap:.35rem;
    color:var(--brand-green);
    font-weight:700;
    font-size:.92rem;
  }
  .campaign-link:hover{
    color:var(--brand-green-dark);
  }

  .campaign-detail .policy-card{
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(40,20,60,.06);
    padding:2rem 2.1rem;
  }
  .campaign-richtext{
    color:var(--text-muted);
    font-size:1rem;
    line-height:1.8;
  }
  .campaign-richtext > *:last-child{
    margin-bottom:0;
  }
  .campaign-richtext p{
    margin-bottom:1rem;
  }
  .campaign-richtext h1,
  .campaign-richtext h2,
  .campaign-richtext h3,
  .campaign-richtext h4,
  .campaign-richtext h5,
  .campaign-richtext h6{
    color:var(--text-dark);
    font-weight:800;
    margin:1.2rem 0 .6rem;
    line-height:1.35;
  }
  .campaign-richtext ul,
  .campaign-richtext ol{
    padding-left:1.4rem;
    margin-bottom:1rem;
  }
  .campaign-richtext img{
    max-width:100%;
    height:auto;
    border-radius:8px;
    margin:0.75rem 0;
  }
  .campaign-richtext table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:1rem;
  }
  .campaign-richtext table td,
  .campaign-richtext table th{
    border:1px solid #e5e5ea;
    padding:.5rem .7rem;
  }
  .campaign-richtext a{
    color:var(--brand-green);
    font-weight:700;
  }
  .page-banner .campaign-banner-excerpt{
    max-width:640px;
    margin:0 auto;
    color:#e9f2ec;
    font-size:1.02rem;
    line-height:1.7;
  }
  .page-banner .campaign-banner-excerpt p{
    margin:0 0 .5rem;
    color:#e9f2ec;
  }
  .page-banner .campaign-banner-excerpt p:last-child{
    margin-bottom:0;
  }
  @media (max-width: 767px){
    .campaign-detail .policy-card{ padding:1.35rem 1.2rem; }
  }

  /* ===== Partners ===== */
  .partners-section{
    background:#f7f7f8;
    overflow:hidden;
  }
  .partners-header .section-title{
    margin-bottom:0;
  }
  .partners-header .section-sub{
    margin-top:.35rem;
    margin-bottom:2.2rem;
  }
  .partner-swiper{
    padding:8px 4px 18px;
  }
  .partner-swiper .swiper-wrapper{
    transition-timing-function: linear !important;
  }
  .partner-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:.7rem;
    min-height:140px;
    background:#fff;
    border-radius:16px;
    border:1px solid rgba(110,55,200,.08);
    box-shadow:0 10px 24px rgba(40,20,60,.06);
    padding:1.2rem 1rem;
    text-decoration:none;
    color:inherit;
    height:100%;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .partner-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 32px rgba(40,20,60,.1);
    color:inherit;
  }
  .partner-logo{
    width:100%;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .partner-logo img{
    max-width:100%;
    max-height:56px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(15%);
    opacity:.9;
    transition:filter .25s ease, opacity .25s ease;
  }
  .partner-card:hover .partner-logo img{
    filter:grayscale(0%);
    opacity:1;
  }
  .partner-logo strong{
    font-size:1rem;
    font-weight:800;
    letter-spacing:.02em;
    text-align:center;
  }
  .partner-name{
    font-size:.82rem;
    font-weight:700;
    color:var(--text-muted);
    text-align:center;
    line-height:1.3;
  }

  /* ===== Newsletter ===== */
  .newsletter{
    background:linear-gradient(120deg,var(--brand-green-dark),var(--brand-green));
    color:#fff; border-radius:16px; padding:2.2rem;
  }
  .newsletter input{
    border-radius:6px 0 0 6px; border:none; padding:.7rem 1rem;
  }
  .newsletter button{
    border-radius:0 6px 6px 0; background:var(--brand-gold); border:none;
    font-weight:700; padding:.7rem 1.4rem; color:#3a2c05;
  }

  /* ===== Footer ===== */
  footer{
    background:#0b2415; color:#cfe0d5; padding:60px 0 20px; font-size:.9rem;
  }
  footer h6{ color:#fff; font-weight:700; margin-bottom:1rem; }
  footer a{ color:#b7cabe; }
  footer a:hover{ color:#fff; }
  footer .foot-bottom{
    border-top:1px solid rgba(255,255,255,.1); margin-top:2.5rem; padding-top:1.2rem;
    font-size:.8rem; color:#8fa596;
  }
  .foot-policy-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:.45rem .7rem;
    font-size:.82rem;
  }
  .foot-policy-links a{ color:#cfe0d5; }
  .foot-policy-links a:hover{ color:#fff; }
  .foot-policy-links span{ color:rgba(255,255,255,.35); }
  .social-circle{
    width:36px;height:36px;border-radius:50%; background:rgba(255,255,255,.08);
    display:inline-flex;align-items:center;justify-content:center; color:#fff; margin-right:.4rem;
  }

  /* ===== Scroll to top ===== */
  .scroll-to-top{
    position:fixed;
    right:1.25rem;
    bottom:1.25rem;
    z-index:1050;
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:var(--brand-green);
    color:#fff;
    font-size:1.25rem;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 24px rgba(0,129,2,.28);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(12px);
    transition:opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
  }
  .scroll-to-top.is-visible{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }
  .scroll-to-top:hover,
  .scroll-to-top:focus-visible{
    background:var(--brand-green-dark);
    color:#fff;
    outline:none;
  }
  @media (max-width:575.98px){
    .scroll-to-top{
      right:1rem;
      bottom:1rem;
      width:42px;
      height:42px;
    }
  }

  /* ===== Policy Pages ===== */
  .policy-page .policy-card{
    max-width:900px;
    margin:0 auto;
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(40,20,60,.06);
    padding:2rem 2.1rem;
  }
  .policy-page .policy-updated{
    color:var(--brand-purple);
    font-weight:700;
    font-size:.9rem;
    margin-bottom:1.5rem;
  }
  .policy-page .policy-block{
    margin-bottom:1.4rem;
  }
  .policy-page .policy-block h3{
    font-size:1.15rem;
    font-weight:800;
    color:var(--text-dark);
    margin-bottom:.45rem;
  }
  .policy-page .policy-block p{
    color:var(--text-muted);
    line-height:1.8;
    margin:0;
  }
  .policy-footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:.75rem;
    margin-top:2rem;
    padding-top:1.25rem;
    border-top:1px solid #ececf2;
  }
  .policy-footer-links a{
    color:var(--brand-green);
    font-weight:700;
    font-size:.9rem;
  }
  .policy-footer-links a.active,
  .policy-footer-links a:hover{
    color:var(--brand-purple);
  }
  @media (max-width: 767px){
    .policy-page .policy-card{ padding:1.35rem 1.2rem; }
  }

  @media (max-width: 767px){
    .hero{ padding:40px 0 190px; text-align:center; }
    .hero p{ margin-left:auto; margin-right:auto; }
    .donate-card{ margin-top:-70px; padding:1.25rem; }
    .donate-card-intro{ align-items:flex-start; }
    .donate-card-icon{ flex-basis:56px; width:56px; height:56px; }
    .donate-card-tagline{ font-size:.95rem; }
    .hero h1{ font-size:2rem; }
  }


  /* Hero Section */

.hero-slider {
  overflow: hidden;
}

.hero-slider .carousel,
.hero-slider .carousel-inner {
  height: 67.5vh;
  min-height: 413px;
}

.hero-slider .carousel-item {
  height: 67.5vh;
  min-height: 413px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Smooth crossfade between slides */
.hero-slider .carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slider .carousel-fade .carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider .carousel-fade .carousel-item.carousel-item-next.carousel-item-start,
.hero-slider .carousel-fade .carousel-item.carousel-item-prev.carousel-item-end {
  opacity: 1;
  z-index: 1;
}

.hero-slider .carousel-fade .active.carousel-item-start,
.hero-slider .carousel-fade .active.carousel-item-end {
  opacity: 0;
  z-index: 0;
}

/* Bootstrap hides inactive slides with display:none; only show flex on visible ones */
.hero-slider .carousel-item.active,
.hero-slider .carousel-item-next,
.hero-slider .carousel-item-prev {
  display: flex;
}

/* Background image layer with Ken Burns zoom */
.hero-slider .hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 6.5s ease-out;
  will-change: transform;
}

.hero-slider .carousel-item.active .hero-slide-bg {
  transform: scale(1.08);
}

.hero-slider .hero-subtitle {
  margin: 0 0 .55rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .88);
}

@media (max-width: 768px) {
  .hero-slider .hero-slide-bg.has-mobile-image {
    background-image: var(--hero-mobile) !important;
  }
}

.hero-slider .carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, hsl(262.76deg 56.86% 50%) 10%, rgba(10, 60, 30, 0.4) 55%, rgba(10, 60, 30, 0.2) 100%);
  z-index: 1;
}

.hero-slider .container {
  position: relative;
  z-index: 2;
}

.hero-slider h1,
.hero-slider p {
  color: #fff;
}

/* Content fade/slide-up when slide becomes active */
.hero-slider .hero-slide-content > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slider .carousel-item.active .hero-slide-content > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.hero-slider .carousel-item.active .hero-slide-content > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-slider .carousel-item.active .hero-slide-content > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.hero-slider .carousel-indicators {
  z-index: 3;
  gap: 0.35rem;
}

.hero-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.55);
  border: none;
  opacity: 1;
  transition: width 0.35s ease, background-color 0.35s ease, border-radius 0.35s ease;
}

.hero-slider .carousel-indicators button.active {
  width: 28px;
  border-radius: 6px;
  background-color: #fff;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  z-index: 3;
  width: 8%;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    height: 52.5vh;
    min-height: 300px;
  }
}

/* ===== Inner page banner ===== */
.page-banner{
  position:relative;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  color:#fff;
}
.page-banner-overlay{
  background:linear-gradient(120deg, rgba(10,60,30,.88) 0%, rgba(10,60,30,.55) 55%, rgba(10,60,30,.4) 100%);
  padding:90px 0 80px;
}
.page-banner h1{
  font-weight:800;
  font-size:2.4rem;
  margin-bottom:.75rem;
}
.page-banner p{
  max-width:640px;
  margin:0 auto;
  color:#e9f2ec;
  font-size:1.02rem;
}
.page-breadcrumb{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:.5rem;
  margin-bottom:1rem;
  font-size:.9rem;
  color:#cfe0d5;
}
.page-breadcrumb a{ color:#fff; opacity:.9; }
.page-breadcrumb a:hover{ opacity:1; }

/* ===== Listing pages ===== */
.listing-page .listing-card{
  height:100%;
}
.listing-page .pagination{
  gap:.35rem;
}
.listing-page .pagination .page-link{
  border-radius:8px;
  color:var(--brand-green, #0a3c1e);
  border-color:#d7e5db;
}
.listing-page .pagination .page-item.active .page-link{
  background:var(--brand-green, #0a3c1e);
  border-color:var(--brand-green, #0a3c1e);
  color:#fff;
}

/* ===== Publication cards ===== */
.publication-card{
  height:100%;
  background:#fff;
  border:1px solid rgba(0,129,2,.08);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(11,36,21,.05);
  display:flex;
  flex-direction:column;
}
.publication-media{
  height:180px;
  background:#eef6f0;
  overflow:hidden;
}
.publication-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.publication-media-fallback{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--brand-green);
  font-size:2.4rem;
}
.publication-card .body{
  padding:1.15rem 1.2rem 1.3rem;
  display:flex;
  flex-direction:column;
  flex:1;
}
.publication-card .body small{
  color:var(--brand-purple);
  font-weight:600;
  font-size:.78rem;
}
.publication-card .body h6{
  margin:.35rem 0 .45rem;
  font-weight:800;
  font-size:1.05rem;
  color:var(--text-dark);
}
.publication-card .body p{
  margin:0 0 1rem;
  color:var(--text-muted);
  font-size:.9rem;
  line-height:1.65;
  flex:1;
}
.publication-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem 1rem;
  align-items:center;
}
.publication-link{
  color:var(--brand-green);
  font-weight:700;
  font-size:.9rem;
}
.publication-link:hover{ color:var(--brand-green-dark); }
.publication-download{
  color:var(--brand-gold);
  font-weight:700;
  font-size:.88rem;
  display:inline-flex;
  align-items:center;
  gap:.3rem;
}
.publication-download:hover{ color:#2f47b8; }

/* ===== People directory ===== */
.people-card{
  height:100%;
  text-align:center;
  background:#fff;
  border:1px solid rgba(0,129,2,.08);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(11,36,21,.05);
  transition:transform .25s ease, box-shadow .25s ease;
}
.people-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(11,36,21,.1);
}
.people-photo{
  height:210px;
  background:#eef6f0;
  overflow:hidden;
}
.people-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.people-body{
  padding:1rem 1rem 1.2rem;
}
.people-body h6{
  margin:0 0 .25rem;
  font-weight:800;
  font-size:1.05rem;
  color:var(--text-dark);
}
.people-role{
  margin:0 0 .45rem;
  color:var(--brand-green);
  font-weight:700;
  font-size:.86rem;
}
.people-desc{
  margin:0;
  color:var(--text-muted);
  font-size:.84rem;
  line-height:1.55;
}
@media (max-width:575.98px){
  .people-photo{ height:160px; }
}

/* ===== About page ===== */
.section-eyebrow{
  display:inline-block;
  color:var(--brand-green);
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.04em;
  margin-bottom:.6rem;
}
.about-heading{
  font-weight:800;
  font-size:1.9rem;
  margin-bottom:1rem;
  color:var(--text-dark);
}
.about-lead{
  color:var(--text-dark);
  font-size:1.05rem;
  margin-bottom:.75rem;
}
.about-text{
  color:var(--text-muted);
  margin-bottom:1.4rem;
}
.about-media{
  position:relative;
}
.about-media img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:14px;
  display:block;
}
.about-media-accent{
  position:absolute;
  left:-14px;
  bottom:-14px;
  width:55%;
  height:55%;
  border:4px solid var(--brand-green);
  border-radius:14px;
  z-index:-1;
}
.about-checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:.75rem 1.4rem;
}
.about-checklist li{
  display:flex;
  align-items:center;
  gap:.45rem;
  font-weight:600;
  color:var(--text-dark);
}
.about-checklist i{
  color:var(--brand-green);
  font-size:1.1rem;
}
.about-mv-card{
  background:#fff;
  border-radius:14px;
  padding:2rem 1.75rem;
  height:100%;
  border-top:4px solid var(--brand-green);
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}
.about-mv-card.about-mv-alt{
  border-top-color:var(--brand-gold);
}
.about-mv-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#eaf5ee;
  color:var(--brand-green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.7rem;
  margin-bottom:1rem;
}
.about-mv-alt .about-mv-icon{
  background:#eef1fb;
  color:var(--brand-gold);
}
.about-mv-card h4{
  font-weight:800;
  margin-bottom:.6rem;
}
.about-mv-card p{
  color:var(--text-muted);
  margin:0;
  font-size:.95rem;
}
.about-cta{
  background:linear-gradient(120deg, var(--brand-green-dark), var(--brand-green));
  color:#fff;
  border-radius:16px;
  padding:3rem 2rem;
  text-align:center;
}
.about-cta h2{
  font-weight:800;
  margin-bottom:.6rem;
}
.about-cta p{
  color:#e9f2ec;
  max-width:520px;
  margin:0 auto 1.5rem;
}
.about-cta .btn-outline-light{
  border-radius:6px;
  font-weight:600;
}
.about-cta .btn-light{
  border-radius:6px;
  font-weight:700;
  color:var(--brand-green-dark);
}

.donation-payment-banner{
  margin-top:1rem;
  padding:.75rem .85rem;
  background:#fff;
  border:1px solid #ececf2;
  border-radius:10px;
}
.donation-payment-banner img{
  display:block;
  width:100%;
  height:auto;
}

@media (max-width: 991px){
  .about-media img{ height:320px; }
  .about-media-accent{ left:-8px; bottom:-8px; }
}
@media (max-width: 767px){
  .page-banner-overlay{ padding:70px 0 60px; }
  .page-banner h1{ font-size:1.9rem; }
  .about-heading{ font-size:1.55rem; }
  .about-media-accent{ display:none; }
}