/* Hero */
    .hero-section {
        background: #046b52;
        margin-top:75px;
        color: #fff; padding: 60px 0;
    }
    .hero-section h1 { font-weight: bold; }
    .hero-section p { font-size: 1.2rem; }
    .hero-section img { max-width: 100%; border-radius: 10px; }


.stats-box {
  background: #f8f9fa; /* light gray */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stats-box:hover {
  transform: translateY(-5px);
  background: #ffffff; /* white on hover */
}

    /* Programs Logos Section */
    #programs img.program-img {
        width: 140px;
        height: 140px;
        object-fit: contain;
        border-radius: 12px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 2px 8px rgba(3, 86, 66, 0.3);
        transition: transform 0.3s ease;
    }
    #programs img.program-img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(3, 86, 66, 0.6);
    }
    #programs .small {
        color: var(--brand-green);
        font-weight: 600;
        text-align: center;
        margin-top: 0.5rem;
        font-size: 0.95rem;
    }
     /* Stylish Search Bar */
  .stylish-search .form-control {
    background: #f9f9f9;
    transition: 0.3s ease;
  }

  .stylish-search .form-control:focus {
    background: #fff;
    box-shadow: 0 0 8px rgba(0,123,255,0.25);
    border-color: #80bdff;
  }

  .stylish-search .btn {
    background:linear-gradient(45deg, #25D366, #FFCC00);
    border: none;
    transition: all 0.3s ease;
  }

  .stylish-search .btn:hover {
    background:linear-gradient(45deg, #FFCC00, #25D366);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .two-line-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* show max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* ... if text is too long */
  line-height: 1.4rem;     /* line height */
  min-height: calc(1.4rem * 2); /* always reserve 2 lines */
  max-height: calc(1.4rem * 2);