
/* Reset & base */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  body {
    margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5; color: #222;
  }
  a {
    text-decoration: none; color: inherit;
  }
  img {
    max-width: 100%; height: auto; display: block;
  }
  button {
    cursor: pointer; font-family: inherit;
  }





  
  /* Utility */
  .container {
    width: min(1200px, 90%);
    margin-inline: auto;
  }
  .btn {
    display: inline-block;
    background-color: #d72027;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  .btn:hover, .btn:focus {
    background-color: #a3161a;
    outline: none;
  }
  /* Top bar */
  .top-bar {
    background-color: #d72027;
    color: white;
    font-size: 0.875rem;
    padding: 0.35rem 1rem;
    display: flex;
    justify-content: left;
    gap: 1.5rem;
    align-items: left;
  }
  .top-bar a {
    color: white;
  }
  .top-bar svg {
    width: 16px; height: 16px; vertical-align: middle;
    fill: white;
  }

  /* Header & Nav */
  header {
    border-bottom: 1px solid #ddd;
  }
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.75rem;
  }

  /* Logo */
  .logo img {
    height: 45px;
  }

  .logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #d72027;
    margin-left: 0.5rem;
  }
  .logo-wrapper {
    display: flex;
    align-items: center;
  }

  /* Nav links */
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  nav li {
    position: relative;
  }
  nav a, nav button.nav-contact {
    font-weight: 600;
    font-size: 1rem;
    color: #2e5586;
    background: none;
    border: none;
    padding: 0.25rem 0.4rem;
  }
  nav a:hover, nav button.nav-contact:hover {
    color: #d72027;
  }

  button.nav-contact {
    border: 2px solid #2e5586;
    border-radius: 4px;
    padding: 0.4rem 1rem;
    background-color: #2e5586;
    color: white;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  button.nav-contact:hover, button.nav-contact:focus {
    background-color: #d72027;
    border-color: #d72027;
    outline: none;
  }

  /* Dropdown arrows */
  .dropdown-toggle::after {
    content: "▾";
    font-size: 0.6rem;
    margin-left: 0.3rem;
    color: #2e5586;
  }

  /* Hero section */
  .hero {
    position: relative;
    background: url('../images/home1.jfif') center/cover no-repeat;
    color: white;
    padding: 4rem 1rem;
    display: flex;
    align-items: left;
    min-height: 420px;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(46,85,134,0.6);
    z-index: 0;
  }
  .hero-content {
    position: relative;
    max-width: 650px;
    z-index: 1;
  }
  .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.1;
  }
  .hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  /* Section: Reach/Retention */
  .section-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-block: 4rem;
    flex-wrap: wrap;
  }
  .text-block {
    flex: 1 1 350px;
  }
  .text-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1f1f1f;
  }
  .text-block p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
  }
  .text-block .btn {
    font-size: 1rem;
  }
  .image-block {
    flex: 1 1 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
  }

  /* Proven results */
  .proven-results {
    background: linear-gradient(rgba(244, 248, 251, 0.85), rgba(244, 248, 251, 0.85)), url('../images/proven-result.jfif') center/cover no-repeat;
    padding: 3rem 1rem 4rem;
  }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin-inline: auto  ;
    margin-bottom: 3rem;
  }
  .result-card {
    background: white;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgb(0 0 0 / 0.07);
    padding: 1.75rem 1rem;
    text-align: center;
  }
  .result-card strong {
    font-size: 2.25rem;
    color: #d72027;
    display: block;
    margin-bottom: 0.3rem;
  }
  .result-card span {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
  }

  /* Stats & progress */
  .progress-area {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .progress-left {
    border-radius: 10px;
    overflow: hidden;
  }
  .progress-left img {
    width: 100%;
    border-radius: 10px;
  }
  .progress-right {
    background: white;
    border-radius: 10px;
    padding: 2rem 2.5rem;
    box-shadow: 0 6px 22px rgb(0 0 0 / 0.1);
  }
  .progress-bar-group {
    margin-bottom: 1.5rem;
  }
  .progress-bar-label {
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    color: #2e5586;
  }
  .progress-bar {
    background-color: #eee;
    border-radius: 14px;
    height: 14px;
    overflow: hidden;
  }
  .progress-bar-fill {
    height: 100%;
    background-color: #497daf;
    border-radius: 14px 0 0 14px;
    width: 0;
    transition: width 1.2s ease-out;
  }
  .progress-percent {
    font-weight: 600;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    color: #555;
  }

  /* Cards section */
  .head-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #2e5586, #d72027);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .cards-section {
    padding: 3rem 1rem 6rem;
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem;
  }
  .card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
  }
  .card:hover, .card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgb(0 0 0 / 0.15);
  }
  .card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  .card-body {
    padding: 1rem 1.25rem 1.5rem;
  }
  .card-body h3 {
    font-size: 1.2rem;
    color: #2e5586;
    margin-bottom: 0.5rem;
  }
  .card-body p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  .card-body a {
    color: #d72027;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .card-body a:hover, .card-body a:focus {
    text-decoration: underline;
  }

  /* It all starts local section */
  .local-starts {
    padding: 5rem 1rem 6rem;
    background-color: #f9f9f9;
  }
  .local-title {
    text-align: center;
    font-weight: 700;
    font-size: 2.25rem;
    color: #2e5586;
    margin-bottom: 3rem;
  }
  .timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .timeline-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
    text-align: center;
    max-width: 250px;
    transition: transform 0.3s ease;
  }
  .timeline-step:hover {
    transform: translateY(-5px);
  }
  .timeline-content h3 {
    font-size: 1.25rem;
    color: #d72027;
    margin-bottom: 0.5rem;
  }
  .timeline-content p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
  }
  .timeline-num {
    background-color: #d72027;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 1rem;
  }

  /* Blog/news section */
  .blog-news {
    max-width: 1200px;
    margin-inline: auto;
    padding: 3rem 1rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .video-block {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgb(0 0 0 / 0.12);
  }
  .video-block video, .video-block img {
    width: 100%;
    height: auto;
    display: block;
  }
  .news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .news-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #2e5586;
  }
  .btn-viewall {
    font-size: 0.9rem;
    background-color: #d72027;
    padding: 0.4rem 1rem;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  .btn-viewall:hover, .btn-viewall:focus {
    background-color: #a3161a;
    outline: none;
  }
  .news-item {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .news-content {
    flex: 1;
  }
  .news-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #d72027;
  }
  .news-item p {
    font-size: 0.9rem;
    color: #444;
  }
  .news-item a {
    color: #497daf;
    font-weight: 600;
    font-size: 0.9rem;
  }
  .news-item a:hover, .news-item a:focus {
    text-decoration: underline;
  }
  .news-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
  }

  /* Partner with us */
  .partner-section {
    background: url('../images/partner.jfif') center/cover no-repeat;
    padding: 6rem 1rem;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    filter: brightness(0.7);
    position: relative;
   border-radius: 6rem 0 6rem 0 ;
  }
  .partner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(46,85,134,0.7), rgba(215,32,39,0.7));
    z-index: 0;
  }
  .partner-section > * {
    position: relative;
    z-index: 1;
  }

  /* Small icons inline */
  svg.icon {
    width: 18px;
    height: 18px;
    fill: #fff;
  }



  /* Media queries */
  @media (max-width: 900px) {
    .section-content {
      flex-direction: column;
    }
    .progress-area {
      grid-template-columns: 1fr;
    }
    .blog-news {
      grid-template-columns: 1fr;
    }
    .local-starts {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
   
    .newsletter-form {
      flex-direction: column;
    }
  }
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 1.75rem;
    }
    .hero-content p {
      font-size: 1rem;
    }
    nav ul {
      display: none;
    }
    nav.active ul {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 65px;
      right: 1rem;
      background: white;
      border: 1px solid #ddd;
      border-radius: 6px;
      width: 180px;
      box-shadow: 0 6px 15px rgb(0 0 0 / 0.15);
      z-index: 99;
    }
    nav ul li {
      margin: 0.8rem 0;
      text-align: center;
    }
    nav .menu-toggle {
      display: block;
      cursor: pointer;
      font-size: 1.5rem;
      color: #2e5586;
    }
  }
  @media (min-width: 481px) {
    nav .menu-toggle {
      display: none;
    }
  }

