/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fdfdfd;
  display: flex;
  flex-direction: column;
}


main.site-content {
  flex: 1;
}

h1, h2, h3 {
  font-weight: 700;
  color: #111;
}

p {
  font-size: 1rem;
  color: #444;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img.card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  max-height: 200px;
}

.hero {
  background-size: cover;
  background-position: center;
  color: white;
}

.stats, .testimonials {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.stats .container,
.testimonials .container {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 4rem 2rem;
  border-radius: 12px;
}

/* SOCIAL ICONS */
ul.social-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-left: 0;
  margin-top: 0.5rem;
}

ul.social-icons li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #EE9B00;
  font-weight: 500;
  transition: color 0.3s ease;
}

ul.social-icons li a:hover {
  color: #946000;
}

ul.social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* TEXT COLOR FIXES */
.hero-inner.text-center h1,
.hero-inner.text-center p,
.stats p,
.stats h3 {
  color: white;
}

/* FIXED TESTIMONIAL NAMES */
.testimonials span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #EE9B00;
}

.stats h2,
.testimonials h2 {
  color: #EE9B00!important;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}


.objectives {
  padding: 4rem 1rem;
  background-color: #fefefe;
}

.objectives h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #222;
}

.icon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.icon-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.icon-card i {
  color: #005F73;
  margin-bottom: 1rem;
  display: block;
}

.icon-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}


.full-bg-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  position: relative;
}

.full-bg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Overlay */
  z-index: 1;
}

.full-bg-hero .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.text-white {
  color: white;
}

/* --- UPDATED CORE VALUES ICON STYLES --- */
.icon-values li {
  position: relative;
  padding-left: 2.5rem;
  font-weight: 500;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-values li i {
  color: #005F73;
  font-size: 1.25rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E0F7F4;
  border-radius: 50%;
  flex-shrink: 0;
}


/* FORM STYLES */
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

form label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #222;
}

form input,
form select,
form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  width: 100%;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #005F73;
  outline: none;
}

form button {
  width: fit-content;
  align-self: flex-start;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #005F73;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
  background-color: #004553;
  transform: translateY(-2px);
}

#paypal-button-container {
  max-width: 400px;
  margin: 2rem auto 0;
  text-align: center;
}

/* Flex Hero */
.flex-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.flex-hero .left {
  flex: 1;
  min-width: 280px;
}

.flex-hero .right {
  flex: 1;
  text-align: center;
}

.responsive-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

.side-by-side {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.image-half, .text-half {
  flex: 1;
  min-width: 300px;
}

.image-half img {
  border-radius: 10px;
}

.rounded {
  border-radius: 10px;
}

.alt-section {
  background-color: #f8f8f8;
}

.highlight-section {
  background: linear-gradient(to right, #ffffff, #e6ffe3);
  padding: 3rem 1rem;
}


/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  position: relative;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-blue {
  color: #005F73; /* Blue */
  font-weight: 700;
  font-size: 1.4rem;
}

.logo-orange {
  color: #EE9B00; /* Orange */
  font-weight: 700;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .logo-img {
    height: 30px;
  }

  .logo-blue,
  .logo-orange {
    font-size: 1.1rem;
  }
}


.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #005F73;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  padding: 0.25rem;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.map-container {
  margin: 3rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  max-width: 75%;
  width: 100%;
}



.image-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Caption Overlay */
.carousel-caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  width: 100%;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-slide:hover .carousel-caption {
  opacity: 1;
}

.carousel-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.carousel-caption p {
  font-size: 0.95rem;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.4);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 3;
  border-radius: 5px;
}

.carousel-arrow:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-arrow.prev {
  left: 10px;
}

.carousel-arrow.next {
  right: 10px;
}

/* Dots */
/* .carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.carousel-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots span.active {
  background: #005F73;
} */


.about-awards .image-wrapper {
  margin-top: 2rem;
  text-align: center;
}

.about-awards .section-img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.card.with-img {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Fix overlay card text color */
.overlay-card-text h3,
.overlay-card-text p {
  color: #fff;
}

/* Show full award image */
.card.with-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-height: 450px;
}

