.header {
    min-height: 90px;
  }

  .header .logo {
    display: flex;
    /* align-items: center; */
  }

  .header .logo .logo-img {
    height: 72px;
    max-height: 80%;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
  }

  @media (max-width: 575px) {
    .header .logo .logo-img {
      height: 52px;
    }
  }
  @media (min-width: 1024px) {
    .container {
      max-width: 1200px; 
      margin: 0 auto;
    }
  }
  @media (min-width: 768px) {
    body {
      font-size: 16px;
    }
    .sidebar {
      display: block; 
    }
  }
  p, li { font-size: 1.125rem; } 
  body {
    font-size: 18px; /* Increases body copy (paragraphs, lists, etc.) */
    line-height: 1.6; /* Adds breathing room between lines for better readability */
  }
  nav a {
    font-size: 1.125rem; /* Scales text up to a clean, readable 18px */
    font-weight: 500;     /* Medium weight makes links stand out from body text */
    text-decoration: none;
  }
  .education-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
  }

  .education-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11,110,79,.92), rgba(11,110,79,.72));
    z-index: 1;
  }

  .education-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .education-hero .container {
    position: relative;
    z-index: 2;
  }

  .education-hero .breadcrumb-eyebrow {
    color: #f4a261;
    font-weight: 600;
    letter-spacing: .5px;
  }

  .education-hero h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    margin: 10px 0 18px;
    max-width: 700px;
  }

  .education-hero p {
    max-width: 620px;
    font-size: 1.08rem;
    color: #eaf6f1;
  }

  .hero-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 32px;
  }

  .hero-stat-row .pill {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 12px;
    padding: 14px 22px;
  }

  .hero-stat-row .pill strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #f4a261;
  }

  .hero-stat-row .pill span {
    font-size: .85rem;
    color: #eaf6f1;
  }

  /* Why education matters - reasons */
  .reason-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #ececec;
  }

  .reason-item:last-child {
    border-bottom: none;
  }

  .reason-item i {
    font-size: 1.5rem;
    color: #f4a261;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .reason-item h5 {
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 4px;
  }

  .reason-item p {
    color: #666;
    margin: 0;
  }

  /* Program cards */
  .program-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(11, 110, 79, .08);
    padding: 32px 28px;
    height: 100%;
    border-top: 4px solid #0b6e4f;
    transition: transform .25s ease;
  }

  .program-card:hover {
    transform: translateY(-4px);
  }

  .program-card .program-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #eaf6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }

  .program-card .program-icon i {
    font-size: 1.6rem;
    color: #0b6e4f;
  }

  .program-card h4 {
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 8px;
  }

  .program-card p {
    color: #666;
    margin-bottom: 14px;
  }

  .program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .program-tags span {
    background: #fff4e9;
    color: #d97b2b;
    font-size: .78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
  }

  /* Photo strip */
  .photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .photo-strip figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
  }

  .photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
  }

  .photo-strip figure:hover img {
    transform: scale(1.06);
  }

  /* Journey / path steps */
  .path-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
  }

  .path-steps li {
    counter-increment: step;
    position: relative;
    padding-left: 56px;
    margin-bottom: 28px;
    color: #555;
  }

  .path-steps li:last-child {
    margin-bottom: 0;
  }

  .path-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0b6e4f;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .path-steps li h5 {
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 4px;
  }

  .path-steps li p {
    margin: 0;
  }

  /* Testimonial */
  .voice-box {
    background: #0b6e4f;
    border-radius: 16px;
    padding: 40px;
    color: #fff;
    height: 100%;
  }

  .voice-box i.bi-quote {
    font-size: 2.4rem;
    color: #f4a261;
    display: block;
    margin-bottom: 10px;
  }

  .voice-box p.quote {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .voice-box .voice-name {
    font-weight: 700;
  }

  .voice-box .voice-role {
    color: #cfe9dd;
    font-size: .9rem;
  }

  /* Ways to help */
  .help-card {
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    text-align: center;
    transition: .25s ease;
  }

  .help-card:hover {
    border-color: #0b6e4f;
    box-shadow: 0 10px 26px rgba(11,110,79,.1);
  }

  .help-card .help-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eaf6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
  }

  .help-card .help-icon i {
    font-size: 1.5rem;
    color: #0b6e4f;
  }

  .help-card h5 {
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 8px;
  }

  .help-card p {
    color: #666;
    font-size: .92rem;
    margin-bottom: 18px;
  }

  .help-card a {
    font-weight: 700;
    color: #0b6e4f;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .92rem;
  }

  .help-card a:hover {
    color: #f4a261;
  }

  /* Form */
  .edu-form-wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(11, 110, 79, .1);
    padding: 40px;
  }

  .edu-form-wrap h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #0b6e4f;
    margin-bottom: 6px;
  }

  .edu-form-wrap .form-sub {
    color: #777;
    margin-bottom: 26px;
  }

  .edu-form-wrap .form-control,
  .edu-form-wrap .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 14px;
  }

  .edu-form-wrap .form-control:focus,
  .edu-form-wrap .form-select:focus {
    border-color: #0b6e4f;
    box-shadow: 0 0 0 .2rem rgba(11, 110, 79, .12);
  }

  .edu-form-wrap button[type="submit"] {
    background: #f4a261;
    border: none;
    color: #1b1b1b;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 40px;
    font-size: 1.02rem;
    transition: .25s ease;
  }

  .edu-form-wrap button[type="submit"]:hover {
    background: #e88f47;
  }



  .ministry-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .60)),
      url("assets/img/ministries-hero.jpg") center/cover no-repeat;
  }

  .ministry-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, .28), transparent 70%);
    pointer-events: none;
  }

  .ministry-hero-content {
    color: #fff;
    max-width: 850px;
    position: relative;
    z-index: 1;
  }

  .ministry-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .ministry-hero p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .hero-buttons a {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 26px;
    opacity: .8;
    animation: heroBounce 2.2s ease-in-out infinite;
    z-index: 1;
  }

  @keyframes heroBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
  }


  /* ================================
     MINISTRY CARDS
  ================================= */

  .ministry-card {
    background: #fff;
    border-radius: 18px;
    padding: 0 0 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
  }

  .ministry-card::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: -45px;
    right: -45px;
    background: rgba(13, 110, 253, .08);
    transition: all .4s ease;
    z-index: 0;
  }

  .ministry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .13);
  }

  .ministry-card:hover::before {
    width: 180px;
    height: 180px;
  }

  .ministry-card-img {
    height: 190px;
    overflow: hidden;
    position: relative;
  }

  .ministry-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    display: block;
  }

  .ministry-card:hover .ministry-card-img img {
    transform: scale(1.09);
  }

  .ministry-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: -35px 28px 22px;
    font-size: 30px;
    background: #fff;
    color: #0d6efd;
    box-shadow: 0 10px 24px rgba(13, 110, 253, .25);
    position: relative;
    z-index: 2;
    transition: .4s ease;
  }

  .ministry-card:hover .ministry-icon {
    transform: rotateY(360deg);
  }

  .ministry-card h3 {
    font-size: 23px;
    font-weight: 600;
    margin: 0 28px 15px;
    position: relative;
    z-index: 1;
  }

  .ministry-card p {
    color: #666;
    line-height: 1.8;
    margin: 0 28px 20px;
    position: relative;
    z-index: 1;
  }

  .ministry-card .ministry-link {
    margin: 0 28px;
  }

  .ministry-link {
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: .3s;
    position: relative;
    z-index: 1;
  }

  .ministry-link:hover {
    gap: 12px;
  }


  /* ================================
     PHOTO GALLERY
  ================================= */

  .ministry-gallery-swiper {
    padding-bottom: 55px;
  }

  .gallery-slide {
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    display: block;
    position: relative;
  }

  .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
  }

  .gallery-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
  }

  .gallery-slide .gallery-caption {
    position: absolute;
    left: 18px;
    bottom: 14px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s ease;
    z-index: 1;
  }

  .gallery-slide:hover img {
    transform: scale(1.08);
  }

  .gallery-slide:hover::after,
  .gallery-slide:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }

  .ministry-gallery-swiper .swiper-pagination-bullet-active {
    background: #0d6efd;
  }

  .ministry-gallery-swiper .swiper-button-next,
  .ministry-gallery-swiper .swiper-button-prev {
    color: #0d6efd;
    background: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  }

  .ministry-gallery-swiper .swiper-button-next::after,
  .ministry-gallery-swiper .swiper-button-prev::after {
    font-size: 16px;
  }


  /* ================================
     FEATURED MINISTRY
  ================================= */

  .featured-ministry {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .09);
  }

  .featured-ministry .featured-img-wrap {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
  }

  .featured-ministry img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform .7s ease;
  }

  .featured-ministry:hover img {
    transform: scale(1.06);
  }

  .featured-content {
    padding: 45px;
  }

  .featured-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .featured-content p {
    line-height: 1.9;
    color: #666;
  }

  .featured-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
  }

  .featured-list li {
    margin-bottom: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .featured-list i {
    font-size: 20px;
    margin-top: 2px;
  }


  /* ================================
     STATISTICS
  ================================= */

  .ministry-stats {
    padding: 70px 0;
  }

  .stat-box {
    text-align: center;
    padding: 25px;
  }

  .stat-box .stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(13, 110, 253, .10);
    color: #0d6efd;
    font-size: 28px;
    transition: transform .3s ease;
  }

  .stat-box:hover .stat-icon {
    transform: scale(1.1);
  }

  .stat-box h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .stat-box p {
    margin: 0;
    color: #777;
  }


  /* ================================
     CTA
  ================================= */

  .ministry-cta {
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .68)),
      url("assets/img/ministry-cta.jpg") center/cover fixed no-repeat;
    color: #fff;
  }

  .ministry-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .ministry-cta p {
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.8;
    font-size: 17px;
  }


  /* ================================
     RESPONSIVE DESIGN
  ================================= */

  @media (max-width: 992px) {

    .ministry-hero {
      min-height: 470px;
    }

    .ministry-hero h1 {
      font-size: 42px;
    }

    .featured-content {
      padding: 35px;
    }

    .ministry-cta {
      background-attachment: scroll;
    }

  }


  @media (max-width: 768px) {

    .ministry-hero {
      min-height: 450px;
      text-align: center;
    }

    .ministry-hero h1 {
      font-size: 35px;
    }

    .ministry-hero p {
      font-size: 16px;
    }

    .ministry-card-img {
      height: 170px;
    }

    .featured-content h3 {
      font-size: 27px;
    }

    .ministry-cta h2 {
      font-size: 32px;
    }

  }
  .header .logo {
  display: flex;
  align-items: center;
}