/* Footer */
footer {
  background-color: #121212;
  color: #ccc;
  padding: 3rem 1rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: space-between;
  color: #ccc;
}
.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}
.footer-logo-column {
  flex: 1.5;
}
.footer-logo {
  font-weight: 900;
  font-size: 1.8rem;
  color: white;
  user-select: none;
  margin-bottom: 1rem;
  font-family: 'Segoe UI Black', 'Segoe UI Bold', sans-serif;
}
.footer-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #888;
  margin-bottom: 1.5rem;
  user-select: none;
}
.footer-newsletter label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #bbb;
  user-select: none;
  margin-top: 0.25rem;
}
.footer-newsletter label a {
  color: #bbb;
  text-decoration: underline;
  cursor: pointer;
}
.footer-newsletter label a:hover {
  color: #fff;
}
.footer-newsletter input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  color: #ececec;
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
  outline-offset: 2px;
}
.footer-newsletter input[type="email"]::placeholder {
  color: #888;
}
.footer-newsletter input[type="email"]:focus {
  border-bottom-color: #d72027;
  outline: none;
}
.footer-newsletter form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-newsletter button {
  background: none;
  border: none;
  color: #d72027;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.15rem 0.5rem;
  user-select: none;
  transition: color 0.3s ease;
}
.footer-newsletter button:hover {
  color: #a3161a;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  user-select: none;
}
.footer-links ul li {
  margin-bottom: 0.8rem;
  color: #bbb;
  font-size: 1rem;
}
.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.footer-links ul li a:hover {
  color: #fff;
}
.footer-links h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
  user-select: none;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #ccc;
  user-select: none;
  cursor: default;
}
.footer-contact svg {
  width: 20px;
  height: 20px;
  fill: #ccc;
  flex-shrink: 0;
}
.footer-contact a {
  color: #ccc;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
  color: #d72027;
}
.footer-badges {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  margin-top: 0.6rem;
  flex-wrap: wrap;
  user-select: none;
}
.footer-badges img {
  max-height: 48px;
  user-select: none;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #555;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  user-select: none;
  align-items: center;
}
.footer-bottom a {
  color: #555;
  cursor: pointer;
  margin: 0 0.5rem;
  white-space: nowrap;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom {
    justify-content: center;
    gap: 1rem;
  }
}
