  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --teal: #0d7c6e;
    --teal-dark: #0a6358;
    --teal-light: #e8f5f3;
    --teal-mid: #1a9080;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #444;
    --text-light: #666;
    --border: #e0e0e0;
    --bg-light: #f7fafa;
    --font: 'Inter', sans-serif;
  }

  body { font-family: var(--font); color: var(--text-dark); background: var(--white); font-size: 15px; }

  /* HEADER */
  .header {
      position: sticky;
      top: 0;
      /* background: #fff;
      border-bottom: 1px solid var(--border); */
      z-index: 1000;
  }

  .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
  }


  a { text-decoration: none; color: inherit; }

  /* ───── NAV ───── */
  nav {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 30px 60px; 
    border-bottom: 1px solid var(--border);
    background: var(--white); 
    position: sticky; 
    top: 0; 
    z-index: 100;
  }


.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.brand-logo img { width: 126px; height: 100px;  }

  .logo { display: flex; align-items: center; gap: 10px; }
  .logo-icon {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .logo-icon img { width: 126px; height: 100px;  }
  .logo-text { line-height: 1.15; }
  .logo-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--teal); letter-spacing: .5px; }
  .logo-text span { font-size: 10px; color: var(--text-light); letter-spacing: .3px; }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); transition: color .2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--teal); }
  .nav-links a.active { border-bottom: 2px solid var(--teal); padding-bottom: 2px; }
  .nav-actions { display: flex; gap: 12px; align-items: center; }

   .mobile-header{
    display:none;
   }

.menu-toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
}

.mobile-nav {
    display: none;
}


  .btn-outline {
    padding: 8px 22px; border: 2px solid var(--teal); border-radius: 6px;
    color: var(--teal); font-weight: 600; font-size: 14px; background: transparent;
    cursor: pointer; transition: all .2s;
  }
  .btn-outline:hover { background: var(--teal-light); }
  .btn-solid {
    padding: 9px 22px; background: var(--teal); border-radius: 6px;
    color: var(--white); font-weight: 600; font-size: 14px; border: none;
    cursor: pointer; transition: background .2s;
  }
  .btn-solid:hover { background: var(--teal-dark); }

  /* ───── HERO ───── */
  .hero {
    display: grid; grid-template-columns: 1fr 1fr;
    padding: 60px 60px 0; gap: 40px; align-items: center;
    min-height: 480px; overflow: hidden;
  }
  .hero-left { padding-right: 20px; }
  .hero-left h1 {
    font-size: 46px; font-weight: 900; line-height: 1.1; color: var(--text-dark);
    margin-bottom: 0;
  }
  .hero-left h1 span { color: var(--teal); display: block; }
  .hero-left p {
    margin-top: 18px; font-size: 15px; color: var(--text-light);
    line-height: 1.7; max-width: 420px;
  }
  .hero-btns { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
  .hero-btn-primary {
    display: flex; align-items: center; gap: 8px;
    background: var(--teal); color: white; padding: 13px 24px;
    border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer;
    border: none; transition: background .2s;
  }
  .hero-btn-primary:hover { background: var(--teal-dark); }
  .hero-btn-secondary {
    display: flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text-dark); padding: 13px 24px;
    border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer;
    border: 2px solid var(--border); transition: border-color .2s;
  }
  .hero-btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

  /* Hero Right */
  .hero-right {
    position: relative; display: flex; align-items: flex-end; justify-content: center;
    height: 420px;
  }

  .hero-right-img{
    position:absolute; 
    bottom:0; left:50%; transform:translateX(-50%);
    width:100%; max-width:520px; height:auto;
    object-fit:contain; object-position:bottom;
             z-index:3;
  }

  .badge-card {
    position: absolute; right: 20px; top: 60px;
    background: white; border-radius: 14px; padding: 20px 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12); width: 190px; z-index: 5;
    text-align: center;
  }
  .badge-icon {
    width: 52px; height: 52px; background: var(--teal); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
  }
  .badge-icon svg { width: 28px; height: 28px; fill: white; }
  .badge-card h3 { font-size: 15px; font-weight: 800; color: var(--text-dark); line-height: 1.3; }
  .badge-card p { font-size: 12px; color: var(--text-light); margin-top: 6px; line-height: 1.5; }

  /* ───── FEATURE CARDS ───── */
  .features {
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 0; 
    margin-top: 30px;
  }
  .feature-card {
    padding: 28px 24px 24px; border-right: 1px solid var(--border);
    background: white; position: relative;
  }
  .feature-card:last-child { border-right: none; }
  .feature-icon {
    width: 44px; height: 44px; background: var(--teal-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  }
  .feature-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
  .feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
  .feature-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
  .feature-underline {
    width: 32px; height: 3px; background: var(--teal); border-radius: 2px; margin-top: 14px;
  }

  /* ───── STATS BANNER ───── */
  .stats-banner {
    background: var(--teal); color: white;
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 28px 60px; margin-top: 0; gap: 0;
  }
  .stat-item {
    display: flex; align-items: center; gap: 16px;
    border-right: 1px solid rgba(255,255,255,.25); padding: 0 24px;
  }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-right: none; }
  .stat-icon { width: 40px; height: 40px; opacity: .9; flex-shrink: 0; }
  .stat-icon svg { width: 40px; height: 40px; stroke: white; fill: none; stroke-width: 1.6; }
  .stat-num { font-size: 28px; font-weight: 900; line-height: 1; }
  .stat-label { font-size: 13px; opacity: .85; margin-top: 2px; }

  /* ───── BOTTOM SECTION ───── */
  .bottom-section {
    display: grid; grid-template-columns: 1fr 1fr ;
    gap: 0; padding: 0 60px; margin-top: 0;
    border-top: 1px solid var(--border);
  }
  /* Mission */
  .mission {
    padding: 36px 28px 36px 0; border-right: 1px solid var(--border);
  }
  .mission-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
  .mission-icon-wrap {
    width: 52px; height: 52px; background: var(--teal-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .mission-icon-wrap svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
  .mission h2 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
  .mission p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }
  .mission a { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 600; font-size: 13.5px; margin-top: 14px; }
  .mission a:hover { text-decoration: underline; }

  /* Testimonial */
  .testimonial {
    padding: 36px 28px; border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
  }
  .quote-icon { font-size: 36px; color: var(--teal); line-height: 1; font-family: Georgia, serif; margin-bottom: 10px; }
  .testimonial blockquote {
    font-size: 14.5px; color: var(--text-dark); line-height: 1.7; font-style: normal; flex: 1;
  }
  .testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
  .author-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: #c9a880;
    display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
  }
  .author-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
  .author-role { font-size: 12px; color: var(--text-light); }
  .dots { display: flex; gap: 6px; margin-top: 16px; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
  .dot.active { background: var(--teal); }

  /* Partners */
  .partners { padding: 36px 0 36px 28px; }
  .partners h2 { font-size: 17px; font-weight: 800; color: var(--teal); margin-bottom: 20px; }
  .partner-logos { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .partner-logo {
    padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 8px;
    font-size: 12px; font-weight: 700; color: var(--text-mid);
    display: flex; align-items: center; gap: 6px;
  }
  .partner-logo.un { border-color: #0078b2; color: #0078b2; }
  .partner-logo.unfpa { border-color: #0070a8; color: #0070a8; }
  .partner-logo.usaid { border-color: #002868; color: #002868; }
  .partner-logo.mac { border-color: #333; color: #333; }
  .partners a { color: var(--teal); font-weight: 600; font-size: 13.5px; margin-top: 16px; display: inline-block; }
  .partners a:hover { text-decoration: underline; }

  /* ───── FOOTER ───── */
  footer {
    background: var(--white); border-top: 1px solid var(--border);
    padding: 48px 60px 0;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr 1.5fr;
    gap: 32px; padding-bottom: 40px;
  }
  .footer-brand p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-top: 12px; max-width: 200px; }
  .footer-socials { display: flex; gap: 10px; margin-top: 16px; }
  .social-icon {
    width: 32px; height: 32px; border-radius: 50%; background: var(--teal-light);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: background .2s;
  }
  .social-icon:hover { background: var(--teal); }
  .social-icon:hover svg { stroke: white; }
  .social-icon svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 2; }
  .footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text-dark); }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 9px; }
  .footer-col ul li a { font-size: 13px; color: var(--text-light); transition: color .2s; }
  .footer-col ul li a:hover { color: var(--teal); }
  .footer-contact { display: flex; flex-direction: column; gap: 10px; }
  .contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-light); }
  .contact-row svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }
  .newsletter-form { display: flex; gap: 0; margin-top: 8px; }
  .newsletter-form input {
    flex: 1; padding: 9px 12px; border: 1.5px solid var(--border);
    border-radius: 6px 0 0 6px; font-size: 13px; outline: none;
    font-family: var(--font);
  }
  .newsletter-form input:focus { border-color: var(--teal); }
  .newsletter-form button {
    padding: 9px 16px; background: var(--teal); color: white;
    border: none; border-radius: 0 6px 6px 0; font-size: 13px; font-weight: 600;
    cursor: pointer; font-family: var(--font); white-space: nowrap;
  }
  .newsletter-form button:hover { background: var(--teal-dark); }
  .footer-bottom {
    border-top: 1px solid var(--border); padding: 16px 0; text-align: center;
    font-size: 12.5px; color: var(--text-light);
  }


 


