
:root{
      --text:#243042;
      --muted:#6b7280;
      --line:#e6e9ee;
      --brand:#0f766e;
      --bg:#ffffff;
      --megaTop: 0px; /* JS override */
      --green:#0660AB;
      --green2:#0765AD;
      --lime:#a7e254;
      --bg:#f4f9f3;
      --text:#222;
      --muted:#666;
      --line:#666;
    }
    *{box-sizing:border-box}

    /* TOP BAR */
    .topbar{
      background:#0765AD;
      color:#fff;
      font-size:13px;
    }
    .topbar .topbar-wrap{
      /* max-width:1200px; */
      margin:0 auto;
      padding:8px 6px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .topbar .left,
    .topbar .right{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .topbar a{
      color:#fff;
      text-decoration:none;
      font-weight:600;
      opacity:.95;
    }
    .topbar a:hover{opacity:1;text-decoration:underline}
    .topbar .sep{opacity:.5}
    .topbar .icon{
      width:16px;height:16px;
      vertical-align:-3px;
      margin-right:6px;
      fill:none;stroke:#fff;stroke-width:2;
    }
    @media (max-width: 991px){
      .topbar .topbar-wrap{flex-direction:column;align-items:flex-start;}
      #searchBtn{
        display: none !important;
      }
    }
   
    /* HEADER */
    .header{
      position:sticky; top:0; z-index:50;
      background:var(--bg);
      /* border-bottom:1px solid var(--line); */
    }
    .nav-wrap{
      max-width:1200px;
      margin:0 auto;
      padding:14px 16px;
      display:flex;
      align-items:center;
      gap:24px;
    }
    .logo{display:flex;align-items:center;gap:10px;font-weight:700;letter-spacing:.5px}
    .logo .mark{
      width:44px;height:44px;border-radius:10px;
      background:linear-gradient(135deg,#10b981,#0ea5e9);
    }

    nav{margin-left:auto}
    .nav{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:28px}
    .nav > li{position:relative}
    .nav > li > a{
      position:relative;
      text-decoration:none;
      color:var(--text);
      padding:10px 4px;
      font-weight:600;
      display:inline-block;
      white-space:nowrap;
    }

    /* underline on hover/open */
    .nav > li.has-mega:hover > a::after{
      content:"";
      position:absolute;
      left:0; right:0; bottom:2px;
      height:2px;
      background:var(--brand);
      border-radius:2px;
    }

    /* RIGHT ACTIONS */
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
      margin-left:10px;
    }
    .icon-btn{
      width:40px;height:40px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:999px;
      display:grid;
      place-items:center;
      cursor:pointer;
      transition:.15s ease;
    }
    .icon-btn:hover{transform:translateY(-1px)}
    .icon-btn svg{width:18px;height:18px;fill:none;stroke:#334155;stroke-width:2}

    .donate-btn{
      height:40px;
      padding:0 16px;
      border-radius:999px;
      border:1px solid var(--brand);
      background:var(--brand);
      color:#fff;
      font-weight:700;
      cursor:pointer;
      transition:.15s ease;
    }
    .donate-btn:hover{filter:brightness(.95);transform:translateY(-1px)}

    /* MEGA - DESKTOP */
    .mega{
      position:fixed;
      left:0; right:0;
      top:var(--megaTop);
      width:100vw;
      background:var(--bg);
      /* border-top:1px solid var(--line);
      border-bottom:1px solid var(--line); */
      padding:24px 0;
      opacity:0;
      transform:translateY(0px);
      pointer-events:none;
      transition: opacity .35s ease, transform .35s ease;
      z-index:60;
    }
    .mega.show{
      opacity:1;
      transform:translateY(34px);
      pointer-events:auto;
    }
    .mega-inner{
      max-width:1200px;
      margin:0 auto;
      padding:0 16px;
      display:grid;
      grid-template-columns: 1.15fr .85fr 1fr;
      gap:26px;
    }
    .col1{padding-right:18px;border-right:1px solid var(--line)}
    .col2{padding-right:18px;border-right:1px solid var(--line)}

    .col1 h3{margin:0 0 10px;font-size:28px;font-weight:700;color:#2b3a4f;}
    .col1 p{margin:0 0 18px;color:var(--muted);line-height:1.7;max-width:320px;font-size:15px;}
    .readmore{display:inline-flex;align-items:center;gap:8px;text-decoration:none;color:var(--brand);font-weight:600;font-size:15px;}

    .menu-list{list-style:none;margin:0;padding:0}
    .menu-list li{margin:10px 0}
    .menu-list a{
      text-decoration:none;color:#445469;font-weight:600;font-size:15px;
      display:inline-block;padding:2px 0;
    }
    .menu-list a:hover,.menu-list a.active{color:var(--brand);}

    .panel{display:flex;flex-direction:column;gap:10px;align-items:flex-start;}
    .panel-img{
      width:100%;height:170px;border-radius:8px;background:#e5e7eb;
      background-size:cover;background-position:center;border:1px solid var(--line);
    }
    .panel-title{margin:0;font-size:16px;font-weight:700;color:#2b3a4f;}
    .panel-sub{margin:0;color:var(--muted);font-size:14px;line-height:1.5;}

    /* SEARCH ROW (desktop icon search) */
    .search-row{
      display:none;
      max-width:1200px;
      margin:10px auto 0;
      padding:0 16px 14px;
    }
    .search-row.open{display:block}
    .search-box{
      display:flex;gap:10px;align-items:center;
      background:#fff;border:1px solid var(--line);
      border-radius:999px;padding:10px 14px;
    }
    .search-box input{
      border:none;outline:none;width:100%;
      font-size:14px;color:var(--text);
    }

    /* MOBILE DRAWER */
    .drawer-backdrop{
      position:fixed; inset:0;
      background:rgba(0,0,0,.35);
      opacity:0; pointer-events:none;
      transition:.2s ease;
      z-index:80;
    }
    .drawer-backdrop.open{opacity:1; pointer-events:auto;}

    .drawer{
      position:fixed;
      top:0; right:0;
      height:100vh;
      width:min(92vw, 380px);
      background:#fff;
      border-left:1px solid var(--line);
      transform:translateX(100%);
      transition:.25s ease;
      z-index:90;
      display:flex;
      flex-direction:column;
    }
    .drawer.open{transform:translateX(0);
    width: 100%;}

    .drawer-header{
      padding:14px 16px;
      border-bottom:1px solid var(--line);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .drawer-logo{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.4px;}
    .drawer-logo .mark{width:40px;height:40px;border-radius:10px;background:linear-gradient(135deg,#10b981,#0ea5e9);}
    .close-btn{
      width:40px;height:40px;border:1px solid var(--line);
      background:#fff;border-radius:999px;cursor:pointer;
      display:grid;place-items:center;
    }
    .close-btn svg{width:18px;height:18px;fill:none;stroke:#334155;stroke-width:2}

    .drawer-body{
      padding:10px 16px 16px;
      overflow:auto;
      flex:1;
    }

    .acc-item{border-bottom:1px solid var(--line);}
    .acc-btn{
      width:100%;
      background:transparent;
      border:none;
      padding:14px 0;
      text-align:left;
      font-weight:800;
      color:#1f2a3a;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      cursor:pointer;
      font-size:15px;
    }
    .acc-panel{
      display:none;
      padding:0 0 12px;
    }
    .acc-item.open .acc-panel{display:block;}

    .m-list{list-style:none;margin:0;padding:0}
    .m-list li{margin:10px 0}
    .m-list a{
      text-decoration:none;
      color:#445469;
      font-weight:700;
      font-size:14px;
      display:block;
      padding:8px 10px;
      border-radius:10px;
      background:#f7f8fa;
      border:1px solid #eef1f5;
    }
    .m-list a:hover{border-color:#dbe3ea;color:var(--brand);}

    .drawer-search{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid var(--line);
    }
    .drawer-search .label{
      font-weight:800;
      margin:0 0 10px;
      color:#1f2a3a;
    }
    .drawer-search input{
      width:100%;
      height:42px;
      border-radius:999px;
      border:1px solid var(--line);
      padding:0 14px;
      outline:none;
      font-size:14px;
    }

    /* RESPONSIVE SWITCH */
    @media (max-width: 860px){
      /* hide desktop nav items (mega menus) on mobile */
      .nav > li.has-mega{display:none;}
      /* show only actions (Donate + Menu). We'll use #menuBtn. */
      .nav{gap:10px;}
    }
    @media (min-width: 861px){
      /* hide mobile drawer triggers on desktop */
      .mobile-only{display:none !important;}
    }
/* header-section -end*/
/* footer-start */

/* FOOTER WRAP */
    .site-footer{
      position: relative;
      background: var(--bg);
      padding: 50px 40px 20px;
      overflow:hidden;
    }

    /* subtle pattern */
    .site-footer::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        radial-gradient(rgba(47,143,58,.10) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity:.25;
      pointer-events:none;
    }

    .footer-inner{
      position:relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* TOP ROW: logo + socials (left), newsletter (right) */
    .footer-top{
      display:flex;
      justify-content:space-between;
      gap:30px;
      align-items:flex-start;
      margin-bottom: 25px;
    }

    .brand{
      min-width: 240px;
    }

    .brand .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom: 18px;
    }

    .brand .footer-logo img{
      max-width:132px;
      width: 100%;
      height:auto;
      display:block;
    }

    .brand .logo .name{
      font-weight:700;
      letter-spacing:.6px;
      color:#1a1a1a;
    }

    .socials{
      display:flex;
      gap:14px;
      padding-top: 6px;
    }
    .socials a{
      color:#111;
      text-decoration:none;
      font-size:16px;
      opacity:.85;
    }
    .socials a:hover{ color:var(--green); }

    /* Newsletter card */
    .newsletter-card{
      width: 420px;
      max-width: 100%;
      background: var(--green);
      color:#fff;
      padding: 22px 22px 20px;
      border-radius: 14px;
      box-shadow: 0 10px 20px rgba(0,0,0,.12);
    }
    .newsletter-card h3{
      margin:0 0 14px;
      font-size: 16px;
      font-weight: 700;
    }
    .newsletter-card .field{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .newsletter-card input{
      width:100%;
      background: transparent;
      border:0;
      outline:0;
      color:#fff;
      padding: 10px 2px;
      border-bottom: 1px solid rgba(255,255,255,.55);
      font-size: 14px;
    }
    .newsletter-card input::placeholder{ color: rgba(255,255,255,.75); }

    .newsletter-card button{
      align-self:flex-start;
      background: white;
      color:#1f1f1f;
      border:0;
      padding: 10px 22px;
      border-radius: 22px;
      cursor:pointer;
      font-weight: 600;
    }

    /* MID GRID */
    .footer-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(180px, 1fr));
      gap: 40px;
      margin-top: 10px;
      padding-top: 10px;
    }

    /* top thin lines like image */
    .footer-grid .col{
      position:relative;
      padding-top: 18px;
    }
    .footer-grid .col::before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      width: 100%;
      height: 2px;
      background: #0660AB;
    }

    .footer-grid h4{
      margin:0 0 12px;
      color: var(--green);
      font-size: 16px;
      font-weight: 700;
    }

    .footer-grid ul{ list-style:none; margin:0; padding:0; }
    .footer-grid li{ margin: 10px 0; }
    .footer-grid a{
      color: #222;
      text-decoration:none;
      font-size: 14px;
    }
    .footer-grid a:hover{ color: var(--green); }

    /* BOTTOM BAR */
    .footer-bottom{
      margin-top: 28px;
      padding-top: 16px;
      border-top: 1px solid rgba(0,0,0,.08);
      display:flex;
      justify-content:center;
      gap:500%;
      flex-wrap:wrap;
      position:relative;
    }
    .footer-bottom a{
      color: var(--muted);
      text-decoration:none;
      font-size: 13px;
    }
    .footer-bottom a:hover{ color: var(--green); }

    .footer-copy{
      margin-top: 10px;
      display:flex;
      justify-content:flex-end;
      font-size: 13px;
      color: var(--muted);
    }

    /* DONATE BUTTON */
    .donate-btn{
      position: fixed;
      right: 18px;
      top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      background: var(--green);
      color:#fff;
      padding: 10px 16px;
      border-radius: 10px;
      text-decoration:none;
      font-weight: 700;
      z-index: 9999;
      box-shadow: 0 8px 18px rgba(0,0,0,.18);
    }
    .donate-btn:hover{ background: var(--green2); }

    /* SCROLL TO TOP */
    #scrollTopBtn{
      position: fixed;
      bottom: 22px;
      right: 22px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 0;
      background: #222;
      color: #fff;
      cursor: pointer;
      display:none;
      z-index: 9999;
      box-shadow: 0 10px 22px rgba(0,0,0,.25);
      font-size: 18px;
    }

    /* RESPONSIVE */
    

    @media (max-width: 767px){
      .site-footer{ padding: 36px 18px 16px; }
      .footer-grid{
        grid-template-columns: 1fr;
        gap: 22px;
      }
      .donate-btn{
        right: 10px;
        padding: 9px 14px;
        border-radius: 10px;
      }
      #scrollTopBtn{
        right: 14px;
        bottom: 14px;
      }
      .brand{ min-width: unset; }
      .footer-grid h4{
        text-align: center;
      }
      .footer-top{
        flex-direction:column;
        align-items:stretch;
      }
      .newsletter-card{
        width: 85%;
      }
      .footer-grid{
        grid-template-columns: repeat(1, minmax(180px, 1fr));
      }
      .footer-copy{
        justify-content:center;
      }
    }

/* footer-end */
/* HERO SLIDER */
.hero-slider,
.hero-slide {
  width: 100%;
  
}
.hero-slide {
  width: 100%;
  height: 100vh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for text readability */
.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0 25px;
}

/* Donate Button */
.donate-btn-header {
  background-color: #0765AD;
  color: white;
  padding: 10px 19px;
  font-size: 1.0rem;
  font-weight: 500;
  border-radius: 35px;
  transition: all 0.3s ease;
}

.donate-btn-header:hover {
  background-color: #ffffff;
  color: #000;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* FLOOD RESPONSE SECTION */
.flood-response {
  background-image: url('../images/pattern.svg');
  background-size: 100% 100%;
  /* background-position: center; */
  position: relative;
  /* z-index: 999; */
  /* padding: 100px 0; */
}

.flood-overlay {
  /* background: 0 0 0 0.9; */
  padding: 80px 0;
}

.flood-title {
  color: #0765AD;
  font-size: 2.8rem;
  font-weight: 700;
}

.flood-text {
  color: #000000;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Reuse donate button but allow section tweak */
.flood-response .donate-btn {
  background-color: #0765AD;
  color: #000;
  padding: 12px 40px;
  font-size: 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.flood-response .donate-btn:hover {
  background-color: #ffffff;
  color: #000;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .flood-title {
    font-size: 2rem;
    text-align: center;
  }

  .flood-text {
    text-align: center;
  }

  .flood-response .donate-btn {
    display: inline-block;
    margin: 0 auto;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* CARDS SECTION */
.cards-section {
  background-color: #f8f9fa; /* light grey background */
}

.cards-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #212529;
}

/* Card image with rounded corners */
.cards-section .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 1rem; /* radius on all sides */
  transition: transform 0.3s ease;
}

.cards-section .card:hover .card-img-top {
  transform: scale(1.05);
}

/* Card body */
.cards-section .card-body {
  text-align: center;
  padding-top: 1rem; /* space between image and text */
}

.cards-section .card-title {
  font-size: 1.80rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cards-section .card-text {
  font-size: 0.95rem;
  color: #555;
}
/* DONATE CTA SECTION */
.donate-cta {
  background-image: url('../images/pattern.svg');
  background-size: 100% 100%;
  background-position: center;
  position: relative;
  /* padding: 100px 0; */
}

.cta-overlay {
  background: #0765AD; /* green overlay */
  /* opacity: 50%; */
  padding: 80px 0;
}

.cta-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-text {
  color: #e9f5ee;
  font-size: 2.0rem;
  max-width: 900px;
  margin: 0 auto 25px;
  line-height: 1.7;
  font-weight: 700;
}

/* Button (reuse global donate button) */
.donate-cta .donate-btn {
  background-color: #0765AD;
  color: #000;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.donate-cta .donate-btn:hover {
  background-color: #ffffff;
  color: #000;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 1.2rem;
  }

  .cta-text {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}
.cta-animate {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease;
}

.cta-animate.animate {
  opacity: 1;
  transform: scale(1);
}
/* IMPACT CARDS */
.impact-card {
  height: 600px;
  background-image: var(--bg);
  background-size: 100% 100%;
  background-position: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.impact-card:hover {
  transform: translateY(-8px);
}

/* Overlay */
.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2)
  );
  padding: 25px;
  color: #fff;
}

/* Text at top */
.impact-overlay h5 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 50px;
}

.impact-overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
}

/* Responsive */
@media (max-width: 768px) {
  .impact-card {
    height: 320px;
  }
}

/* OUTER GREEN SECTION */
.donation-info-section {
  background-color: #0765AD;
  padding: 50px 0;
}

/* WHITE / CREAM BOX */
.donation-box {
  background-color: #f6f9ec;
  border-radius: 24px;
  overflow: hidden;
}

/* LEFT SIDE */
.donation-text {
  padding: 50px 40px;
}

.main-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
  margin-bottom: 20px;
}

.bank-details p {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: #444;
}

/* BLACK DONATE BUTTON */
.donate-dark-btn {
  margin-top: 15px;
  background-color: #222;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.donate-dark-btn:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.donation-image {
  position: relative;
}

.donation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94px;
  height: 94px;
  /* background-color: #fff; */
  color: #329A51;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .donation-text {
    padding: 40px 30px;
  }

  .main-text {
    font-size: 1.6rem;
  }

  .donation-image {
    height: 300px;
  }
}
/* WHY AKHUWAT SECTION */
.why-akhuwat {
  background-color: #0765AD;
  padding: 80px 0;
}

/* Heading */
.why-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
}

