/* General Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
  background-color: #f4f4f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  height: 60px;
  width: 100%;
  background-color: #003366;
  color: white;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.2);
}

nav {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 55px;
  width: 65px;
  background-image: url(img/logo1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 20px;
  border-radius: 10%;
}

.links {
  height: 100%;
  width: 70%;
  display: flex;
  align-items: center;
  font-size: 18px;
  justify-content: flex-end;
  margin-right: 25px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
  color: #00bfff;
}

.menua {
  display: none;
}

/* Main Content */
main {
  padding: 2rem 0;
}

.container {
  max-width: 85%;
  margin: 0 auto;
}

/* About Section */
#about-company {
  padding: 3rem 1rem;
  background-color: #dcdcdc;
  text-align: center;
}

.con1 h2 {
  color: #003366;
  font-size: 2.2rem;
}

.con1 p {
  font-size: 18px;
  color: #003366;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
}

/* Vision & Mission Section */
#vision-mission {
  padding: 3rem 1rem;
  background-color:#003366;
  text-align: center;
}

.con2 h2 {
  color: #fff;
  font-size: 2.2rem;
}

.con2 p {
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
}

/* Team Section */
.additional {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.team-section h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 15px;
  padding: 20px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 300px;
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: scale(1.05);
}



.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #003366;
}

.member-info h3 {
  color: #003366;
  font-size: 20px;
  margin-bottom: 5px;
}

.member-info p {
  color: #333;
  font-size: 16px;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
      display: none;
  }

  .menua {
      display: block;
      color: white;
      font-size: 24px;
      margin-right: 20px;
  }

  .team-container {
      flex-direction: column;
      align-items: center;
  }

  .team-member {
      max-width: 90%;
  }

  .con1 p,
  .con2 p {
      font-size: 16px;
  }
}
