@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-us-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: url('assets/img/about-us-banner.jpg') center/cover no-repeat; /* Replace 'your-image.jpg' with your actual image URL */
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
   
}

.about-us-banner h1 {
   
    font-size: 2.5em;
    text-decoration: underline;
    margin-top: 100px; /* Adjust as needed */
    border-left: 2px solid #fff; /* Adjust the color and thickness as needed */
    border-right: 2px solid #fff; /* Adjust the color and thickness as needed */
}


@media (max-width: 768px) {
    .about-us-banner {
        height: 200px;
    }

    .about-us-banner h1 {
        font-size: 1.5em;
        margin-top: 100px; /* Adjust as needed */
    }
}
.about-us-text-section {
  background-color: #f8f9fa; /* Optional: Add a background color */
  padding: 40px 20px;
  text-align: center;
}

.content {
  font-family: Georgia, 'Times New Roman', Times, serif;
}


.about-us-text-section {
    background: url('assets/img/about\ us\ background\ image.png') center/cover no-repeat; /* Replace 'your-image.jpg' with your actual image URL */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    
}

.about-us-text-section h1 {
    font-size: 1.5em;
    
    max-width: 1200px;
    
}

@media (max-width: 768px) {
    .about-us-text-section {
        height: 200px;
    }

    .about-us-text-section h1 {
        font-size: 0.5em;
    }
}

@media (max-width: 767px) {
    .content {
      font-size: 32px;
    }
  }



.director-container {
    padding: 20px;
   
    margin: 20px;
    /* border-radius: 50%; */
    overflow: hidden; /* Ensure content doesn't overflow the rounded shape */
  }

  .director-image img {
    width: 80%;
    height: auto;
    border-radius: 20%;
    display: block; /* Remove default image spacing */
  }

  .director-text  p{
    margin-top: 50px;
  }

  .background-container {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

  .background-image {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    position: relative;
    font-size: 30px;
    z-index: 1;
    padding: 20px;
    color: #fff; /* Adjust text color as needed */
  }


 .main-container {
      border: 1px solid #ddd; /* Optional: Add a border for visual separation */
      padding: 20px;
      transition: background-color 0.3s ease;
    }

    .main-content {
      display: flex;
      align-items: center;
    }

    .arrow-icon {
      margin-top: 3px;
      margin-right: 10px;
    }

    @media (max-width: 1000px) {
        .main-container {
          margin-bottom: 20px; /* Add gap between main containers on touch screens */
        }
      }
      .main-container:hover {
        background-color: #fed7e2; /* Change the color to your desired active color */
      }