  /* Quote Section */
  .donation-quote {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #d62828;
    background: linear-gradient(135deg, #fffdf4, #fceabb);
    padding: 60px 20px 20px;
    line-height: 1.5;
  }

  .donation-quote span {
    color: #684734;
  }
  
  
  .head{
        margin-bottom: 25px;
    color: #684734;
    font-weight: 700;
    font-size: 3.5rem;
  }
  
  .data {
    color: #9b5a5a;
    font-weight: 500;
    font-size: 2rem; 
  }

  /* Donation Section */
  .donation-section {
    /*min-height: 80vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background: url('assets/img/gallery/Art-Work-for-Diwali-by-Kids-6-1024x683.jpg') center/cover no-repeat;
    position: relative;
  }

  .donation-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
  }

  /* Container */
  .donation-container {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    width: 100%;
    padding: 30px 30px;
    text-align: center;
  }

  .donation-container h2 {
    margin-bottom: 25px;
    color: #1f0874be;
    font-weight: 700;
    font-size: 4rem;
  }

  /* Buttons */
  .btn-toggle {
    width: 48%;
    font-weight: 600;
    border-radius: 10px;
  }

  /* Donation Box */
  .donation-box {
    background: #f9f9fb;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  }

  .donation-box table {
    width: 100%;
    text-align: center;
  }

  .donation-box td {
    padding: 14px 18px;
    background: #fff;

    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
  }

  .donation-box td:hover {
    background: #ffd166;
  }

  .donation-box td.active {
    background: #f77f00;
    color: #fff;
    /* gap: 10px; */
    border-color: #f77f00;

  }

  .custom-amount {
    margin-top: 15px;
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f77f00;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: #fff;
    outline: none;
    transition: 0.3s ease-in-out;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
  }

  .custom-amount::placeholder {
    color: #999;
    font-weight: 400;
  }

  .custom-amount:focus {
    border-color: #d62828;
    box-shadow: 0 0 8px rgba(246, 100, 10, 0.3);
  }

  .custom-amount {
    margin-top: 15px;
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ee7f08ff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: #fff;
    outline: none;
    transition: 0.3s ease-in-out;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
  }

  .custom-amount::placeholder {
    color: #999;
    font-weight: 400;
  }

  .custom-amount:focus {
    border-color: #d62828;
    box-shadow: 0 0 8px rgba(246, 100, 10, 0.3);
  }


  /* Donate Button */
  .donate-btn {
    background: #f77f00;
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 10px;
    margin-top: 20px;
    transition: 0.3s;
  }

  .donate-btn:hover {
    background: #ac5d5dff;
  }

  /* Selected Amount */
  .selected-amount {
    margin-top: 25px;
    font-size: 2rem;
    font-weight: 700;
    color: #d62828;
    transition: 0.3s ease-in-out;
  }

  .selected-amount span {
    color: #000;
    font-weight: 500;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .donation-quote {
      font-size: 1.8rem;
      padding: 40px 15px 10px;
    }

    .donation-container {
      padding: 30px 20px;
    }
  }

  /* Flex container (already Bootstrap-based but enhanced) */
  .d-flex.justify-content-between {
    gap: 15px;
  }

  /* Main Button Style */
  #monthlyBtn,
  #onceBtn {
    flex: 1;
    padding: 14px 20px;
    font-size: 1.7rem;
    font-weight: 600;
    color: #444;
    background: #fff;
    border: 2px solid #f77f00;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.3px;
  }

  /* Hover Effect */
  #monthlyBtn:hover,
  #onceBtn:hover {
    background: linear-gradient(135deg, #ffd166, #f77f00);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(247, 127, 0, 0.4);
  }

  /* Active / Selected Button */
  #monthlyBtn.active,
  #onceBtn.active {
    background: linear-gradient(135deg, #f77f00, #d62828);
    color: #fff;
    border-color: transparent;
    transform: scale(1.04);
    box-shadow: 0 6px 15px rgba(214, 40, 40, 0.4);
  }

  /* Focus Outline */
  #monthlyBtn:focus,
  #onceBtn:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(247, 127, 0, 0.5);
  }

  /* Mobile Friendly */
  @media (max-width: 768px) {

    #monthlyBtn,
    #onceBtn {
      font-size: 1rem;
      padding: 12px 10px;
    }
  }