/* View Roles Button */
.view-roles-btn {
  background-color: #ffffff;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-roles-btn:hover {
  background-color: #f4f4f4;
  transform: translateY(-2px);
}

/* Cards */
.why-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 25px;
}

.why-card h5 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: #d9efe4;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }

  .why-card img {
    height: 220px;
  }
}
/* WORK WITH US SECTION */
.work-section {
  padding: 80px 0;
}

.green-bg {
  background-color: #9acd4a;
}

.white-bg {
  background-color: #ebe7e7;
}

/* Rounded Container */
.work-wrapper {
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Image */
.work-image {
  width: 50%;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.work-content {
  width: 50%;
  padding: 60px;
}

.work-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.work-content p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 30px;
}

/* Button */
.work-btn {
  background-color: #222;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.work-btn:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .work-wrapper {
    flex-direction: column;
  }

  .work-image,
  .work-content {
    width: 100%;
  }

  .work-content {
    padding: 40px 30px;
  }
}
/* DEFAULT LAYOUT */
.work-wrapper {
  display: flex;
  align-items: center;
}

/* REVERSED LAYOUT */
.work-wrapper.reverse {
  flex-direction: row-reverse;
}

/* RESPONSIVE FIX */
@media (max-width: 991px) {
  .work-wrapper,
  .work-wrapper.reverse {
    flex-direction: column;
  }
}
/* BLOGS SECTION */
.blogs-section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 550px;
  color: #555;
}

