@import url('https://fonts.googleapis.com/css2?family=Rubik+Vinyl&family=Space+Grotesk&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #ffffff;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-logo a {
  text-decoration: none;
  /* font-size: 2.5rem; */
}

.navbar-logo img {
  width: 230px;
  margin-right: 10px;

}

.navbar-logo img:hover {
  opacity: 0.6;
}

.navbar-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-item {
  margin-left: 20px;
}

.navbar-links {
  color: #3C4151;
  text-decoration: none;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.navbar-links:hover {
  color: #0066ff;
}

/* Mobile Styles */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #0066ff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: rgb(231, 230, 230);
    text-align: center;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-item {
    margin: 15px 0;
  }

  .navbar-toggle {
    display: flex;
  }
}


.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.about-us {
  /* border: 2px solid red; */
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  background-color: rgb(255, 255, 255);
  margin-top: 100px;
  padding: 35px;
  width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-text {
  width: 425px;
  text-align: left;
}

.about-us h1 {
  font-size: 65px;
  color: #3c4151;
  /* font-size: 7rem; */
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.about-us p {
  font-size: 15px;
  margin-bottom: 20px;
}

.read-more-btn {
  font-size: 15px;
  padding: 10px 20px;
  background-color: #006699;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.about-us-image {
  width: 565px;
}

.about-us-image img {
  width: 100%;
  height: 435px;
  object-fit: cover;
}

.about-directors {
  /* border: 2px solid rebeccapurple; */
  margin-top: 60px;
  width: 100%;
  text-align: center;
}

.about-directors h1 {
  font-size: 50px;
  margin-bottom: 25px;
  font-weight: bold;
  color: #3c4151;
}

.directors {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: row; */
  flex-wrap: wrap;
}

.director {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
    rgb(209, 213, 219) 0px 0px 0px 1px inset;
  /* display: flex; */
  /* width: 100%; */
  text-align: center;
  margin-bottom: 30px;
  margin-right: 20px;
  padding: 20px;

}

.director img {
  width: 235px;
  height: 235px;
}

.director h2 {
  font-size: 27px;
  margin-top: 20px;
  font-weight: bold;
  color: #3c4151;
}

.director h3 {
  text-align: center;
  font-size: 20px;
  /* margin-top: 20px; */
  color: #484e61;
}

.info h2 {
  font-size: 45px;
  font-weight: bold;
  color: #78adfb;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.info p {
  font-size: 2rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.contact {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.contact-h1 h1 {
  display: flex;
  justify-content: center;
  font-size: 50px;
  font-weight: bold;
  color: #3c4151;
}

.email_phone p {
  font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  display: none;
  /* font-weight: bold; */
}

.map {
  display: none;
}













footer {
  background-color: #333333;
  color: white;
  padding: 30px 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  width: 49%;
}

.footer-left p,
.footer-right p {
  margin: 0;
  color: #9d9d9d;
}

.footer-right nav a {
  color: #9d9d9d;
  text-decoration: none;
  margin-right: 15px;
  display: inline-block;
  font-size: 35px;
}

.footer-right nav a:hover {
  color: #0066ff;
}

.copyright {
  margin-top: 10px;
  background-color: #222222;
  text-align: center;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.copyright p {
  margin: 0;
  color: #9d9d9d;
  margin-left: 20px;
  margin-right: 20px;
}








/* Mobile screen or smaller screen css */
@media screen and (max-width: 1024px) {
  
  footer {
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  .about-us {
    width: auto;
  }

  .about-us-image {
    overflow: hidden;
    width: auto;
    height: 300px;
  }

  .info p,
  h2,
  .form {
    display: none;
  }

  .email_phone p {
    font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

    margin-top: -30px;
    display: block;
  }

  footer {
    padding: 25px;
  }
}





@media screen and (max-width: 750px) {
  .about-us {
    width: auto;
  }

  .about-us-image {
    display: none;
  }

  .info p,
  h2,
  .form {
    display: none;
  }

  .email_phone p {
    font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 10px;
    font-size: 1.2rem;
    display: block;
  }

  .map {
    display: block;
  }

  footer iframe {
    display: none;
  }

  iframe {
    display: block;
    margin: auto;
    margin-bottom: 25px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

}