/*about us abouts about us about us */

/* About Us Section Styles */
.about-us-section {
    background-color: #f7f7f7;
    padding: 30px 0;
    overflow: hidden; /* Ensures that all content flows properly */
  }
  
  .about-us-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .about-us-section .about-text {
    flex: 1 1 100%; /* Allow full width on smaller screens or for larger content */
    padding: 20px;
  }
  
  .about-us-section .about-heading {
    font-size: 36px;
    color: #FF6600;
    /* font-family: 'Pacifico', cursive; */
    margin-bottom: 20px;
  }
  
  .about-us-section .intro-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .about-us-section .mission-statement, 
  .about-us-section .vision-statement, 
  .about-us-section .our-values, 
  .about-us-section .impact, 
  .about-us-section .call-to-action {
    margin-bottom: 30px;
  }
  
  .about-us-section h2 {
    font-size: 28px;
    color: #FF6600;
    margin-bottom: 10px;
  }
  
  .about-us-section p, .about-us-section ul {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
  }
  
  .about-us-section ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .about-us-section ul li {
    margin-bottom: 10px;
  }
  
  .about-us-section .about-images {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; /* Ensure it wraps on smaller screens */
    margin-top: 10px; /* Adds space above images */
    margin-left:90px;
  }
  
  .about-us-section .about-images img {
    width: 31%; /* Three images, so we take up 32% of the container each */
    max-width: 350px; /* Set a max width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .about-us-section .container {
        flex-direction: column;
        align-items: center;
    }
  
    .about-us-section .about-images {
        flex-direction: column;
        align-items: center;
        margin-left:1px;
    }
  
    .about-us-section .about-images img {
        width: 98%; /* Make images full width on smaller screens */
        margin-bottom: 20px; /* Adds space between images */
        margin-left:1px;
    }
  }

  /* Lightbox Modal Styling */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    overflow: auto;
  }
  
  .lightbox-content {
    max-width: 100%;
    max-height: 100%;
    border-radius: 2px;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .close:hover {
    color: #FF6600; /* Customize to your brand color */
  }


  /*donation section donation section donation section*/
  .dddonation-section {
    /* background: linear-gradient(135deg, #FF7518, #FF7518); */
    background-color: #dddddd;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    color: black;
}

.dddonation-container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.qr-code {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.qr-code img {
    width: 230px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.qr-code p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.bank-details {
    max-width: 600px;
}

.dddonation-heading {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    color: #FF6600;
}

.dddetails-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #333;
}

.dddetails-card p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dddetails-card p i {
    color: #FF6600;
    font-size: 18px;
}
/* Small Screens (Mobile) */
@media screen and (max-width: 480px) {
  .qr-code img {
      width: 190px;
  }

  .qr-code p {
      font-size: 14px;
  }

  .dddonation-heading {
      font-size: 18px;
      margin-bottom: 10px;
  }

  .dddetails-card {
      padding: 10px;
  }

  .dddetails-card p {
      font-size: 13px;
      gap: 5px;
  }

  .dddetails-card p i {
      font-size: 16px;
  }
}