.header .logo .logo-img {
  height: 72px;
  max-height: 80%;
  width: auto;
  margin-right: 12px;
  object-fit: contain;
}

@media (max-width: 575px) {
  .header .logo .logo-img {
    height: 52px;
  }
}

  @media (max-width: 576px) {

    .ministry-hero h1 {
      font-size: 30px;
    }

    .ministry-hero p {
      font-size: 15px;
    }

    .hero-buttons a {
      display: block;
      margin-right: 0;
      width: 100%;
    }

    .ministry-icon {
      width: 60px;
      height: 60px;
      font-size: 26px;
      margin: -30px 22px 18px;
    }

    .ministry-card h3,
    .ministry-card p,
    .ministry-card .ministry-link {
      margin-left: 22px;
      margin-right: 22px;
    }

    .featured-content {
      padding: 28px 22px;
    }

    .stat-box h3 {
      font-size: 32px;
    }

    .gallery-slide {
      height: 220px;
    }

  }





  .media-hero {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
  }
  .header .logo {
  display: flex;
  align-items: center;
}

.header .logo .logo-img {
  height: 72px;
  max-height: 80%;
  width: auto;
  margin-right: 12px;
  object-fit: contain;
}

@media (max-width: 575px) {
  .header .logo .logo-img {
    height: 52px;
  }
}

  .media-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11,110,79,.92), rgba(11,110,79,.72));
    z-index: 1;
  }

  .media-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .media-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .media-hero .breadcrumb-eyebrow {
    color: #f4a261;
    font-weight: 600;
    letter-spacing: .5px;
  }

  .media-hero h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 10px 0 16px;
  }

  .media-hero p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #eaf6f1;
  }

  /* Scrolling marquee of words under hero */
  .media-marquee {
    overflow: hidden;
    background: #094f39;
    padding: 12px 0;
    white-space: nowrap;
  }

  .media-marquee .track {
    display: inline-block;
    animation: scrollLeft 26s linear infinite;
    font-weight: 600;
    letter-spacing: .5px;
    color: #cfe9dd;
  }

  .media-marquee .track span {
    margin: 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .media-marquee .track span i {
    color: #f4a261;
  }

  @keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Social platform cards */
  .social-card {
    position: relative;
    border-radius: 16px;
    padding: 30px 26px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
  }

  .social-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .92;
    z-index: -1;
  }

  .social-card.facebook::before { background: linear-gradient(135deg,#1877f2,#0e4fa3); }
  .social-card.instagram::before { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); }
  .social-card.youtube::before { background: linear-gradient(135deg,#ff0000,#a10000); }
  .social-card.whatsapp::before { background: linear-gradient(135deg,#25d366,#128c3e); }
  .social-card.tiktok::before { background: linear-gradient(135deg,#010101,#25f4ee 130%); }
  .social-card.x::before { background: linear-gradient(135deg,#111,#3a3a3a); }

  .social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
  }

  .social-card .plat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
  }

  .social-card h4 {
    font-weight: 700;
    margin-bottom: 4px;
  }

  .social-card .handle {
    opacity: .85;
    font-size: .88rem;
    margin-bottom: 16px;
  }

  .social-card .stat-row {
    display: flex;
    gap: 22px;
    margin-bottom: 20px;
  }

  .social-card .stat-row div strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
  }

  .social-card .stat-row div span {
    font-size: .78rem;
    opacity: .85;
  }

  .social-card .follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.95);
    color: #1b1b1b;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: .88rem;
    transition: .25s ease;
  }

  .social-card .follow-btn:hover {
    background: #fff;
    color: #1b1b1b;
    gap: 12px;
  }

  /* Gallery filters (reuses isotope like homepage) */
  .gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
  }

  .gallery-filters li {
    border: 2px solid #0b6e4f;
    color: #0b6e4f;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: .9rem;
    transition: .25s ease;
  }

  .gallery-filters li:hover,
  .gallery-filters li.filter-active {
    background: #0b6e4f;
    color: #fff;
  }

  .media-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
  }

  .media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

  .media-item:hover img {
    transform: scale(1.08);
  }

  .media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,110,79,.85) 0%, rgba(11,110,79,0) 55%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
  }

  .media-item:hover .media-overlay {
    opacity: 1;
  }

  .media-overlay .media-caption {
    color: #fff;
  }

  .media-overlay .media-caption h6 {
    font-weight: 700;
    margin-bottom: 2px;
  }

  .media-overlay .media-caption span {
    font-size: .78rem;
    opacity: .9;
  }

  .media-zoom-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b6e4f;
    opacity: 0;
    transform: scale(.7);
    transition: .3s ease;
  }

  .media-item:hover .media-zoom-icon {
    opacity: 1;
    transform: scale(1);
  }

  .video-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(244,162,97,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b1b1b;
    font-size: 1.1rem;
  }

  /* Video spotlight */
  .video-spotlight {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
  }

  .video-spotlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

  .video-spotlight:hover img {
    transform: scale(1.04);
  }

  .video-spotlight .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b6e4f;
    font-size: 2rem;
    box-shadow: 0 0 0 0 rgba(255,255,255,.6);
    animation: pulseRing 2.4s infinite;
  }

  @keyframes pulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
    70%  { box-shadow: 0 0 0 22px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }

  .video-list .video-thumb-row {
    display: flex;
    gap: 14px;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s ease;
    align-items: center;
  }

  .video-list .video-thumb-row:hover {
    background: #eaf6f1;
  }

  .video-list .video-thumb-row.active {
    background: #eaf6f1;
    border-left: 4px solid #0b6e4f;
  }

  .video-list .thumb {
    width: 88px;
    height: 62px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
  }

  .video-list .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-list .thumb i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    background: rgba(0,0,0,.25);
  }

  .video-list h6 {
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 2px;
    font-size: .92rem;
  }

  .video-list span {
    font-size: .78rem;
    color: #888;
  }

  /* Live feed style ticker for updates */
  .feed-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
  }

  .feed-item:last-child {
    border-bottom: none;
  }

  .feed-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eaf6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b6e4f;
    flex-shrink: 0;
    font-size: 1.1rem;
  }

  .feed-item .feed-platform {
    font-weight: 700;
    color: #1b1b1b;
    font-size: .92rem;
  }

  .feed-item .feed-time {
    color: #999;
    font-size: .78rem;
  }

  .feed-item p {
    margin: 6px 0 0;
    color: #555;
    font-size: .92rem;
  }

  /* Newsletter / subscribe */
  .subscribe-box {
    background: #0b6e4f;
    border-radius: 18px;
    padding: 44px;
    color: #fff;
    text-align: center;
  }

  .subscribe-box h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .subscribe-box p {
    color: #cfe9dd;
    max-width: 520px;
    margin: 0 auto 24px;
  }

  .subscribe-form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .subscribe-form input {
    flex: 1;
    min-width: 220px;
    border: none;
    border-radius: 30px;
    padding: 13px 20px;
  }

  .subscribe-form button {
    background: #f4a261;
    color: #1b1b1b;
    border: none;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 30px;
    transition: .25s ease;
  }

  .subscribe-form button:hover {
    background: #e88f47;
  }

  /* Animated count-up reuse */
  .fade-up-init {
    opacity: 0;
    transform: translateY(16px);
  }



     /* =====================================================
       HOUSE OF HOPE - CHILD SPONSORSHIP PAGE
       Palette benchmarked from the homepage:
       green  #0b6e4f  |  orange #f4a261
       ===================================================== */

       .sponsor-hero {
        position: relative;
        min-height: 68vh;
        display: flex;
        align-items: center;
        color: #fff;
        overflow: hidden;
      }
  
      .sponsor-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(11,110,79,.92), rgba(11,110,79,.75));
        z-index: 1;
      }
  
      .sponsor-hero img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
      }
  
      .sponsor-hero .container {
        position: relative;
        z-index: 2;
      }
  
      .sponsor-hero .breadcrumb-eyebrow {
        color: #f4a261;
        font-weight: 600;
        letter-spacing: .5px;
      }
  
      .sponsor-hero h1 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 2.6rem;
        margin: 10px 0 18px;
        max-width: 720px;
      }
  
      .sponsor-hero p {
        max-width: 620px;
        font-size: 1.08rem;
        color: #eaf6f1;
      }
  
      /* Stat pills inside hero */
      .hero-stat-row {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        margin-top: 32px;
      }
  
      .hero-stat-row .pill {
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.3);
        border-radius: 12px;
        padding: 14px 22px;
      }
  
      .hero-stat-row .pill strong {
        display: block;
        font-family: "Poppins", sans-serif;
        font-size: 1.5rem;
        color: #f4a261;
      }
  
      .hero-stat-row .pill span {
        font-size: .85rem;
        color: #eaf6f1;
      }
  
      /* Impact photo strip */
      .photo-strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
      }
  
      .photo-strip figure {
        margin: 0;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        border-radius: 8px;
      }
  
      .photo-strip img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
      }
  
      .photo-strip figure:hover img {
        transform: scale(1.06);
      }
  
      /* What sponsorship provides */
      .provide-item {
        display: flex;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid #ececec;
      }
  
      .provide-item:last-child {
        border-bottom: none;
      }
  
      .provide-item .provide-icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #eaf6f1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
  
      .provide-item .provide-icon i {
        font-size: 1.4rem;
        color: #0b6e4f;
      }
  
      .provide-item h5 {
        font-weight: 700;
        color: #1b1b1b;
        margin-bottom: 4px;
      }
  
      .provide-item p {
        color: #666;
        margin: 0;
      }
  
      /* Children waiting for sponsors - gallery */
      .child-card {
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 6px 24px rgba(11, 110, 79, .08);
        height: 100%;
      }
  
      .child-photo {
        position: relative;
        aspect-ratio: 4 / 5;
        overflow: hidden;
      }
  
      .child-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
      }
  
      .child-card:hover .child-photo img {
        transform: scale(1.05);
      }
  
      .child-status {
        position: absolute;
        top: 14px;
        left: 14px;
        background: #f4a261;
        color: #1b1b1b;
        font-size: .72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .4px;
        padding: 5px 12px;
        border-radius: 20px;
      }
  
      .child-status.urgent {
        background: #e35d5b;
        color: #fff;
      }
  
      .child-info {
        padding: 20px;
      }
  
      .child-info h5 {
        font-weight: 700;
        color: #1b1b1b;
        margin-bottom: 2px;
      }
  
      .child-info .child-meta {
        color: #888;
        font-size: .85rem;
        margin-bottom: 10px;
      }
  
      .child-info p {
        color: #666;
        font-size: .92rem;
        margin-bottom: 16px;
      }
  
      .child-info .btn-sponsor-child {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #0b6e4f;
        color: #fff;
        font-weight: 600;
        font-size: .9rem;
        padding: 9px 18px;
        border-radius: 30px;
        border: none;
        width: 100%;
        justify-content: center;
        transition: .25s ease;
      }
  
      .child-info .btn-sponsor-child:hover {
        background: #094f39;
        color: #fff;
      }
  
      /* How it works steps */
      .path-steps {
        list-style: none;
        padding: 0;
        margin: 0;
        counter-reset: step;
      }
  
      .path-steps li {
        counter-increment: step;
        position: relative;
        padding-left: 56px;
        margin-bottom: 28px;
        color: #555;
      }
  
      .path-steps li:last-child {
        margin-bottom: 0;
      }
  
      .path-steps li::before {
        content: counter(step);
        position: absolute;
        left: 0;
        top: 0;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #0b6e4f;
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
      }
  
      .path-steps li h5 {
        font-weight: 700;
        color: #1b1b1b;
        margin-bottom: 4px;
      }
  
      .path-steps li p {
        margin: 0;
      }
  
      /* Tiers */
      .tier-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 20px;
      }
  
      .tier-item {
        border: 1px solid #ececec;
        border-radius: 12px;
        padding: 26px;
        text-align: center;
        transition: .2s ease;
        background: #fff;
      }
  
      .tier-item.featured {
        border-color: #f4a261;
        box-shadow: 0 10px 30px rgba(244, 162, 97, .18);
        transform: translateY(-6px);
      }
  
      .tier-item:hover {
        border-color: #0b6e4f;
      }
  
      .tier-item .tier-name {
        font-weight: 700;
        color: #f4a261;
        text-transform: uppercase;
        font-size: .78rem;
        letter-spacing: .5px;
        margin-bottom: 8px;
      }
  
      .tier-item .tier-amount {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 1.7rem;
        color: #1b1b1b;
        margin-bottom: 12px;
      }
  
      .tier-item .tier-amount span {
        font-size: .85rem;
        font-weight: 500;
        color: #888;
      }
  
      .tier-item ul {
        list-style: none;
        padding: 0;
        margin: 0 0 18px;
        text-align: left;
      }
  
      .tier-item ul li {
        display: flex;
        gap: 8px;
        font-size: .9rem;
        color: #555;
        margin-bottom: 10px;
      }
  
      .tier-item ul li i {
        color: #0b6e4f;
        margin-top: 2px;
      }
  
      /* Testimonial */
      .voice-box {
        background: #0b6e4f;
        border-radius: 16px;
        padding: 40px;
        color: #fff;
        height: 100%;
      }
  
      .voice-box i.bi-quote {
        font-size: 2.4rem;
        color: #f4a261;
        display: block;
        margin-bottom: 10px;
      }
  
      .voice-box p.quote {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 18px;
      }
  
      .voice-box .voice-name {
        font-weight: 700;
      }
  
      .voice-box .voice-role {
        color: #cfe9dd;
        font-size: .9rem;
      }
  
      /* FAQ reuse */
      /* Uses .faq-item styles already defined in main.css */
  
      /* Form */
      .sponsor-form-wrap {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 6px 30px rgba(11, 110, 79, .1);
        padding: 40px;
      }
  
      .sponsor-form-wrap h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        color: #0b6e4f;
        margin-bottom: 6px;
      }
  
      .sponsor-form-wrap .form-sub {
        color: #777;
        margin-bottom: 26px;
      }
  
      .sponsor-form-wrap .form-control,
      .sponsor-form-wrap .form-select {
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 12px 14px;
      }
      .header .logo {
      display: flex;
      align-items: center;
    }
  
    .header .logo .logo-img {
      height: 72px;
      max-height: 80%;
      width: auto;
      margin-right: 12px;
      object-fit: contain;
    }
  
    @media (max-width: 575px) {
      .header .logo .logo-img {
        height: 52px;
      }
    }
  
      .sponsor-form-wrap .form-control:focus,
      .sponsor-form-wrap .form-select:focus {
        border-color: #0b6e4f;
        box-shadow: 0 0 0 .2rem rgba(11, 110, 79, .12);
      }
  
      .sponsor-form-wrap button[type="submit"] {
        background: #f4a261;
        border: none;
        color: #1b1b1b;
        font-weight: 700;
        padding: 14px 34px;
        border-radius: 40px;
        font-size: 1.02rem;
        transition: .25s ease;
      }
  
      .sponsor-form-wrap button[type="submit"]:hover {
        background: #e88f47;
      }
  
      .note-box {
        background: #fff4e9;
        border-left: 4px solid #f4a261;
        border-radius: 8px;
        padding: 16px 20px;
        color: #8a5a24;
        font-size: .92rem;
        margin-top: 24px;
      }

       /* =====================================================
       HOUSE OF HOPE - VOLUNTEER PAGE
       Palette benchmarked from the homepage:
       green  #0b6e4f  |  orange #f4a261
       ===================================================== */

    .volunteer-hero {
        padding: 70px 0 30px;
        text-align: center;
      }
  
      .volunteer-hero .breadcrumb-eyebrow {
        color: #f4a261;
        font-weight: 600;
        letter-spacing: .5px;
      }
  
      .volunteer-hero h1 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        margin: 10px 0 16px;
        color: #1b1b1b;
      }
  
      .volunteer-hero p {
        max-width: 700px;
        margin: 0 auto;
        color: #555;
        font-size: 1.08rem;
      }
  
      /* Reasons row */
      .reason-item {
        display: flex;
        gap: 16px;
        padding: 22px 0;
        border-bottom: 1px solid #ececec;
      }
  
      .reason-item:last-child {
        border-bottom: none;
      }
  
      .reason-item i {
        font-size: 1.6rem;
        color: #f4a261;
        flex-shrink: 0;
        margin-top: 4px;
      }
  
      .reason-item h5 {
        font-weight: 700;
        color: #1b1b1b;
        margin-bottom: 4px;
      }
  
      .reason-item p {
        color: #666;
        margin: 0;
      }
  
      /* Role cards */
      .role-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 24px rgba(11, 110, 79, .08);
        padding: 32px 28px;
        height: 100%;
        border-top: 4px solid #0b6e4f;
        transition: transform .25s ease;
      }
  
      .role-card:hover {
        transform: translateY(-4px);
      }
  
      .role-card .role-icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #eaf6f1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
      }
  
      .role-card .role-icon i {
        font-size: 1.6rem;
        color: #0b6e4f;
      }
  
      .role-card h4 {
        font-weight: 700;
        color: #1b1b1b;
        margin-bottom: 8px;
      }
  
      .role-card p {
        color: #666;
        margin-bottom: 14px;
      }
  
      .role-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
  
      .role-tags span {
        background: #fff4e9;
        color: #d97b2b;
        font-size: .78rem;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 20px;
      }
  
      /* Process steps */
      .path-steps {
        list-style: none;
        padding: 0;
        margin: 0;
        counter-reset: step;
      }
  
      .path-steps li {
        counter-increment: step;
        position: relative;
        padding-left: 56px;
        margin-bottom: 28px;
        color: #555;
      }
  
      .path-steps li:last-child {
        margin-bottom: 0;
      }
  
      .path-steps li::before {
        content: counter(step);
        position: absolute;
        left: 0;
        top: 0;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #0b6e4f;
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
      }
  
      .path-steps li h5 {
        font-weight: 700;
        color: #1b1b1b;
        margin-bottom: 4px;
      }
  
      .path-steps li p {
        margin: 0;
      }
  
      /* Testimonial */
      .voice-box {
        background: #0b6e4f;
        border-radius: 16px;
        padding: 40px;
        color: #fff;
        position: relative;
      }
  
      .voice-box i.bi-quote {
        font-size: 2.4rem;
        color: #f4a261;
        display: block;
        margin-bottom: 10px;
      }
  
      .voice-box p.quote {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 18px;
      }
  
      .voice-box .voice-name {
        font-weight: 700;
      }
      .header .logo {
      display: flex;
      align-items: center;
    }
  
    .header .logo .logo-img {
      height: 72px;
      max-height: 80%;
      width: auto;
      margin-right: 12px;
      object-fit: contain;
    }
  
    @media (max-width: 575px) {
      .header .logo .logo-img {
        height: 52px;
      }
    }
  
      .voice-box .voice-role {
        color: #cfe9dd;
        font-size: .9rem;
      }
  
      /* Form */
      .volunteer-form-wrap {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 6px 30px rgba(11, 110, 79, .1);
        padding: 40px;
      }
  
      .volunteer-form-wrap h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        color: #0b6e4f;
        margin-bottom: 6px;
      }
  
      .volunteer-form-wrap .form-sub {
        color: #777;
        margin-bottom: 26px;
      }
  
      .volunteer-form-wrap .form-control,
      .volunteer-form-wrap .form-select {
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 12px 14px;
      }
  
      .volunteer-form-wrap .form-control:focus,
      .volunteer-form-wrap .form-select:focus {
        border-color: #0b6e4f;
        box-shadow: 0 0 0 .2rem rgba(11, 110, 79, .12);
      }
  
      .interest-checks {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
  
      .interest-checks label {
        border: 1px solid #ddd;
        border-radius: 30px;
        padding: 8px 16px;
        font-size: .9rem;
        cursor: pointer;
        color: #444;
      }
  
      .interest-checks input {
        margin-right: 6px;
      }
  
      .volunteer-form-wrap button[type="submit"] {
        background: #f4a261;
        border: none;
        color: #1b1b1b;
        font-weight: 700;
        padding: 14px 34px;
        border-radius: 40px;
        font-size: 1.02rem;
        transition: .25s ease;
      }
  
      .volunteer-form-wrap button[type="submit"]:hover {
        background: #e88f47;
      }


       /* =====================================================
       HOUSE OF HOPE - PARTNER WITH US PAGE
       Palette benchmarked from the homepage:
       green  #0b6e4f  |  orange #f4a261
       ===================================================== */

    .partner-hero {
        padding: 70px 0 30px;
        text-align: center;
      }
  
      .partner-hero .breadcrumb-eyebrow {
        color: #f4a261;
        font-weight: 600;
        letter-spacing: .5px;
      }
  
      .partner-hero h1 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        margin: 10px 0 16px;
        color: #1b1b1b;
      }
  
      .partner-hero p {
        max-width: 720px;
        margin: 0 auto;
        color: #555;
        font-size: 1.08rem;
      }
  
      /* Who we serve — cause cards */
      .cause-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 24px rgba(11, 110, 79, .08);
        padding: 34px 28px;
        height: 100%;
        border-top: 4px solid #f4a261;
      }
  
      .cause-card .cause-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #eaf6f1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
      }
  
      .cause-card .cause-icon i {
        font-size: 1.7rem;
        color: #0b6e4f;
      }
  
      .cause-card h4 {
        font-weight: 700;
        color: #1b1b1b;
        margin-bottom: 10px;
      }
  
      .cause-card p {
        color: #666;
        margin: 0;
      }
  
      /* Partner type tabs */
      .partner-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 36px;
      }
  
      .partner-tabs button {
        border: 2px solid #0b6e4f;
        background: #fff;
        color: #0b6e4f;
        font-weight: 600;
        padding: 10px 22px;
        border-radius: 40px;
        font-size: .95rem;
        transition: .25s ease;
        cursor: pointer;
      }
  
      .partner-tabs button i {
        margin-right: 6px;
      }
  
      .partner-tabs button.active,
      .partner-tabs button:hover {
        background: #0b6e4f;
        color: #fff;
      }
  
      .partner-panel {
        display: none;
        animation: fadeIn .35s ease;
      }
  
      .partner-panel.active {
        display: block;
      }
  
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(6px); }
        to   { opacity: 1; transform: translateY(0); }
      }
  
      .partner-panel-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 24px rgba(11, 110, 79, .08);
        padding: 36px;
      }
  
      .partner-panel-card h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        color: #0b6e4f;
        margin-bottom: 8px;
      }
  
      .partner-panel-card .sub {
        color: #777;
        margin-bottom: 26px;
      }
  
      .benefit-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
  
      .benefit-list li {
        display: flex;
        gap: 12px;
        margin-bottom: 14px;
        color: #444;
      }
  
      .benefit-list li i {
        color: #0b6e4f;
        font-size: 1.1rem;
        margin-top: 3px;
      }
  
      /* Giving circle tiers */
      .tier-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 6px;
      }
  
      .tier-item {
        border: 1px solid #ececec;
        border-radius: 12px;
        padding: 24px;
        text-align: center;
        transition: .2s ease;
      }
  
      .tier-item:hover {
        border-color: #0b6e4f;
        background: #fafffd;
      }
  
      .tier-item .tier-name {
        font-weight: 700;
        color: #f4a261;
        text-transform: uppercase;
        font-size: .8rem;
        letter-spacing: .5px;
        margin-bottom: 6px;
      }
  
      .tier-item .tier-amount {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
        color: #1b1b1b;
        margin-bottom: 10px;
      }
  
      .tier-item .tier-amount span {
        font-size: .85rem;
        font-weight: 500;
        color: #888;
      }
  
      .tier-item p {
        color: #666;
        font-size: .92rem;
        margin: 0;
      }
  
      /* Voice / testimonial */
      .voice-box {
        background: #0b6e4f;
        border-radius: 16px;
        padding: 40px;
        color: #fff;
      }
  
      .voice-box i.bi-quote {
        font-size: 2.4rem;
        color: #f4a261;
        display: block;
        margin-bottom: 10px;
      }
  
      .voice-box p.quote {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 18px;
      }
  
      .voice-box .voice-name {
        font-weight: 700;
      }
  
      .voice-box .voice-role {
        color: #cfe9dd;
        font-size: .9rem;
      }
  
      /* Form */
      .partner-form-wrap {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 6px 30px rgba(11, 110, 79, .1);
        padding: 40px;
      }
  
      .partner-form-wrap h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        color: #0b6e4f;
        margin-bottom: 6px;
      }
  
      .partner-form-wrap .form-sub {
        color: #777;
        margin-bottom: 26px;
      }
  
      .partner-form-wrap .form-control,
      .partner-form-wrap .form-select {
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 12px 14px;
      }
  
      .partner-form-wrap .form-control:focus,
      .partner-form-wrap .form-select:focus {
        border-color: #0b6e4f;
        box-shadow: 0 0 0 .2rem rgba(11, 110, 79, .12);
      }
  
      .partner-form-wrap button[type="submit"] {
        background: #f4a261;
        border: none;
        color: #1b1b1b;
        font-weight: 700;
        padding: 14px 34px;
        border-radius: 40px;
        font-size: 1.02rem;
        transition: .25s ease;
      }
      .header .logo {
      display: flex;
      align-items: center;
    }
  
    .header .logo .logo-img {
      height: 72px;
      max-height: 80%;
      width: auto;
      margin-right: 12px;
      object-fit: contain;
    }
  
    @media (max-width: 575px) {
      .header .logo .logo-img {
        height: 52px;
      }
    }
  
      .partner-form-wrap button[type="submit"]:hover {
        background: #e88f47;
      }
  


      
    /* =====================================================
       HOUSE OF HOPE - DONATE PAGE
       Palette benchmarked from the homepage:
       green  #0b6e4f  |  orange #f4a261
       ===================================================== */

    .donate-hero {
        padding: 70px 0 30px;
        text-align: center;
      }
  
      .donate-hero .breadcrumb-eyebrow {
        color: #f4a261;
        font-weight: 600;
        letter-spacing: .5px;
      }
      .header .logo {
      display: flex;
      align-items: center;
    }
  
    .header .logo .logo-img {
      height: 72px;
      max-height: 80%;
      width: auto;
      margin-right: 12px;
      object-fit: contain;
    }
  
    @media (max-width: 575px) {
      .header .logo .logo-img {
        height: 52px;
      }
    }
  
      .donate-hero h1 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 2.4rem;
        margin: 10px 0 16px;
        color: #1b1b1b;
      }
  
      .donate-hero p {
        max-width: 680px;
        margin: 0 auto;
        color: #555;
      }
  
      /* Method tabs */
      .giving-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 40px;
      }
  
      .giving-tabs button {
        border: 2px solid #0b6e4f;
        background: #fff;
        color: #0b6e4f;
        font-weight: 600;
        padding: 10px 22px;
        border-radius: 40px;
        font-size: .95rem;
        transition: .25s ease;
        cursor: pointer;
      }
  
      .giving-tabs button i {
        margin-right: 6px;
      }
  
      .giving-tabs button.active,
      .giving-tabs button:hover {
        background: #0b6e4f;
        color: #fff;
      }
  
      /* Panels */
      .giving-panel {
        display: none;
        animation: fadeIn .35s ease;
      }
  
      .giving-panel.active {
        display: block;
      }
  
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(6px); }
        to   { opacity: 1; transform: translateY(0); }
      }
  
      .method-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 24px rgba(11, 110, 79, .08);
        padding: 36px;
        border-top: 4px solid #f4a261;
      }
  
      .method-card h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        color: #0b6e4f;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 6px;
      }
  
      .method-card h3 i {
        font-size: 1.5rem;
        color: #f4a261;
      }
  
      .method-card .method-sub {
        color: #777;
        margin-bottom: 26px;
      }
  
      /* Amount chips (PayPal / Card panel) */
      .amount-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 22px;
      }
  
      .amount-chips .chip {
        border: 2px solid #e4e4e4;
        background: #fafafa;
        border-radius: 10px;
        padding: 10px 18px;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        transition: .2s ease;
      }
  
      .amount-chips .chip.selected,
      .amount-chips .chip:hover {
        border-color: #0b6e4f;
        background: #eaf6f1;
        color: #0b6e4f;
      }
  
      .amount-chips .chip.custom {
        display: flex;
        align-items: center;
      }
  
      .amount-chips .chip.custom input {
        border: none;
        background: transparent;
        width: 90px;
        font-weight: 600;
        color: #0b6e4f;
      }
  
      .amount-chips .chip.custom input:focus {
        outline: none;
      }
  
      .paypal-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #ffc439;
        color: #1b1b1b;
        font-weight: 700;
        padding: 14px 30px;
        border-radius: 40px;
        border: none;
        font-size: 1.05rem;
        transition: .25s ease;
      }
  
      .paypal-btn:hover {
        background: #f4b400;
        color: #1b1b1b;
      }
  
      .paypal-btn i {
        font-size: 1.3rem;
      }
  
      /* Mobile money network cards */
      .momo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 20px;
        margin-top: 4px;
      }
  
      .momo-item {
        border: 1px solid #ececec;
        border-radius: 12px;
        padding: 22px;
        background: #fcfcfc;
      }
  
      .momo-item .momo-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
      }
  
      .momo-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        flex-shrink: 0;
      }
  
      .momo-dot.mtn   { background: #ffcc08; }
      .momo-dot.airtel{ background: #e30613; }
  
      .momo-item h5 {
        margin: 0;
        font-weight: 700;
        color: #1b1b1b;
      }
  
      .momo-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px dashed #e4e4e4;
        font-size: .95rem;
      }
  
      .momo-row:last-child {
        border-bottom: none;
      }
  
      .momo-row span:first-child {
        color: #777;
      }
  
      .momo-row span:last-child {
        font-weight: 600;
        color: #1b1b1b;
      }
  
      .copy-btn {
        border: none;
        background: #eaf6f1;
        color: #0b6e4f;
        border-radius: 6px;
        padding: 3px 10px;
        font-size: .8rem;
        font-weight: 600;
        cursor: pointer;
      }
  
      .copy-btn:hover {
        background: #0b6e4f;
        color: #fff;
      }
  
      /* Bank details table */
      .bank-table {
        width: 100%;
        border-collapse: collapse;
      }
  
      .bank-table tr {
        border-bottom: 1px solid #ececec;
      }
  
      .bank-table td {
        padding: 12px 6px;
        font-size: .97rem;
      }
  
      .bank-table td:first-child {
        color: #777;
        width: 40%;
      }
  
      .bank-table td:last-child {
        font-weight: 600;
        color: #1b1b1b;
      }
  
      /* Steps for cheque / in-person */
      .give-steps {
        list-style: none;
        padding: 0;
        margin: 0;
        counter-reset: step;
      }
  
      .give-steps li {
        counter-increment: step;
        position: relative;
        padding-left: 46px;
        margin-bottom: 20px;
        color: #444;
      }
  
      .give-steps li::before {
        content: counter(step);
        position: absolute;
        left: 0;
        top: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #0b6e4f;
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .9rem;
      }
  
      /* Trust strip */
      .trust-strip {
        margin-top: 50px;
        padding: 30px 0;
        border-top: 1px solid #ececec;
        text-align: center;
        color: #777;
      }
  
      .trust-strip .trust-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 34px;
        margin-top: 14px;
      }
  
      .trust-strip .trust-items span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: #0b6e4f;
      }
  
      .toast-copied {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: #0b6e4f;
        color: #fff;
        padding: 12px 22px;
        border-radius: 8px;
        opacity: 0;
        pointer-events: none;
        transition: .25s ease;
        z-index: 999;
        font-weight: 600;
      }
  
      .toast-copied.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }

      
    /* =========================================
       HERO
    ========================================= */

    .work-hero {
        min-height: 560px;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
  
        background:
          linear-gradient(
            rgba(0, 0, 0, .62),
            rgba(0, 0, 0, .62)
          ),
          url("assets/img/our-work-hero.jpg")
          center/cover no-repeat;
      }
  
      .work-hero-content {
        max-width: 850px;
        color: #fff;
      }
  
      .work-hero h1 {
        font-size: 55px;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 25px;
      }
  
      .work-hero p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 30px;
      }
  
  
      /* =========================================
         INTRO
      ========================================= */
  
      .impact-intro {
        max-width: 850px;
        margin: auto;
        text-align: center;
      }
  
      .impact-intro p {
        font-size: 17px;
        line-height: 1.9;
        color: #666;
      }
  
  
      /* =========================================
         IMPACT CARDS
      ========================================= */
  
      .impact-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, .06);
        box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
        transition: all .4s ease;
      }
  
      .impact-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, .14);
      }
  
      .impact-image {
        height: 230px;
        overflow: hidden;
        position: relative;
      }
  
      .impact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
      }
  
      .impact-card:hover .impact-image img {
        transform: scale(1.08);
      }
  
      .impact-icon {
        width: 65px;
        height: 65px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        background: #fff;
        position: absolute;
        bottom: -25px;
        left: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
      }
  
      .impact-content {
        padding: 45px 28px 30px;
      }
  
      .impact-content h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
      }
  
      .impact-content p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
      }
  
      .impact-link {
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        transition: .3s;
      }
  
      .impact-link:hover {
        gap: 13px;
      }
  
  
      /* =========================================
         FEATURED PROJECT
      ========================================= */
  
      .featured-project {
        background: #fff;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
      }
  
      .featured-project img {
        width: 100%;
        height: 100%;
        min-height: 480px;
        object-fit: cover;
      }
  
      .featured-content {
        padding: 50px;
      }
  
      .featured-content h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 20px;
      }
  
      .featured-content p {
        color: #666;
        line-height: 1.9;
      }
  
      .project-list {
        padding: 0;
        margin: 25px 0;
        list-style: none;
      }
  
      .project-list li {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
        line-height: 1.6;
      }
  
      .project-list i {
        font-size: 20px;
      }
  
  
      /* =========================================
         PROCESS
      ========================================= */
  
      .work-process {
        position: relative;
      }
  
      .process-card {
        text-align: center;
        padding: 30px 20px;
        position: relative;
      }
  
      .process-number {
        width: 70px;
        height: 70px;
        margin: auto auto 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        font-weight: 700;
        border: 3px solid currentColor;
      }
  
      .process-card h3 {
        font-size: 21px;
        font-weight: 600;
        margin-bottom: 12px;
      }
  
      .process-card p {
        color: #666;
        line-height: 1.7;
      }
  
  
      /* =========================================
         STATS
      ========================================= */
  
      .impact-stats {
        padding: 75px 0;
      }
  
      .impact-stat {
        text-align: center;
        padding: 20px;
      }
  
      .impact-stat i {
        font-size: 40px;
        margin-bottom: 15px;
      }
  
      .impact-stat h3 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 5px;
      }
  
      .impact-stat p {
        color: #777;
        margin: 0;
      }
  
  
      /* =========================================
         TESTIMONIAL
      ========================================= */
  
      .story-box {
        padding: 45px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
        height: 100%;
      }
  
      .story-icon {
        font-size: 45px;
        margin-bottom: 20px;
      }
  
      .story-box p {
        font-size: 17px;
        line-height: 1.9;
        color: #666;
        font-style: italic;
      }
  
      .story-author {
        margin-top: 25px;
        font-weight: 600;
      }
  
  
      /* =========================================
         CTA
      ========================================= */
  
      .work-cta {
        padding: 100px 20px;
        color: #fff;
        text-align: center;
  
        background:
          linear-gradient(
            rgba(0, 0, 0, .68),
            rgba(0, 0, 0, .68)
          ),
          url("assets/img/work-cta.jpg")
          center/cover no-repeat;
      }
  
      .work-cta h2 {
        font-size: 43px;
        font-weight: 700;
        margin-bottom: 20px;
      }
  
      .work-cta p {
        max-width: 750px;
        margin: 0 auto 30px;
        font-size: 17px;
        line-height: 1.8;
      }
  
  
      /* =========================================
         RESPONSIVE
      ========================================= */
  
      @media (max-width: 992px) {
  
        .work-hero {
          min-height: 480px;
        }
  
        .work-hero h1 {
          font-size: 43px;
        }
  
        .featured-content {
          padding: 35px;
        }
  
      }
  
  
      @media (max-width: 768px) {
  
        .work-hero {
          min-height: 450px;
          text-align: center;
        }
  
        .work-hero h1 {
          font-size: 36px;
        }
  
        .work-hero p {
          font-size: 16px;
        }
  
        .featured-content h2 {
          font-size: 28px;
        }
  
        .featured-content {
          padding: 30px 25px;
        }
  
        .work-cta h2 {
          font-size: 33px;
        }
  
      }
  
  
      @media (max-width: 576px) {
  
        .work-hero h1 {
          font-size: 30px;
        }
  
        .work-hero p {
          font-size: 15px;
        }
  
        .impact-image {
          height: 210px;
        }
  
        .impact-stat h3 {
          font-size: 32px;
        }
  
        .story-box {
          padding: 30px 22px;
        }
  
        .work-cta h2 {
          font-size: 29px;
        }
  
      }




      .partner-hero {
        position: relative;
        overflow: hidden;
        isolation: isolate;
      }
      
      .hero-bg-slideshow {
        position: absolute;
        inset: 0;
        z-index: -2;
      }
      
      .hero-bg-slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        animation: heroSlideFade 10s infinite;
      }
      
      .hero-bg-slide:nth-child(1) { animation-delay: 0s; }
      .hero-bg-slide:nth-child(2) { animation-delay: 5s; }
      .hero-bg-slide:nth-child(3) { animation-delay: 5s; }
      .hero-bg-slide:nth-child(4) { animation-delay: 5s; }
      
      @keyframes heroSlideFade {
        0%   { opacity: 0; }
        5%   { opacity: 1; }
        20%  { opacity: 1; }
        25%  { opacity: 0; }
        100% { opacity: 0; }
      }
      
      /* Darker, stronger overlay for contrast */
      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.75));
        z-index: -1;
      }
      
      /* Force text styling with higher specificity so theme defaults don't win */
      .partner-hero.section .container {
        position: relative;
        z-index: 1;
      }
      
      .partner-hero.section .container .breadcrumb-eyebrow,
      .partner-hero.section .container h1,
      .partner-hero.section .container p {
        color: #ffffff !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
      }
      
      .partner-hero.section .container .breadcrumb-eyebrow {
        color: #ffd166 !important; /* accent color for the eyebrow label, optional */
      }

      .page-title-bg {
        position: relative;
        background-image:
          linear-gradient(rgba(11, 11, 11, 0.65), rgba(11, 11, 11, 0.65)),
          url("assets/img/DD/gg.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .ministry-hero {
        position: relative;
        background-image:
          linear-gradient(rgba(11, 11, 11, 0.6), rgba(11, 11, 11, 0.6)),
          url("assets/img/DD/s5.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 120px 0;
        color: #fff;
      }
      
      .ministry-hero h1 {
        color: #fff;
      }
      
      .ministry-hero p {
        color: rgba(255, 255, 255, 0.9);
      }