*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

@font-face {
  /* font-family: 'Dosis Extralight';
  src:url(fonts/Dosis/static/Dosis-ExtraLight.ttf) */

  font-family: 'Dosis regular';
  src:url(fonts/Dosis/static/Dosis-Light.ttf)
}


html,
body {
  padding: 0;
  margin: 0;
  background-color: #eee;
  color: #fff;
  /* font-family: sans-serif; */
  font-family: 'Dosis Extralight', sans-serif;
   overflow-x: hidden;
}

/* Updated Logo Styles */
.logo {
  height: 100px; /* Adjust based on your logo height */
  display: flex;
  align-items: center;
  margin-right: 30px; /* Added spacing between logo and menu */
}

.logo img {
  height: 100%;
  width: auto;
  max-height: 100px; /* Control maximum logo size */
  transition: all 0.3s ease;
  /* background-color: white; */

}


/*about us section*/
#about-us {
  /* background-color: rgb(32, 39, 55); */
  background-color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

#about-us .container {
  max-width: 800px;
  margin: 0 auto;
}

#about-us h1 {
  font-size: 2.5rem;
  /* color: #2c3e50; */
  color: rgb(32, 39, 55);
  margin-bottom: 20px;
  /* text-align: center; */
}

#about-us h2 {
  font-size: 2rem;
  /* color: #2c3e50; */
  color: rgb(32, 39, 55);
  margin-top: 30px;
  margin-bottom: 15px;
}

#about-us h3 {
  font-size: 1.2rem;
  /* color: #2c3e50; */
  color: rgb(32, 39, 55);
  margin-top: 30px;
  margin-bottom: 15px;
}

#about-us p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

#about-us strong {
  /* color: #e67e22; */
  color: rgb(32, 39, 55);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  #about-us h1 {
      font-size: 2rem;
  }

  #about-us h2 {
      font-size: 1.5rem;
  }

  #about-us p {
      font-size: 1rem;
  }
}
/*end of about us*/




@media screen and (max-width: 939px) {
     #about-us h1 {
      font-size: 2rem;
  }

  #about-us h2 {
      font-size: 1.5rem;
  }

  #about-us p {
      font-size: 1rem;
  }
}