/* Buttons */
.view-all-btn {
  background: #222;
  color: #fff;
  padding: 10px 26px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* Featured Blog */
.featured-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 30px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: #0765AD;
  font-weight: 600;
  margin-bottom: 10px;
}

.featured-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.featured-text {
  color: #555;
  margin-bottom: 15px;
}

/* Blog Cards */
.blog-card img {
  width: 100%;
  height: 220px;
  /* object-fit: cover; */
  border-radius: 22px;
  margin-bottom: 15px;
}

.blog-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 10px 0;
}

.blog-card p {
  font-size: 0.9rem;
  color: #555;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  font-size: 0.75rem;
  color: #888;
}

/* Read More */
.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: #000;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-img {
    height: 260px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* MEDIA LIBRARY INTRO */
.media-library {
  padding: 80px 0;
}

.media-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.media-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
}

.media-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .media-title {
    font-size: 1.9rem;
  }

  .media-subtitle {
    font-size: 1.2rem;
  }

  .media-text {
    font-size: 0.95rem;
  }
}




/* ====== HERO SLIDER ====== */
.hero-slider {
  position: relative;
}

.hero-img {
  height: min(72vh, 720px);
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .hero-img { height: 62vh; }
}

@media (max-width: 575.98px) {
  .hero-img { height: 56vh; }
}

/* Dark overlay like reference */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.10) 100%);
  pointer-events: none;
}

/* Caption styling */
.hero-caption {
  left: 6%;
  right: 6%;
  bottom: 14%;
  text-shadow: 0 6px 22px rgba(0,0,0,.35);
}

.hero-title {
  font-weight: 800;
  line-height: 1.02;
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
  margin-bottom: .25rem;
}

.hero-subtitle {
  font-weight: 700;
  color: #c7a24a; 
  font-size: clamp(1rem, 1.8vw, 1.6rem);
}

/* Make indicators visible like dot */
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ====== IMPACT SECTION ====== */
.impact-section {
  position: relative;
  padding: clamp(2.25rem, 4vw, 4rem) 0;
  overflow: hidden;
  /* background: #efe9d5; fallback beige */
}

/* background image layer */
.impact-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern.svg");
  /* background-size: cover; */
  background-position: center;
  opacity: 0.90;   
  transform: scale(1.03); 
}

.impact-wrap {
  position: relative;
  z-index: 1;
}

.impact-title {
  color: #0765AD;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  
}

.impact-stat {
  padding: 1rem 0.25rem;
}

.impact-value {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: .35rem;
}

.impact-number {
  color: #0765AD;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
}

.impact-unit {
  color: #0765AD;
  font-weight: 700;
  font-size: clamp(.9rem, 1.2vw, 1.1rem);
  margin-top: .55rem; /* aligns like superscript-ish */
}

.impact-label {
  margin-top: .35rem;
  color: #0765AD;
  font-size: clamp(.7rem, .9vw, .78rem);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* pill */
.impact-pill {
  display: inline-block;
  font-size: .72rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 106, 59, .28);
  background: rgba(255, 255, 255, .25);
  color: #0765AD;
  backdrop-filter: blur(2px);
}

/* spacing similar to reference */
@media (min-width: 992px) {
  .impact-section { padding: 3.75rem 0 4.25rem; }
}


/* ===== Programs Section ===== */
.programs-section{
  background:#0765AD; /* deep green */
  color:#fff;
}

.programs-head{
  max-width: 760px;
}

.programs-title{
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.programs-desc{
  font-size: .9rem;
  line-height: 1.6;
  opacity: .9;
}

/* Big feature card */
.programs-feature{
  border-radius: 14px;
  overflow: hidden;
}

.programs-feature-img{
  width:100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display:block;
}

.programs-feature-body{
  height: 100%;
  padding: 1.25rem 1.25rem 1.1rem;
  background:#fff;
  color:#1b1b1b;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .75rem;
}

.programs-feature-title{
  color:#0765AD;
  font-weight:700;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  margin:0;
}

.programs-feature-text{
  margin:0;
  font-size:.86rem;
  line-height:1.55;
  color:#4b4b4b;
}

.programs-circle-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15,106,59,.25);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#0765AD;
  text-decoration:none;
  margin-left:auto;
}
.programs-circle-btn:hover{ background: rgba(15,106,59,.06); }

/* Slider */
.programs-slider-wrap{
  position: relative;
  padding-bottom: 3.25rem; /* room for arrows */
}

.programs-slider{
  display:flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .25rem .15rem;
}
.programs-slider::-webkit-scrollbar{ height: 0; }
.programs-slider{ scrollbar-width: none; }

/* Mini cards */
.programs-mini{
  flex: 0 0 calc(33.333% - .67rem);
  min-width: 260px;
  border-radius: 14px;
  overflow:hidden;
  scroll-snap-align: start;
  background:#fff;
  color:#1b1b1b;
}

.programs-mini-img{
  width:100%;
  height: 140px;
  object-fit: cover;
  display:block;
}

.programs-mini-body{
  padding: .85rem .85rem .9rem;
  position: relative;
}

.programs-mini-title{
  margin: 0 0 .25rem;
  color:#0765AD;
  font-weight:700;
  font-size: .85rem;
}

.programs-mini-text{
  margin:0;
  color:#4b4b4b;
  font-size: .78rem;
  line-height: 1.5;
  padding-right: 2.25rem;
}

.programs-mini-link{
  position:absolute;
  right: .75rem;
  bottom: .75rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15,106,59,.25);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#0765AD;
}
.programs-mini-link:hover{ background: rgba(15,106,59,.06); }

