    :root {
      --primary-color: #2c3e50;
      --secondary-color: #34495e;
      --cta-color: #f39c12;
      --light-bg: #f8f9fa;
      --text-color: #555;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-color);
      line-height: 1.7;
    }

    /* =========================
       Navbar
    ========================== */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .navbar-brand {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
    }

    .navbar-nav .nav-link {
      color: var(--primary-color);
      font-weight: 500;
      margin-left: 15px;
      transition: 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: var(--cta-color);
    }

    /* =========================
       Hero Carousel
    ========================== */
    .carousel-item {
      height: 100vh;
      min-height: 600px;
      position: relative;
    }

    .carousel-item img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      filter: brightness(0.55);
    }

    .carousel-caption {
      bottom: 25%;
      z-index: 2;
    }

    .carousel-caption h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .carousel-caption p {
      font-size: 1.1rem;
      margin-bottom: 25px;
    }

    .btn-custom {
      background-color: var(--cta-color);
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-custom:hover {
      background-color: #d68910;
      transform: translateY(-2px);
      color: #fff;
    }

    /* =========================
       Content Sections
    ========================== */
    .content-section {
      padding: 80px 0;
    }

    .content-section h2 {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 20px;
    }

.content-section img {
  width: 100%;
  height: 420px;              /* Fixed balanced height */
  object-fit: cover;          /* Prevent stretching */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* Slight zoom effect on hover */
.content-section img:hover {
  transform: scale(1.02);
}


    /* =========================
       Donation Section
    ========================== */
    .donation-section {
      background: var(--light-bg);
      padding: 90px 0;
    }

    .donation-card {
      background: #fff;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    }

    .donation-card h2 {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 30px;
    }

    .form-control,
    .form-check-input {
      border-radius: 10px;
    }

    .amount-option {
      padding: 12px 20px;
      border: 1px solid #ddd;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
      text-align: center;
      width: 100%;
    }

    .amount-option:hover {
      border-color: var(--cta-color);
      background: rgba(39, 174, 96, 0.08);
    }

    .form-check-input:checked + .amount-option {
      background: var(--cta-color);
      color: #fff;
      border-color: var(--cta-color);
    }
    /* =========================
       Subscription 
    ========================== */

/* =========================
   Subscription Plans
========================== */

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  border: 1px solid #e9ecef;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.plan-title {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 15px;
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: #f39c12;
  margin-bottom: 25px;
}

.plan-price span {
  font-size: 1rem;
  color: #777;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  margin-bottom: 15px;
  color: #555;
  font-weight: 500;
}

.plan-features i {
  color: #f39c12;
  margin-right: 10px;
}

.plan-badge,
.premium-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #f39c12;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.premium-plan {
  border: 2px solid #f39c12;
}

@media (max-width: 768px) {
  .plan-price {
    font-size: 2.3rem;
  }

  .plan-card {
    padding: 30px 22px;
  }
}

    /* =========================
       Footer
    ========================== */
    footer {
      background: #1f2933;
      color: #ddd;
      padding-top: 60px;
    }

    footer h5 {
      color: #fff;
      margin-bottom: 20px;
      font-weight: 600;
    }

    footer a {
      color: #ddd;
      text-decoration: none;
      transition: 0.3s ease;
    }

    footer a:hover {
      color: var(--cta-color);
    }

    .social-icons a {
      font-size: 1.3rem;
      margin-right: 15px;
      display: inline-block;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 40px;
      padding: 20px 0;
      text-align: center;
      font-size: 0.95rem;
    }
.donation-progress {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e9ecef;
}


    /* =========================
       Responsive
    ========================== */
    @media (max-width: 768px) {
      .carousel-caption h1 {
        font-size: 2rem;
      }

      .carousel-caption p {
        font-size: 1rem;
      }

      .carousel-item {
        min-height: 500px;
      }

      .donation-card {
        padding: 25px;
      }
  .content-section img {
    height: 260px;
  }      
    }