/* MOBILE */
@media (max-width: 768px) {
  
  /* FEATURES */
  .features {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
  }

  /* STATS */
  .stats-banner {
      display: grid;
       grid-template-columns: 1fr;
      gap: 10px;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: none;
    padding: 0 24px;
    margin-bottom: 10px;
    padding-left: 0;
  }

  
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* pushes logo left, hamburger right */
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

  /* LOGO */
  .mobile-logo {
      display: flex;
      align-items: center;
  }

  .mobile-logo img {
      height: 85px; /* adjust to match your design */
      width: auto;
  }

  /* HAMBURGER BUTTON */
  .menu-toggle {
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      color: #333;
       display: block;
  }


  .desktop-nav{
    display: none;
  }
  .mobile-nav {
    display: flex; 
    flex-direction: column;
    gap: 16px;
  
    border-top: 1px solid var(--border);

    /* Animation setup */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;

    transition: 
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
  }

  .mobile-nav.open {
      max-height: 500px; /* adjust if menu is taller */
      opacity: 1;
      transform: translateY(0);
      padding: 20px;
      pointer-events: auto;
  }

    .mobile-nav a{
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
    }

    .hero {
      display:block;
      overflow:visible;
    }

    .badge-card{
      display: none;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      padding-bottom: 40px;
    }

    .hero-right-img {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 350px;
      z-index: 3;
    }
    .bottom-section {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      padding: 0 60px;
      margin-top: 0;
    }

    .mission {
      padding: 36px 28px 36px 0;
      border-bottom: 1px solid var(--border);
      border-right: none;
    }

    .hero-left h1 {
      font-size: 40px;
    }

    .feature-card:last-child {
      border-right: none;
      margin-bottom: 20px;
    }

    .feature-card {
      border-right: none;
      border-radius: 12px;
  }
  
  .hero-right {
    height: 334px;
  }
}