.banner {
  background: url('https://rpmission.org/images/back_image.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 944px;
}
 .donation-intro {
    text-align: center;
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  .donation-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
  }

  .donation-intro span.highlight {
    color: #f26b2c; /* Orange highlight */
    font-weight: bold;
  }

  .donation-intro small {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: #555;
  }
  .cut_txt{
      font-size: 13px;
      padding: 15px;
  }
  .donation-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid #aaa3a3;
      padding: 10px;
      border-radius: 10px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      background: #fff;
      height: 100%;
      position: relative;
  }

  /* Hide browser default */
  .donation-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* Custom checkbox */
  .checkbox-box {
      width: 15px;
      height: 15px;
      border: 2px solid #363232;
      border-radius: 0px;
      margin-bottom: 10px;
      background: #fff;
      transition: 0.3s;
      position: absolute;
      top: 4px;
      right: 4px;
  }

  /* Tick mark */
  .checkbox-box::after {
      content: "";
      position: absolute;
      left: 4px;
      top: 0px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 2px 2px 0;
      opacity: 0;
      transform: rotate(45deg);
      transition: 0.3s;
  }

  /* Active card */
  .donation-card.active {
    border-color: #ff6600;
    background: #ff6600;
  }
  .donation-card input:checked ~ .checkbox-box {
    background: #ff6600;
    border-color: #ff6600;
  }
  .donation-card input:checked ~ .checkbox-box::after {
    opacity: 1;
  }
  .donation-card input:checked ~ .card-title {
    color: #ffffff;
    font-weight: 600;
  }
  .donation-card input:checked ~ .card-desc {
    color: #ffffff;
  }

  /* Text styles */
  .donation-card .card-title {
    font-weight: 600;
    font-size: 10px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .donation-card .card-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  /* Donate button */
  .donate-btn {
    background: #ff6600;
    color: #fff;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 0px;
    transition: 0.3s;
    font-size: 16px;
  }
  .donate-btn:hover { background: #e65c00; }

  /* Quick amount buttons */
  .amount-btn {
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    background: #f8f8f8;
    font-weight: 500;
    transition: 0.3s;
  }
  .amount-btn.active {
    background: #ff6600;
    color: #fff;
    border-color: #ff6600;
  }
  .custom-btn {
    border: 1px dashed #aaa;
    background: transparent;
    color: #555;
  }
 .transparency-section {
    text-align: center;
    padding: 50px 20px;
  }

  .transparency-section h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 40px;
  }

  .transparency-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .card {
    background: #f8fbff;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }
  
/* Tablet & Mobile: Apply Parallax */
@media (max-width: 1024px) {
  .banner {
    background-attachment: fixed; /* Enable parallax only here */
  }
}