.award-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
  overflow: auto;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.award-modal.active {
  display: flex;
  flex-direction: column;
}

.modal-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  color: white;
  animation: zoomIn 0.3s ease;
}

.modal-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.modal-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #EE9B00;
}

.modal-text p {
  font-size: 1rem;
  color: #eee;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 0.2rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

.modal-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.award-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.85);
}

.award-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  background: transparent;
}

.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.modal-text {
  color: white;
}

.modal-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 100;
}



.overlay-card-text {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1.5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  transition: all 0.3s ease;
}

.card.with-img:hover .overlay-card-text {
  background: rgba(0, 0, 0, 0.8);
}


/* HERO */
.hero {
  background: linear-gradient(to right, #ffffff, #e6ffe3);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0d0d0d;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.split-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.split-section .text {
  flex: 1 1 50%;
}

.split-section .image {
  flex: 1 1 50%;
  text-align: center;
}

.split-section img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.newsletter-section {
  background: linear-gradient(to right, #ffffff, #e6ffe3);
  padding: 4rem 1rem;
  color: #fff;
}

.newsletter-section h2 {
  color: #005F73;
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1rem;
  outline: none;
  color: #333;
  background-color: #fff;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #EE9B00;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.newsletter-form button i {
  font-size: 1rem;
}

.newsletter-form button:hover {
  background-color: #cc7d00;
}

@media (max-width: 576px) {
  .newsletter-section {
    padding: 2.5rem 1rem;
  }

  .newsletter-section h2 {
    font-size: 1.4rem;
  }

  .newsletter-section p {
    font-size: 0.9rem;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
}


/* Card Image Support */
.card-img-top {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
  height: 180px;
}

.full-bg-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  position: relative;
}

.full-bg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Optional dark overlay for text clarity */
  z-index: 1;
}

.full-bg-hero .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.text-white {
  color: #fff;
}

.full-bg-hero h1,
.full-bg-hero p {
  color: #fff;
}


/* APPLY TODAY SECTION */
.text-center {
  text-align: center;
}

.text-center .btn.primary {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  margin-top: 1.5rem;
  display: inline-block;
  border-radius: 8px;
  background-color: #EE9B00;
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.text-center .btn.primary:hover {
  background-color: #946000;
  transform: translateY(-2px);
}

.btn.primary {
  background: #005F73;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn.primary:hover {
  background: #004553;
}

.btn.secondary {
  background: white;
  border: 2px solid #005F73;
  color: #005F73;
}

.btn.secondary:hover {
  background: #f1fff0;
}

.btn.small {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: #005F73;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.btn.small:hover {
  background: #004553;
}

/* SECTIONS */
section {
  padding: 4rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2rem;
  color: #EE9B00;
}

.quote {
  background: #f1f1f1;
  padding: 2rem;
  border-left: 5px solid #EE9B00;
}

.quote p {
  font-style: italic;
}


.policy-section {
  background-color: #f8f8f8;
  padding: 4rem 1rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.policy-card {
  background: #fff;
  border-left: 6px solid #EE9B00;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-5px);
}

.policy-card h2 {
  color: #027a48;
  margin-bottom: 1rem;
}

.policy-card p,
.policy-card ul {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-card ul {
  padding-left: 1.5rem;
  list-style: disc;
}

@media (max-width: 768px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
}



/* FOOTER */
 .site-footer {
    background: #222;
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
  }

  .footer-links {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-links a {
  color: #EE9B00;
  text-decoration: none;
  margin: 0 0.3rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #946000;
}

.footer-contact p {
  margin: 0.2rem 0;
}


.footer-links li a {
  color: #EE9B00;
  text-decoration: none;
  font-weight: 500;
}

.footer-links li a:hover {
  text-decoration: underline;
}

/* EXISTING STYLES REMAIN UNCHANGED ABOVE */

/* --- IMPROVED CORE VALUES SECTION --- */
.values ul.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.values ul.grid-2 li {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.values ul.grid-2 li::before {
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* --- WHY WE EXIST SECTION --- */
.why-exist ul {
  padding-left: 0;
  margin-bottom: 1rem;
  list-style: none;
}

.why-exist ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.why-exist ul li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: #EE9B00;
  font-size: 1rem;
  top: 0;
}

.why-exist blockquote {
  border-left: 4px solid #EE9B00;
  padding: 1rem 1.5rem;
  font-style: italic;
  background: #f9f9f9;
  color: #222;
  border-radius: 6px;
  margin-top: 1rem;
}

/* --- ABOUT, VISION & MISSION --- */
.about h2, .about h3 {
  color: #EE9B00;
}

.about p, .about ul li {
  font-size: 1.05rem;
  color: #333;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li::before {
  content: '•';
  color: #005F73;
  margin-right: 0.5rem;
}

/* --- OUR IMPACT & TESTIMONIAL TITLES --- */
.stats h2,
.testimonials h2 {
  color: #EE9B00;
}

/* --- HERO BUTTON COLOR FIX --- */
.hero-buttons .btn {
  color: #EE9B00;
}

.hero-buttons .btn:hover {
  background-color: #946000;
}

/* --- SECTION DIVIDER LINES --- */
section:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}

/* --- RESPONSIVE IMPROVEMENTS --- */
@media (max-width: 768px) {
  .values ul.grid-2 li {
    flex-direction: column;
    text-align: center;
  }

  .values ul.grid-2 li::before {
    margin-bottom: 0.5rem;
  }
}

/* END OF CUSTOM UPDATES */


@media (max-width: 768px) {
  .testimonials .grid-2 {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .testimonials .quote {
    margin: 0 auto;
    max-width: 90%;
    padding: 1.5rem;
    text-align: left;
  }

  .testimonials .quote p {
    font-size: 1rem;
  }

  .testimonials .quote span {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
  }
}

/* EXISTING STYLES REMAIN UNCHANGED ABOVE */

/* --- IMPROVED CORE VALUES SECTION --- */
.values ul.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.values ul.grid-2 li {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.values ul.grid-2 li::before {
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* --- WHY WE EXIST SECTION --- */
.why-exist ul {
  padding-left: 0;
  margin-bottom: 1rem;
  list-style: none;
}

.why-exist ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.why-exist ul li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: #EE9B00;
  font-size: 1rem;
  top: 0;
}

.why-exist blockquote {
  border-left: 4px solid #EE9B00;
  padding: 1rem 1.5rem;
  font-style: italic;
  background: #f9f9f9;
  color: #222;
  border-radius: 6px;
  margin-top: 1rem;
}

/* --- ABOUT, VISION & MISSION --- */
.about h2, .about h3 {
  color: #EE9B00;
}

.about p, .about ul li {
  font-size: 1.05rem;
  color: #333;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li::before {
  content: '•';
  color: #EE9B00;
  margin-right: 0.5rem;
}

/* --- OUR IMPACT & TESTIMONIAL TITLES --- */
.stats h2,
.testimonials h2,
.ecosystem h2 {
  color: #EE9B00;
}

/* --- HERO BUTTON COLOR FIX --- */
.hero-buttons .btn {
  background-color: #005F73;
  color: white;
}

.hero-buttons .btn:hover {
  background-color: #004553;
}

/* --- SECTION DIVIDER LINES --- */
section:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}

/* --- RESPONSIVE IMPROVEMENTS --- */
@media (max-width: 768px) {
  .values ul.grid-2 li {
    flex-direction: column;
    text-align: center;
  }

  .values ul.grid-2 li::before {
    margin-bottom: 0.5rem;
  }

  .side-by-side {
    flex-direction: column;
  }

  .text-half, .image-half {
    width: 100%;
    padding: 0;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* --- CORE PROGRAMS RESPONSIVE GRID FIX --- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* --- GENERAL FLEX UTILITY FOR SECTIONS --- */
.side-by-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.text-half, .image-half {
  flex: 1 1 48%;
}

.responsive-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* END OF CUSTOM UPDATES */
/* --- IMPROVED CORE VALUES SECTION --- */
.values ul.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.values ul.grid-2 li {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.values ul.grid-2 li::before {
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-card-section {
  background-image: url('/static/images/image45.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
}


.contact-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 700px;
  text-align: left;
}


.contact-card h2 {
  color: #005F73;
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.8rem;
  font-size: 1rem;
  color: #333;
}

.contact-item i.icon-green {
  color: #005F73;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .contact-card {
    padding: 1.5rem;
  }

  .contact-item {
    font-size: 0.95rem;
    gap: 0.6rem;
  }

  .contact-item i.icon-green {
    font-size: 1rem;
  }
}

/* --- WHY WE EXIST SECTION --- */
.why-exist ul {
  padding-left: 0;
  margin-bottom: 1rem;
  list-style: none;
}

.why-exist ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.why-exist ul li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: #EE9B00;
  font-size: 1rem;
  top: 0;
}

.why-exist blockquote {
  border-left: 4px solid #EE9B00;
  padding: 1rem 1.5rem;
  font-style: italic;
  background: #f9f9f9;
  color: #222;
  border-radius: 6px;
  margin-top: 1rem;
}

/* --- ABOUT, VISION & MISSION --- */
.about h2, .about h3 {
  color: #005F73;
}

.about p, .about ul li {
  font-size: 1.05rem;
  color: #333;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li::before {
  content: '➤';
  color: #005F73;
  margin-right: 0.5rem;
}

/* --- ECOSYSTEM LIST STYLE FIX --- */
.ecosystem ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ecosystem ul li::before {
  content: '➤';
  color: #005F73;
  margin-right: 0.5rem;
}

/* --- CTA BUTTON STYLING FIX --- */
.cta .btn.secondary,
.cta .btn {
  background-color: transparent;
  border: 2px solid #005F73;
  color: #005F73;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin: 0.5rem;
  display: inline-block;
}

.cta .btn.secondary:hover,
.cta .btn:hover {
  background-color: #005F73;
  color: white;
}

/* --- TESTIMONIALS BACKGROUND --- */
.testimonials {
  background-image: url('/static/images/image22.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  color: white;
  text-align: center;
}

.testimonials blockquote {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
  font-style: italic;
  border-left: 5px solid #005F73;
}

/* --- STATS BACKGROUND IMAGE --- */
.stats {
  background-image: url('/static/images/image18.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  color: white;
  text-align: center;
}

.stats .stat {
  background: rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  border-radius: 12px;
}

/* --- OUR IMPACT & TESTIMONIAL TITLES --- */
.stats h2,
.testimonials h2,
.ecosystem h2 {
  color: #005F73;
}

/* --- HERO BUTTON COLOR FIX --- */
.hero-buttons .btn {
  background-color: white;
  color: #005F73;
}

.hero-buttons .btn:hover {
  background-color: #004553;
  color: white;
}

/* --- SECTION DIVIDER LINES --- */
section:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}

/* --- RESPONSIVE IMPROVEMENTS --- */
@media (max-width: 768px) {
  .values ul.grid-2 li {
    flex-direction: column;
    text-align: center;
  }

  .values ul.grid-2 li::before {
    margin-bottom: 0.5rem;
  }

  .side-by-side {
    flex-direction: column;
  }

  .text-half, .image-half {
    width: 100%;
    padding: 0;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats, .testimonials {
    background-attachment: scroll;
  }
}

/* --- CORE PROGRAMS RESPONSIVE GRID FIX --- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* --- GENERAL FLEX UTILITY FOR SECTIONS --- */
.side-by-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.text-half, .image-half {
  flex: 1 1 48%;
}

.responsive-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* END OF CUSTOM UPDATES */

/* RESPONSIVENESS */

@media (max-width: 768px) {
  .flex-hero {
    flex-direction: column;
    text-align: center;
  }

  .flex-hero .left,
  .flex-hero .right {
    width: 100%;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
  }

  .flex-hero .btn.primary {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* .logo {
    flex: 1;
    text-align: center;
    order: 2;
  } */

  .menu-toggle {
    order: 1;
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-top: 1px solid #eee;
    z-index: 1000;
  }

  .main-nav.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  .main-nav a {
    margin: 0.5rem 0;
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    display: block;
  }
}

@media (max-width: 480px) {
  /* .logo {
    font-size: 1.1rem;
  } */

  .card, .quote {
    padding: 1.25rem;
  }

  section {
    padding: 2rem 0;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
