* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.aboutus-page {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    color: #333;
}

/* Ensure the background image covers the area responsively */
.aboutus-image {
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(131, 131, 131, 0) 70%, rgb(0, 0, 0) 100%), 
    url('https://res.cloudinary.com/dga2mpvuf/image/upload/v1732527668/IMG_1235_qynqzu.jpg');
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

  .aboutus-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
  }
  
  .logo-container {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .logo {
    max-width: 150px;
    height: auto;
  }

  .about-us {
    padding: 60px;
    border-radius: 10px;
  }
  
  .about-us p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .about-us p:last-child {
    margin-bottom: 0;
  }

  .supported-by {
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 40px;
  }
  
  .supported-by h3 {
    font-size: 1.8rem;
    color: #004d40;
    margin-bottom: 20px;
  }
  
  .support-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Default gap */
    overflow-x: auto; /* Allow horizontal scrolling if necessary */
    white-space: nowrap; /* Prevent wrapping */
  }
  
  .support-logo1, .support-logo4 {
    width: 150px;
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Optional hover effect */
  }
  
  .support-logo2, .support-logo3 {
    width: 250px;
    height: auto;
    transition: transform 0.3s ease; /* Optional hover effect */
  }
  
  .support-logo1:hover, .support-logo2:hover, 
  .support-logo3:hover, .support-logo4:hover {
    transform: scale(1.1); /* Slight zoom on hover */
  }
  
  .support-text{
    margin-top: 20px;
    margin-top: 20px;
    font-size: 0.8rem;
    text-align: center;
    color: rgb(119, 118, 118);
    text-align: center;
    line-height: 1.6;
    padding: 0 20px;
  }
  
  @media screen and (max-width: 1024px) {
    .about-us h2 {
      font-size: 3rem;
    }
  
    .about-us p {
      font-size: 1.05rem;
    }
  
    .support-logos {
      gap: 20px; /* Reduced gap */
  }

  .support-logo1, .support-logo4 {
      width: 90px; /* Smaller size */
  }

  .support-logo2, .support-logo3 {
      width: 150px;
  }
    .support-text {
      font-size: 0.7rem;
  }
  }
  
  @media screen and (max-width: 768px) {
    .container {
      width: 95%;
    }
  
    .about-us h2 {
      font-size: 3rem;
    }
  
    .about-us p {
      font-size: 1rem;
      line-height: 1.7;
    }
  
    .support-logos {
      gap: 20px; /* Further reduced gap */
  }

  .support-logo1, .support-logo4 {
      width: 70px;
  }

  .support-logo2, .support-logo3 {
      width: 100px;
  }

  .support-text {
    font-size: 0.6rem;
  }
}
  
  @media screen and (max-width: 480px) {
    .about-us {
      padding: 40px;
    }
  
    .about-us h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }
  
    .about-us p {
      font-size: 0.95rem;
      line-height: 1.6;
    }
  
    .support-logos {
        gap: 10px; /* Minimal gap for very small screens */
    }

    .support-logo1, .support-logo4 {
        width: 30px;
    }

    .support-logo2, .support-logo3 {
        width: 60px;
    }
  .support-text {
    font-size: 0.5rem;
}
  }