/* Arrows bottom-left */
.programs-arrows{
  position:absolute;
  left: 0;
  bottom: 0;
  display:flex;
  gap: .6rem;
}

.programs-arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.programs-arrow:hover{
  background: rgba(255,255,255,.08);
}

/* Responsive widths for slider cards */
@media (max-width: 991.98px){
  .programs-mini{ flex-basis: calc(50% - .5rem); }
}
@media (max-width: 575.98px){
  .programs-mini{ flex-basis: 85%; min-width: 85%; }
  .programs-feature-body{ padding: 1rem; }
}

/* ===== Message from the Founder ===== */
.founder-section{
  background:#fff;
}

.founder-heading{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  color:#111;
}

/* Main rounded banner */
.founder-banner{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
}

/* Background image + dark overlay */
.founder-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.60) 40%, rgba(0,0,0,.72) 100%),
    url("../images/founder-bg.png");
  background-size: 100% 100%;
  background-position: center;
  /* transform: scale(1.02); */
}

.founder-inner{
  position: relative;
  z-index: 1;
  min-height: 360px;
}

/* Founder photo */
.founder-photo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
  padding: 1.25rem 0 0 1.25rem;
  max-height: 420px;
}

/* Quote area */
.founder-quote-wrap{
  height: 100%;
  display:flex;
  align-items:center;
  padding: 2.2rem 2rem;
}

.founder-quote{
  color:#fff;
  font-weight: 500;
  line-height: 1.45;
  font-size: clamp(1.05rem, 1.6vw, 1.6rem);
  max-width: 36ch;
}

/* Name + button row under banner */
.founder-meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem .25rem 0;
}

.founder-name{
  font-weight: 400;
  color:#222;
  font-size: 1.05rem;
}

.founder-title{
  color:#222;
  font-size: 1.05rem;
  font-weight: 400;
}

/* Button */
.founder-btn{
  background:#2f2f2f;
  color:#fff;
  border-radius: 999px;
  padding: .7rem 1.25rem;
  border: 1px solid rgba(0,0,0,.08);
}
.founder-btn:hover{
  background:#1f1f1f;
  color:#fff;
}

