/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
    box-sizing: border-box;
  }
  
  body {
    padding-top: 70px;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
  }
  
  a {
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* ===============================
     NAVBAR
  ================================ */
  .navbar-brand {
    letter-spacing: 0.5px;
  }
  
  .nav-link {
    font-weight: 500;
  }
  
  .nav-link.active {
    color: #dc3545 !important;
  }
  
  /* ===============================
     HERO SECTION
  ================================ */
  .hero-section {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: #fff;
    padding: 100px 0 70px;
  }
  
  .hero-section h1 {
    line-height: 1.2;
  }
  
  .hero-image {
    max-height: 420px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }
  
  /* ===============================
     IMPACT STATS
  ================================ */
  .bg-light h2 {
    font-size: 2.2rem;
  }
  
  /* ===============================
     ABOUT SECTION
  ================================ */
  #about img {
    border-radius: 12px;
  }
  
  /* ===============================
     BLOG CARDS
  ================================ */
  .blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card img {
    height: 220px;
    object-fit: cover;
  }
  
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .blog-card .card-body {
    padding: 20px;
  }
  
  .blog-card .card-title {
    font-weight: 600;
  }
  
  /* ===============================
     NEWSLETTER
  ================================ */
  .newsletter {
    background: #111;
  }
  
  .newsletter input {
    height: 48px;
  }
  
  /* ===============================
     DONATION
  ================================ */
  .donation-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  }
  
  .donation-box input {
    height: 48px;
  }
  
  /* ===============================
     CONTACT
  ================================ */
  .contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
  }
  
  .contact-box .form-control {
    border-radius: 6px;
  }
  
  /* ===============================
     FOOTER
  ================================ */
  footer i {
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  footer i:hover {
    color: #dc3545;
  }
  
  /* ===============================
     RESPONSIVE
  ================================ */
  @media (max-width: 992px) {
    .hero-section {
      padding: 80px 0 50px;
    }
  
    .hero-image {
      max-height: 320px;
    }
  }
  
  @media (max-width: 576px) {
    h1.display-6 {
      font-size: 1.8rem;
    }
  
    .hero-section {
      text-align: center;
    }
  }
  