/* General */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #333;
    background: #fff;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
}


/* HERO SECTION */
.hero-section {
  background-color: #5a866c !important;
  color: #f9f9f9;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}


/* Remove overlay */
.hero-section::before {
  content: none;
}

/* Container stacking context */
.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Organization name */
.org-name {
  letter-spacing: 1.2px;
  opacity: 0.9;
  font-size: 1rem;
  color: #f9f9f9;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Heading */
.hero-content h1 {
  color: #f9f9f9;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* Lead paragraph */
.hero-content p.lead {
  color: #e0e0e0;
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Features list */
.hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero-features li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #d7d7d7;
  display: flex;
  align-items: center;
}

.hero-features i {
  font-size: 1.2rem;
  line-height: 1;
  margin-right: 0.5rem;
  color: #198754; /* Bootstrap green */
}

/* Buttons */
.btn-light {
  color: #5a866c;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-light:hover,
.btn-light:focus {
  background-color: #e6e6e6;
  color: #4b6e58;
  text-decoration: none;
}

.btn-outline-light {
  color: #f9f9f9;
  border-color: #f9f9f9;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: #f9f9f9;
  color: #5a866c;
  text-decoration: none;
}

/* Carousel */
.carousel-inner img {
  object-fit: cover;
  height: 400px;
  border-radius: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content p.lead {
    max-width: 100%;
  }

  .carousel-inner img {
    height: 280px;
  }

  .hero-features {
    justify-content: center;
  }
}




/* WELCOME SECTION */
.welcome-section {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* CORE ISSUES */
.issue-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 100, 0, 0.05);
    border-left: 5px solid #198754;
}

.issue-box .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #198754;
}

/* PROGRAMS */
.program-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 100, 0, 0.05);
    height: 100%; 
}

.program-card img {
    width: 40%;
    height: 250px; 
    object-fit: cover; 
}

.program-info {
    padding: 1.5rem;
    flex: 1; 
}

/* SUCCESS STORIES */
.story-card {
    background: #fff;
    border-radius: 10px;
    min-height: 200px;
    border: 1px solid #d1e7dd;
}

/* CTA */
.cta {
    background: url('../images/cta.jpg') center/cover no-repeat;
    position: relative;
    padding: 4rem 1rem;
    color: #fff;
}

.cta .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 83, 45, 0.7);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
}

/* FOOTER */
.footer {
    background: #e8f5e9;
    padding: 1rem;
    text-align: center;
    color: #333;
}

/* BUTTONS (Green accent) */
.btn-primary,
.btn-success,
.btn-outline-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-outline-success {
    background: transparent;
    color: #198754;
}

.btn-outline-success:hover {
    background-color: #198754;
    color: #fff;
}
