    .post-card { transition: all 0.3s; }
    .post-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
    .post-image { height: 200px; object-fit: cover; width: 100%; }
    .pagination .page-link { border-radius: 5px; }

    body {
      font-family: 'Poppins', sans-serif;
    }

    /* Top bar */
    .top-bar {
      background: #333;
      color: #fff;
      font-size: 12px;
      padding: 5px 0;
    }

    .top-bar a {
      color: #fff;
      text-decoration: none;
      margin-left: 15px;
    }

    .top-bar a:hover {
      text-decoration: underline;
    }

    .social-icons i {
      color: #fff;
      margin-right: 10px;
    }

    /* Main header */
    .main-header {
      background: #fff;
      padding: 10px 0;
      border-bottom: 1px solid #ddd;
    }

    .main-header .logo img {
      max-height: 40px;
      border--right: 1px solid #ddd;;
    }

   
    /* Navbar */
    .navbar {
      background: #333;
    }

    .navbar-nav .nav-link {
      color: #fff;
      margin-right: 20px;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
      color: #8CC63F;
    }

    .donate-btn {
      background: #8CC63F;
      color: #fff !important;
      padding: 8px 10px;
      border-radius: 3px;
      font-weight: bold;
      margin-left: 10px;
    }

    .navbar-toggler {
      border: none;
    }

    .navbar-toggler-icon {
      background-image: none;
    }

    .navbar-toggler i {
      color: #fff;
      font-size: 24px;
    }
     
    .hero-slide {
      height: 70vh;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .hero-slide .content {
      position: absolute;
      bottom: 50px;
      left: 50px;
      background: rgba(0, 100, 0, 0.7);
      color: white;
      padding: 30px;
      max-width: 500px;
      border-radius: 10px;
      animation: fadeInUp 1s ease-in-out;
    }

    .carousel-item {
      transition: transform 1s ease-in-out;
    }

    .service-icon {
      font-size: 2.5em;
      color: green;
      margin-bottom: 10px;
      transition: transform 0.3s;
    }

    .service-icon:hover {
      transform: scale(1.2);
    }

    .card-img-top {
      height: 220px;
      object-fit: cover;
    }

    .card:hover {
      transform: translateY(-5px);
      transition: 0.3s ease-in-out;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .partners img {
      max-height: 60px;
      filter: grayscale(1);
      margin: 10px;
      transition: 0.3s ease;
    }

    .partners img:hover {
      filter: none;
      transform: scale(1.05);
    }

    footer a:hover {
      text-decoration: underline;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    nav.main-nav ul li.current a {
  font-weight: bold;
  color: #00aa00;
  border-bottom: 2px solid #00aa00;
}