/* Responsive */
@media (max-width: 991.98px){
  .founder-banner{ min-height: auto; }
  .founder-inner{ min-height: auto; }

  .founder-photo{
    padding: 1rem 1rem 0 1rem;
    max-height: 340px;
  }

  .founder-quote-wrap{
    padding: 1.25rem 1.25rem 1.75rem;
  }

  .founder-quote{
    max-width: 100%;
  }

  .founder-meta{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Media Section ===== */
.media-section{
  background:#0765AD;
  color:#fff;
}

.media-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.media-title{
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin:0;
}

.media-desc{
  max-width: 540px;
  font-size: .92rem;
  line-height: 1.6;
  opacity: .9;
}

/* View all pill */
.media-viewall{
  background:#fff;
  color:#0f6a3b;
  text-decoration:none;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  white-space: nowrap;
}
.media-viewall:hover{ opacity: .92; color:#0f6a3b; }

/* Slider */
.media-slider-wrap{
  position: relative;
  padding-bottom: 3.25rem;
}

.media-slider{
  display:flex;
  gap: 1.25rem;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  scroll-behavior:smooth;
  padding: .2rem .1rem;
  scrollbar-width: none;
}
.media-slider::-webkit-scrollbar{ height:0; }

/* Cards show 3 on desktop */
.media-card{
  flex: 0 0 calc(33.333% - .85rem);
  min-width: 280px;         
  background:#fff;
  color:#111;
  border-radius: 16px;
  overflow:hidden;
  scroll-snap-align: start;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.media-img{
  width:100%;
  height: 170px;
  object-fit: cover;
  display:block;
}

.media-body{
  padding: 1rem 1rem 1.05rem;
  display:flex;
  flex-direction: column;
  gap: .65rem;
  min-height: 250px;
}

.media-tag{
  display:inline-block;
  align-self:flex-start;
  background:#3b1022;
  color:#fff;
  font-size: .72rem;
  padding: .18rem .6rem;
  border-radius: 999px;
}

.media-card-title{
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.25;
  margin:0;
}

.media-card-text{
  font-size: .82rem;
  line-height: 1.5;
  color:#3f3f3f;
  margin:0;
  flex: 1 1 auto;
}

.media-read{
  align-self:flex-start;
  text-decoration:none;
  background:#2f2f2f;
  color:#fff;
  padding: .45rem .8rem;
  border-radius: 999px;
  font-size: .78rem;
}
.media-read:hover{ background:#1f1f1f; color:#fff; }

/* Arrows under cards */
.media-arrows{
  position:absolute;
  left: 0;
  bottom: 0;
  display:flex;
  gap: .6rem;
}

.media-arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.media-arrow:hover{ background: rgba(255,255,255,.08); }

/* Responsive */
@media (max-width: 991.98px){
  .media-top{ flex-direction: column; align-items:flex-start; }
  .media-card{ flex-basis: calc(50% - .75rem); }
}
@media (max-width: 575.98px){
  .media-card{ flex-basis: 88%; min-width: 88%; }
  .media-body{ min-height: 220px; }
}
/* ===== FAQ ===== */
.faq-section{
  background:#fff;
}

.faq-title{
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  color:#111;
}

.faq-subtitle{
  color:#6b6b6b;
  font-size: .95rem;
}

.faq-wrap{
  max-width: 720px;
}

/* Card-like accordion look */
.faq-item{
  border: 0;
  margin-bottom: .9rem;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

/* Closed state: just a clean row */
.faq-btn{
  background: transparent;
  color:#1b1b1b;
  font-weight: 600;
  padding: 1.05rem 1.1rem;
  border: 0;
  box-shadow: none !important;
}

/* Open state: light green highlight like reference */
.accordion-item:has(.accordion-collapse.show){
  background: #eef6df;
}

/* Body text */
.faq-body{
  padding: 0.5 1.1rem 1.1rem;
  color:#5a5a5a;
  font-size: .92rem;
  line-height: 1.6;
}

/* Replace Bootstrap chevron with plus/minus circle */
.faq-btn::after{
  background-image: none !important;
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #1c7a3d;
  color:#0765AD;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  font-size: 14px;
  transform: none !important;
}

.faq-btn:not(.collapsed)::after{
  content: "–";
}

/* ===== GREEN CTA ===== */
.cta-green{
  position: relative;
  background:#0765AD;
  color:#fff;
  overflow:hidden;
}

.cta-bg{
  position:absolute;
  inset:0;
  background-image: url("../images/pattern.svg");
  /* background-size: 100% 100%; */
  /* background-position: center; */
  opacity: .18; /* subtle texture like reference */
  /* transform: scale(1.03); */
}

.cta-inner{
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.cta-small{
  font-size: .8rem;
  letter-spacing: .08em;
  opacity: .9;
  margin-bottom: .35rem;
}

.cta-title{
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  margin:0;
}

.cta-btn{
  background:#fff;
  color:#0765AD;
  border-radius: 999px;
  padding: .6rem 1.4rem;
  font-weight: 600;
  border: 0;
}
.cta-btn:hover{
  opacity: .92;
  color:#0765AD;
}
/* ===== Shared section title (matches your screenshot style) ===== */
.section-title{
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  color:#111;
}

/* ===== About Us ===== */
.about-section{
  background:#fff;
}

.about-card{
  max-width: 900px;
}

.about-img{
  width: 100%;
  height: clamp(220px, 32vw, 340px);
  object-fit: cover;
  border-radius: 12px;
  display:block;
}

.about-text{
  padding-top: 1.1rem;
}

.about-lead{
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 500;
  color:#222;
  line-height: 1.35;
}

.about-para{
  font-size: .82rem;
  color:#666;
  line-height: 1.55;
}

/* ===== Commitment ===== */
.commit-section{
  background:#f2f2f2; /* light gray like reference */
}

.commit-title{
  font-weight: 700;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  color:#111;
  line-height: 1.15;
}

/* Card base */
.commit-card{
  border-radius: 12px;
  padding: 1.35rem 1.2rem;
  min-height: 190px;
  display:flex;
  flex-direction: column;
  justify-content: flex-start;
}

.commit-card-title{
  font-weight: 700;
  font-size: 1.21rem;
  margin: 0 0 .6rem;
  color:#fff;
}

.commit-card-text{
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}

/* Colors (3 different greens like reference) */
.commit-card--mission{
  background: #206FB1;
}
.commit-card--vision{
  background: #D9D9D9;
}
.commit-card--objective{
  background: #9acb45;
}
.commit-card--objective .commit-card-text{
  color: rgba(255,255,255,.92);
}

/* Responsive tweaks */
@media (max-width: 575.98px){
  .about-card{ max-width: 100%; }
  .commit-card{ min-height: auto; }
}

/* ===== Our Identity ===== */
.identity-section{
  background:#fff;
}

.identity-top{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items:start;
}

.identity-title{
  font-weight: 500;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  color:#111;
  margin:0;
}

.identity-desc{
  margin: .35rem 0 0;
  color:#555;
  font-size: .82rem;
  line-height: 1.55;
  max-width: 760px;
}

/* Cards */
.identity-card{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 2rem 1.6rem 3.1rem;
  min-height: 270px;
  color:#fff;
}

/* Pattern overlay (place your image) */
.identity-pattern{
  position:absolute;
  inset:0;
  background-image: url("../images/pattern.svg");
  /* background-repeat: repeat; */
  /* background-size: 130px; */
  opacity: .28;
  pointer-events:none;
}

.identity-card--blue{ background:#123a63; }
.identity-card--green{ background:#0f6a3b; }

.identity-card-title{
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.identity-card-text{
  position: relative;
  z-index: 1;
  margin:0;
  font-size: .78rem;
  line-height: 1.65;
  opacity: .95;
  max-width: 55ch;
}

/* Plus button bottom-right */
.identity-plus{
  position:absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.9);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight: 800;
  line-height: 1;
  z-index: 2;
}
.identity-plus:hover{
  background: rgba(255,255,255,.10);
  color:#fff;
}

/* Responsive */
@media (max-width: 991.98px){
  .identity-top{
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .identity-desc{ margin: 0; }
  .identity-card{ min-height: auto; }
}

/* ===== Our Philosophy ===== */
.philosophy-section{
  position: relative;
  background:#eef6df; 
  /* opacity: .35; */
  background-image: url("../images/pattern.svg");
  
  overflow:hidden;
}

.philosophy-bg{
  position:absolute;
  inset:0;
  background-image: url("../images/pattern.svg");
  /* background-size: cover; */
  /* background-position: center; */
  /* opacity: .35; */
  /* transform: scale(1.03); */
  pointer-events:none;
}

.philosophy-title{
  position: relative;
  z-index: 1;
  color:#0f6a3b;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin:0 0 .75rem;
}

.philosophy-urdu{
  position: relative;
  z-index: 1;
  color:#2f9b4a;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1;
}

.philosophy-text{
  position: relative;
  z-index: 1;
  color:#555;
  font-size: .78rem;
  line-height: 1.75;
}
/* ===== Our Principles ===== */
.principles-section{
  background:#dff1f1; /* light aqua like reference */
}

.principles-grid{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  align-items:start;
}

/* Left intro */
.principles-intro{
  padding-top: .25rem;
}
.principles-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  color:#111;
  margin:0 0 .85rem;
}
.principles-desc{
  color:#4a4a4a;
  font-size: .95rem;
  line-height: 1.65;
  max-width: 320px;
}

/* Cards area grid (desktop) */
.principles-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

/* Make last row (3 cards) align like reference */
@media (min-width: 992px){
  .principles-cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  /* layout: first row has 2 cards (col 2-3), second row has 3 cards */
  .principle-card:nth-child(1){ grid-column: 1 / span 1; }
  .principle-card:nth-child(2){ grid-column: 2 / span 1; }
  .principle-card:nth-child(3){ grid-column: 1 / span 1; }
  .principle-card:nth-child(4){ grid-column: 2 / span 1; }
  .principle-card:nth-child(5){ grid-column: 3 / span 1; }

  /* intro sits left; cards take the rest */
  .principles-grid{
    grid-template-columns: 340px 1fr;
  }
}

/* Card style */
.principle-card{
  background:#fff;
  border-radius: 18px;
  padding: 1.45rem 1.35rem 1.55rem;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
  min-height: 250px;
}

.principle-icon{
  color:#0765AD;
  margin-bottom: .9rem;
}

.principle-title{
  color:#0765AD;
  font-weight: 500;
  font-size: 1.45rem;
  margin: 0 0 .9rem;
}

.principle-text{
  color:#565656;
  font-size: .92rem;
  line-height: 1.7;
  margin:0;
}

/* ===== Mobile: cards become slider ===== */
.principles-mobile-arrows{
  display:none;
  margin-top: 1rem;
  gap: .6rem;
}

.principles-arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.55);
  color:#111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

@media (max-width: 991.98px){
  .principles-grid{
    grid-template-columns: 1fr;
  }
  .principles-desc{ max-width: 520px; }

  /* slider mode */
  .principles-cards{
    display:flex;
    overflow-x:auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: .25rem .1rem;
    scrollbar-width: none;
  }
  .principles-cards::-webkit-scrollbar{ height:0; }

  .principle-card{
    flex: 0 0 92%;
    min-height: auto;
    scroll-snap-align: start;
  }

  .principles-mobile-arrows{
    display:flex;
  }
}

/* ===== Our Values ===== */
.values-section{
  background:#fff;
}

.values-head{
  max-width: 820px;
}

.values-title{
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  color:#111;
}

.values-desc{
  color:#555;
  font-size: .92rem;
  line-height: 1.6;
}

/* Desktop grid */
.values-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* Flip card container */
.value-card{
  border-radius: 14px;
  height: clamp(200px, 22vw, 260px);
  perspective: 1200px;
  cursor: pointer;
}

.value-card-inner{
  width:100%;
  height:100%;
  position:relative;
  transform-style: preserve-3d;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
  border-radius: 14px;
}

/* Hover flip (desktop) */
@media (hover: hover) and (pointer: fine){
  .value-card:hover .value-card-inner{
    transform: rotateY(180deg);
  }
}

/* Tap flip helper (JS toggles .is-flipped) */
.value-card.is-flipped .value-card-inner{
  transform: rotateY(180deg);
}

/* Faces */
.value-face{
  position:absolute;
  inset:0;
  border-radius: 14px;
  backface-visibility: hidden;
  overflow:hidden;
  background:#0765AD;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction: column;
  padding: 1.25rem;
}

/* pattern background */
.value-pattern{
  position:absolute;
  inset:0;
  background-image: url("../images/pattern.svg");
  /* background-repeat: repeat; */
  /* background-size: 240px; */
  opacity: .58;
  pointer-events:none;
}

/* Front content */
.value-urdu{
  position: relative;
  z-index: 1;
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1;
  font-weight: 500;
  margin-bottom: .8rem;
}

.value-caption{
  position: relative;
  z-index: 1;
  font-size: .85rem;
  opacity: .95;
}

/* Back face */
.value-back{
  transform: rotateY(180deg);
  text-align: left;
  align-items:flex-start;
  justify-content:flex-end;
  gap: .5rem;
}

.value-back-title{
  position: relative;
  z-index: 1;
  font-weight: 700;
  margin:0;
  font-size: 1.15rem;
}

.value-back-text{
  position: relative;
  z-index: 1;
  margin:0;
  font-size: .88rem;
  line-height: 1.55;
  opacity: .95;
  max-width: 52ch;
}

/* ===== Mobile: slider (one card per swipe) ===== */
@media (max-width: 575.98px){
  .values-grid{
    display:flex;
    gap: 1rem;
    overflow-x:auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: .25rem .1rem;
    scrollbar-width: none;
  }
  .values-grid::-webkit-scrollbar{ height:0; }

  .value-card{
    flex: 0 0 92%;
    scroll-snap-align: start;
    height: 220px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .value-card-inner{ transition: none; }
}

/* --- Flip card: FIXED --- */
.value-card{
  border-radius: 14px;
  height: clamp(200px, 22vw, 260px);
  perspective: 1200px;
  cursor: pointer;
  /* important: allow 3D rendering */
  transform: translateZ(0);
}

.value-card-inner{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;

  transform-style: preserve-3d;
  will-change: transform;
}
.value-card-inner{
  transition: transform 2.6s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Flip on hover (desktop) */
.value-card:hover .value-card-inner{
  transform: rotateY(180deg);
}

/* Flip when JS toggles (mobile/tap) */
.value-card.is-flipped .value-card-inner{
  transform: rotateY(180deg);
}

.value-face{
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  background:#0765AD;
  color: #fff;
}

/* front face */
.value-front{
  transform: rotateY(0deg);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction: column;
  padding: 1.25rem;
}

/* back face */
.value-back{
  transform: rotateY(180deg);
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  flex-direction: column;
  padding: 4.25rem;
  text-align:left;
}
/* ===== Our Founder ===== */
.ourfounder-section{
  background:#e7a77d; /* peach like reference */
}

.ourfounder-card{
  background:#fff;
  border-radius: 14px;
  overflow:hidden;
  max-width: 980px;
  margin: 0 auto;
}

.ourfounder-img{
  width:100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display:block;
}

.ourfounder-body{
  padding: 3rem 3.2rem;
}

.ourfounder-title{
  font-weight: 700;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  margin:0 0 1rem;
  color:#111;
}

.ourfounder-text{
  color:#555;
  font-size: .92rem;
  line-height: 1.7;
  max-width: 55ch;
}

.ourfounder-btn{
  background:#2f2f2f;
  color:#fff;
  border-radius: 999px;
  padding: .65rem 1.25rem;
  border: 0;
}
.ourfounder-btn:hover{ background:#1f1f1f; color:#fff; }

/* Responsive */
@media (max-width: 991.98px){
  .ourfounder-body{ padding: 1.6rem 1.4rem; }
  .ourfounder-img{ min-height: 240px; }
}


/* ===== Our Leadership ===== */
.leadership-section{
  background:#0765AD; /* deep green */
  color:#fff;
}

.leadership-grid{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

/* center the right content visually */
.leadership-right{
  max-width: 560px;
}

/* optional: slightly center the whole block */
.leadership-section .container{
  display:flex;
  justify-content: center;
}

.leadership-title{
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color:#fff;
}

.leadership-text{
  color: rgba(255,255,255,.92);
  font-size: .95rem;
  line-height: 1.7;
}

.leadership-btn{
  background:#fff;
  color:#0f6a3b;
  border-radius: 999px;
  padding: .65rem 1.25rem;
  font-weight: 600;
  border: 0;
}
.leadership-btn:hover{ opacity:.92; color:#0f6a3b; }

/* Responsive */
@media (max-width: 991.98px){
  .leadership-grid{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}


/* ===== Education Banner ===== */
.edu-banner{
  position: relative;
  min-height: clamp(180px, 22vw, 260px);
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
}

/* background image */
.edu-banner__bg{
  position:absolute;
  inset:0;
  background-image: url("../images/freeloan.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  z-index: 0;
}

/* green overlay */
.edu-banner__overlay{
  position:absolute;
  inset:0;
  background: rgba(8, 90, 55, .70);
  z-index: 1;
}

/* content */
.edu-banner__content{
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.4rem) 0;
}

.edu-banner__icon{
  width: clamp(44px, 5vw, 70px);
  height: auto;
  display:inline-block;
  margin-bottom: .15rem;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.25));
}

.edu-banner__title{
  font-weight: 600;
  letter-spacing: .02em;
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 3.2rem);
}

.edu-banner__divider{
  width: 56px;
  height: 3px;
  background: rgba(255,255,255,.9);
  margin: .9rem auto 1rem;
  border-radius: 999px;
}

.edu-banner__text{
  font-size: clamp(.95rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  opacity: .95;
  text-shadow: 0 6px 18px rgba(0,0,0,.28);
}

/* mobile padding */
@media (max-width: 575.98px){
  .edu-banner__content{
    padding: 1.4rem .75rem;
  }
}

/* ===== Article + Donation form layout ===== */
.donate-article{
  background:#fff;
}

/* left side */
.donate-article__imgwrap{
  border-radius: 6px;
  overflow:hidden;
  background:#f2f2f2;
}

.donate-article__img{
  width:100%;
  height: auto;
  display:block;
}

.donate-article__meta{
  display:flex;
  flex-direction: column;
  gap: .35rem;
  margin-top: .85rem;
  font-size: .9rem;
}

.donate-article__cat{
  color:#0765AD;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}
.donate-article__cat::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background:#0765AD;
  display:inline-block;
}

.donate-article__date{
  color:#1b1b1b;
  font-size: .9rem;
}

.donate-article__content{
  margin-top: 1.2rem;
  color:#3a3a3a;
  font-size: .95rem;
  line-height: 1.85;
  max-width: 64ch;
}

/* ===== Bank Details Panel (replaces form) ===== */
.bank-panel{
  max-width: 460px;
  margin-left: auto;
  background: #fff;
}

.bank-panel__head{
  background:#0660AB;
  color:#fff;
  font-weight: 600;
  padding: .65rem .9rem;
}

.bank-panel__body{
  border: 1px solid #e6e6e6;
  border-top: 0;
  padding: 1rem;
}

/* QR */
.bank-qr{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction: column;
  gap: .5rem;
  padding: .75rem;
  border: 1px dashed #cfd6df;
  border-radius: 10px;
  background: #fafafa;
}

.bank-qr__img{
  width: 210px;
  max-width: 100%;
  height: auto;
  display:block;
}

.bank-qr__hint{
  font-size: .85rem;
  color:#0765AD;
  font-weight: 600;
}

/* Details list */
.bank-details{
  margin-top: 1rem;
}

.bank-details__title{
  font-weight: 700;
  color:#111;
  font-size: .95rem;
  margin: .2rem 0 .75rem;
}

.bank-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: .75rem;
  padding: .45rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.bank-label{
  color:#666;
  font-size: .85rem;
}

.bank-value{
  color:#111;
  font-size: .88rem;
  font-weight: 600;
  word-break: break-word;
}

.bank-sep{
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid #eaeaea;
}

/* CTA */
.bank-cta{
  margin-top: 1rem;
  background:#0765AD;
  color:#fff;
  border-radius: 6px;
  padding: .6rem 1rem;
  font-weight: 600;
  border:0;
}
.bank-cta:hover{
  background:#0765AD;
  color:#fff;
}

/* Responsive */
@media (max-width: 991.98px){
  .bank-panel{
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 575.98px){
  .bank-row{
    grid-template-columns: 1fr;
    gap: .2rem;
  }
  .bank-label{
    font-size: .8rem;
  }
}

/* ===== Contact Us heading strip ===== */
.contact-hero{
  background:#eef6df; /* light greenish like reference */
}

.contact-hero__title{
  color:#0765AD;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.2vw, 4rem);
}

/* ===== Branch Network section ===== */
.branch-section{
  background:#0765AD;
  color:#fff;
}

.branch-grid{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 2rem;
}

.branch-kicker{
  font-size: .95rem;
  letter-spacing: .08em;
  opacity: .9;
  margin-bottom: .8rem;
}

.branch-title{
  font-weight: 500;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

/* Dropdown pill (matches reference style) */
.branch-select-wrap{
  min-width: min(520px, 100%);
  display:flex;
  justify-content: flex-end;
}

.branch-select{
  width: 100%;
  max-width: 420px;
  padding: .9rem 3.1rem .9rem 1.25rem;
  border-radius: 999px;
  border: 0;
  outline: none;
  font-size: 1rem;
  background: #fff;
  color:#111;

  /* custom arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #3f3f3f 50%),
    linear-gradient(135deg, #3f3f3f 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 52%,
    calc(100% - 16px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 991.98px){
  .branch-grid{
    flex-direction: column;
    align-items: flex-start;
  }
  .branch-select-wrap{
    width: 100%;
    justify-content: flex-start;
  }
  .branch-select{
    max-width: 520px;
  }
}

/* ===== Branch list + map ===== */
.branchmap-section{
  background:#fff;
}

.branchmap-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items:start;
}

/* Left list container */
.branchlist{
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  height: 520px; /* like screenshot */
  display:flex;
  flex-direction: column;
}

.branchlist-head{
  display:flex;
  align-items:center;
  gap:.6rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #ededed;
  font-size: 1.05rem;
  color:#222;
}

.branchlist-phone-icon{
  width: 28px;
  height: 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.branchlist-scroll{
  overflow:auto;
  padding: .4rem 0;
}

/* list items */
.branchitem{
  padding: 9.25rem 5.1rem;
  border-bottom: 1px solid #f0f0f0;
}

.branchitem-title{
  font-size: 1.95rem;
  font-weight: 700;
  color:#111;
  margin-bottom: .25rem;
}

.branchitem-person{
  color:#6b6b6b;
  font-size: 1.35rem;
  margin-bottom: .7rem;
}

.branchitem-phone{
  color:#222;
  font-size: 1.15rem;
  display:flex;
  align-items:center;
  gap:.6rem;
}
.branchitem-phone::before{
  content:"📞";
  font-size: 1rem;
}

/* Right map */
.branchmap{
  border-radius: 22px;
  overflow:hidden;
  height: 520px;
  border: 1px solid #e7e7e7;
}

.branchmap iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Responsive */
@media (max-width: 991.98px){
  .branchmap-grid{
    grid-template-columns: 1fr;
  }
  .branchlist, .branchmap{
    height: 420px;
  }
}

@media (max-width: 575.98px){
  .branchlist, .branchmap{
    height: 360px;
    border-radius: 16px;
  }
  .branchitem-title{
    font-size: 1.2rem;
  }
}
/* ===== Akhuwat GIS ===== */
.gis-section{
  background:#eef2f5; /* light gray/blue like screenshot */
}

.gis-title{
  color:#2f9b4a;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin:0;
}

.gis-text{
  color:#555;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

.gis-btn{
  background:#2f2f2f;
  color:#fff;
  border-radius: 999px;
  padding: .65rem 1.5rem;
  border:0;
}
.gis-btn:hover{ background:#1f1f1f; color:#fff; }

/* right image */
.gis-imgwrap{
  width: min(520px, 100%);
  border-radius: 22px;
  overflow:hidden;
  background:#ddd;
}

.gis-img{
  width:100%;
  height: auto;
  display:block;
}

/* ===== Green info strip (center aligned) ===== */
.info-strip{
  background:#0660AB;
  color:#fff;
}

.info-block{
  max-width: 360px;
  margin: 0 auto;
}

.info-title{
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .6rem;
}

.info-text{
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}

.info-text a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.info-text a:hover{
  color:#fff;
  border-bottom-color: rgba(255,255,255,.55);
}

/* Responsive */
@media (max-width: 991.98px){
  .gis-imgwrap{
    margin-left: 0 !important;
  }
}

/* ===== Founder Hero ===== */
.founder-hero{
  background:#d7cfb2; /* beige like reference */
}

.founder-hero__title{
  font-weight: 600;
  letter-spacing: -0.02em;
  color:#2a2a2a;
  line-height: 1.05;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  margin:0;
}

.founder-hero__text{
  color:#5a5a5a;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
  max-width: 56ch;
}

/* Image right */
.founder-hero__imgwrap{
  width: min(680px, 100%);
  border-radius: 26px;
  overflow:hidden;
  background:#cfcfcf;
}

.founder-hero__img{
  width:100%;
  height: auto;
  display:block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991.98px){
  .founder-hero__imgwrap{
    margin-left: 0 !important;
    border-radius: 20px;
  }
}

/* ===== Founder Detail + Quote ===== */
.founder-detail{
  background:#fff;
}

.founder-detail__text{
  color:#333;
  font-size: 1.01rem;   /* matches tight screenshot text */
  line-height: 1.65;
}

.founder-detail__text p{
  margin-bottom: 1.2rem;
}

/* Quote card */
.founder-quote{
  max-width: 680px;
  background:#f3f3f3;
  border-radius: 18px;
  padding: 2.6rem 2.2rem;
  margin: 2.2rem auto;
  text-align:center;
}

.founder-quote__text{
  color:#2f9b4a;
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  line-height: 1.45;
  font-weight: 500;
}

.founder-quote__by{
  color:#222;
  font-size: .78rem;
}

.founder-quote__name{
  font-weight: 600;
  margin-bottom: .2rem;
}

.founder-quote__role{
  opacity: .85;
}

.founder-detail__bottom{
  color:#333;
  font-size: 1.01rem;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 575.98px){
  .founder-detail__text,
  .founder-detail__bottom{
    font-size: .9rem; /* readability on mobile */
    text-align: justify;
    padding: 1%;
  }

  .founder-quote{
    padding: 1.6rem 1.2rem;
  }
}
/* ===== Recent Insights Section ===== */
.insights-section{
  background:#f4f0d8; /* beige like reference */
}

.insights-topline{
  height: 2px;
  background: rgba(0,0,0,.20);
  width: 100%;
  margin-bottom: 1.5rem;
}

.insights-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  color:#111;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.12;
}

/* Featured media */
.insights-featured-media{
  position: relative;
  display:block;
  border-radius: 18px;
  overflow:hidden;
  background:#ddd;
  aspect-ratio: 16 / 9;
}

.insights-featured-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.insights-featured-content{
  padding-top: .25rem;
}

.insights-featured-title{
  font-weight: 700;
  font-size: 2.95rem;
  color:#111;
  margin: 0 0 .6rem;
}

.insights-featured-text{
  color:#4f4f4f;
  font-size: 1.52rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.insights-btn{
  background:#2f2f2f;
  color:#fff;
  border-radius: 999px;
  padding: .6rem 1.35rem;
  border:0;
}
.insights-btn:hover{ background:#1f1f1f; color:#fff; }

/* Cards */
.insight-card{
  background: transparent;
}

.insight-thumb{
  position: relative;
  display:block;
  border-radius: 12px;
  overflow:hidden;
  background:#ddd;
  aspect-ratio: 16 / 9;
}

.insight-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.insight-title{
  margin: .9rem 0 0;
  font-weight: 600;
  color:#111;
  font-size: 1rem;
  line-height: 1.35;
}

/* Play badge (YouTube-like) */
.play-badge{
  position:absolute;
  left:50%;
  top:50%;
  width: 54px;
  height: 38px;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: rgba(255,0,0,.90);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.play-badge::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .insights-featured-content{
    padding-top: 0;
  }
}
/* ===== Media Contact Section ===== */
.media-contact{
  background:#0f6a3b; /* Akhuwat green */
  color:#fff;
}

.media-contact__content{
  max-width: 720px;
}

.media-contact__title{
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.media-contact__text{
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: .6rem;
  color: rgba(255,255,255,.95);
}

.media-contact__btn{
  background:#fff;
  color:#111;
  border-radius: 999px;
  padding: .7rem 1.8rem;
  font-weight: 600;
  border: 0;
}
.media-contact__btn:hover{
  background:#f1f1f1;
  color:#111;
}

/* Responsive */
@media (max-width: 575.98px){
  .media-contact__content{
    max-width: 100%;
  }
  .media-contact__text{
    font-size: 1rem;
  }
}

/* ===== Leaders Tabs ===== */
.leaders-tabs{ background:#fff; }

.leaders-nav{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2.2rem;
}

.leaders-tab{
  border: 0;
  background: transparent;
  padding: .9rem 0;
  font-size: 1.05rem;
  color:#8a8a8a;
  position: relative;
  border-bottom: 2px solid #d7d7d7;
}

.leaders-tab.is-active{
  color:#2f9b4a;
  border-bottom-color:#2f9b4a;
}

.leaders-panel{ display:none; }
.leaders-panel.is-active{ display:block; }

/* ===== Top row layout ===== */
.leaders-toprow{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

/* founder mini card */
.founder-mini__imgwrap{
  width: 100%;
  border-radius: 16px;
  overflow:hidden;
  background:#ddd;
}
.founder-mini__imgwrap img{
  width:100%;
  height:auto;
  display:block;
}
.founder-mini__name{
  margin-top: 1rem;
  font-weight: 600;
  color:#111;
}
.founder-mini__role{
  color:#666;
  font-size: .9rem;
}

/* meet banner */
.meet-banner{
  background:#d7cfb2; /* beige strip */
  border-radius: 14px;
  padding: 1.6rem 1.7rem;
  display:flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  min-height: 322px;
}

.meet-banner__title{
  font-weight: 600;
  font-size: 3.1rem;
  margin-bottom: .6rem;
  color:#111;
}

.meet-banner__text{
  color:#2a2a2a;
  font-size: 1.32rem;
  line-height: 1.6;
  max-width: 56ch;
}

/* book stack */
.book-stack{
  position: relative;
  width: 280px;
  height: 150px;
}
.book-stack img{
  position:absolute;
  width: 110px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
}
.book-stack img:nth-child(1){ left: 0;   top: 18px; transform: rotate(-10deg); opacity:.95; }
.book-stack img:nth-child(2){ left: 45px; top: 8px; transform: rotate(-4deg);  opacity:.98; }
.book-stack img:nth-child(3){ left: 95px; top: 0;  transform: rotate(0deg);   z-index: 3; }
.book-stack img:nth-child(4){ left: 150px; top: 8px; transform: rotate(5deg); opacity:.98; }
.book-stack img:nth-child(5){ left: 200px; top: 18px; transform: rotate(10deg); opacity:.95; }

/* ===== Directors grid ===== */
.directors-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}


.director-img{
  position: relative;
  border-radius: 16px;
  overflow:hidden;
  background:#d9d9d9;
  aspect-ratio: 4 / 3;
}

.director-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.director-plus{
  position:absolute;
  right: 14px;
  bottom: 14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.director-plus:hover{ background:#fff; }

.director-name{
  margin-top: .85rem;
  font-weight: 600;
  color:#111;
  font-size: .98rem;
}

.director-role{
  color:#666;
  font-size: .88rem;
  margin-top: .25rem;
}

/* placeholder */
.leaders-placeholder{
  background:#f5f5f5;
  border-radius: 14px;
  padding: 1.2rem;
  color:#666;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px){
  .leaders-toprow{
    grid-template-columns: 1fr;
  }
  .meet-banner{
    flex-direction: column;
    align-items: flex-start;
  }
  .book-stack{
    width: 100%;
    max-width: 320px;
  }
  .directors-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px){
  .leaders-nav{ grid-template-columns: 1fr; }
  .leaders-tab{ text-align:left; }
  .directors-grid{
    grid-template-columns: 1fr;
  }
  .director-img{
    aspect-ratio: 16 / 10;
  }
}

/* ===== Publications 3 Tabs (Centered) ===== */
.pub3{ background:#fff; }

/* green bar */
.pub3-bar{
  background:#2f9b4a;
  padding: .75rem 0;
}

.pub3-nav{
  display:flex;
  justify-content:center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pub3-tab{
  border:0;
  background:transparent;
  color:#fff;
  font-size:.9rem;
  padding:.45rem 1.25rem;
  border-radius:999px;
  opacity:.95;
}

.pub3-tab.is-active{
  background:#0f6a3b;
  opacity:1;
}

/* centered wrapper */
.pub3-wrap{
  max-width: 980px;        /* keeps content centered like screenshot */
  margin: 0 auto;
}

.pub3-title{
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color:#222;
  margin: 1.2rem 0 1.6rem;
}

/* panel show/hide */
.pub3-panel{ display:none; }
.pub3-panel.is-active{ display:block; }

/* table */
.pub3-tablebox{ width: 100%; }

.pub3-table thead th{
  background:#2f9b4a;
  color:#fff;
  font-weight: 600;
  font-size: .85rem;
  padding: .9rem 1rem;
  border:0;
}

.pub3-table tbody td{
  font-size: .82rem;
  color:#2b2b2b;
  padding: 1rem 1rem;
  border-bottom: 1px solid #e6e6e6;
}

.pub3-year{
  width: 90px;
  text-align:center;
  white-space:nowrap;
}
.pub3-action{
  width: 90px;
  text-align:center;
  white-space:nowrap;
}

.pub3-link{
  color:#2f9b4a;
  font-weight: 600;
  text-decoration:none;
  line-height: 1.1;
  display:inline-block;
}
.pub3-link:hover{ text-decoration:underline; }

/* pagination */
.pub3-pagination{
  display:flex;
  justify-content:center;
  gap:.5rem;
  padding: 1.6rem 0 0;
}

.pub3-page{
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border:0;
  background:#efefef;
  color:#222;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: .85rem;
}

.pub3-page.is-active{
  background:#2f9b4a;
  color:#fff;
}

/* placeholder */
.pub3-placeholder{
  background:#f5f5f5;
  border-radius: 12px;
  padding: 1.2rem;
  color:#666;
}

/* responsive */
@media (max-width: 575.98px){
  .pub3-nav{ justify-content:flex-start; gap: .75rem; }
  .pub3-tab{ padding:.42rem .95rem; font-size:.85rem; }
}

/* ===== Progress Reports Tab ===== */
.progress-intro{
  max-width: 720px;
  color:#555;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* inner tabs (Monthly / Yearly) */
.progress-nav{
  display:grid;
  grid-template-columns: 1fr 1fr;
  margin: 1rem 0 1.4rem;
}

.progress-tab{
  border:0;
  background:transparent;
  padding: .85rem 0;
  font-size: 1.05rem;
  color:#9a9a9a;
  border-bottom: 2px solid #d7d7d7;
}

.progress-tab.is-active{
  color:#2f9b4a;
  border-bottom-color:#2f9b4a;
}

/* panels */
.progress-panel{ display:none; }
.progress-panel.is-active{ display:block; }

/* card */
.progress-card{
  background:#f3f3f3;
  border-radius: 14px;
  padding: 2.3rem 2.1rem;
}

.progress-month{
  color:#2f9b4a;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: 0 0 1.5rem;
}

/* 2-column stats grid */
.progress-stats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6rem;
  row-gap: 2.1rem;
  max-width: 860px;
}

.progress-label{
  color:#333;
  font-size: .95rem;
  margin-bottom: .2rem;
}

.progress-value{
  color:#111;
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991.98px){
  .progress-stats{
    column-gap: 2.5rem;
  }
}

@media (max-width: 575.98px){
  .progress-nav{ grid-template-columns: 1fr; }
  .progress-stats{
    grid-template-columns: 1fr;
    row-gap: 1.4rem;
  }
  .progress-card{
    padding: 1.5rem 1.2rem;
  }
}

/* ===== Yearly Reports table ===== */
.yearly-card{
  background:#fff;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* black header */
.yearly-table thead th{
  background:#000;
  color:#fff;
  font-weight: 600;
  font-size: .82rem;
  padding: 1rem 1rem;
  border:0;
  white-space: nowrap;
}

/* rows */
.yearly-table tbody td{
  font-size: .82rem;
  padding: 1.05rem 1rem;
  border-bottom: 1px solid #e5e5e5;
  white-space: nowrap;
}

/* pagination like screenshot */
.yearly-pager{
  margin-top: 1.2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 1rem;
}

.yearly-btn{
  border:0;
  border-radius: 4px;
  padding: .55rem 1rem;
  font-size: .9rem;
}

.yearly-btn--muted{
  background:#d9dde2;
  color:#111;
}

.yearly-btn--green{
  background:#2f9b4a;
  color:#fff;
}

.yearly-page{
  font-size: .9rem;
  color:#111;
}

/* Responsive */
@media (max-width: 575.98px){
  .yearly-pager{
    flex-direction: column;
    gap: .6rem;
  }
  .yearly-btn{
    width: 100%;
    max-width: 280px;
  }
}
/* ===== Financial Statements ===== */
.financial-heading{
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.financial-section{
  max-width: 1100px;
  margin-inline: auto;
}

.financial-card{
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  padding: 1.5rem;
}

.financial-label{
  font-size: .95rem;
  color:#333;
}

.financial-doc{
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
}

.doc-icon{
  font-size: 1.2rem;
}

.financial-actions{
  display: flex;
  gap: .5rem;
}

/* Responsive */
@media (max-width: 991px){
  .financial-actions{
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 575px){
  .financial-heading{
    font-size: 1.5rem;
  }
}

/* ===== Books Strips ===== */
.book-strip--beige{ background:#f3dca8; }     /* top beige */
.book-strip--white{ background:#ffffff; }
.book-strip--light{ background:#f7f4dc; }     /* bottom light beige */

.book-title{
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin: 0 0 .8rem;
  color:#111;
}

.book-text{
  color:#2f2f2f;
  font-size: .92rem;
  line-height: 1.7;
  /* max-width: 62ch; */
  margin-bottom: 1.2rem;
}

.book-btn{
  border-radius: 999px;
  padding: .55rem 1.2rem;
  font-weight: 600;
  font-size: .85rem;
  border:0;
}
.book-btn--dark{
  background:#2b2b2b;
  color:#fff;
}
.book-btn--dark:hover{ background:#151515; color:#fff; }

.book-img{
  width: 100%;
  height: auto;
  display:inline-block;
}


/* Book 2 image in grey box */
/* .book-imagebox{
  background:#e9ebee;
  border-radius: 16px;
  padding: 2.2rem;
  width: min(520px, 100%);
} */

/* Book 3 image in white card */
/* .book-whitecard{
  background:#fff;
  border-radius: 18px;
  padding: 2.2rem;
  width: min(520px, 100%);
  display:inline-flex;
  justify-content:center;
} */
