body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #444;
  color: #fff;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #1e90ff;
  position: fixed;
  width: 100%;
  z-index: 1001;
}

.logo {
  width: 60px;
  border-radius: 50%;
}

nav {
  display: flex;
}

.nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav li a:hover,
.nav li a.active {
  color: #444;
}

.about {
  color: #fff;
  background-color: #1e90ff;
  padding-top: 8rem;
}

header {
  background: #222;
  color: #fff;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  margin-top: 10px;
  font-size: 1.2rem;
  padding-bottom: 1rem;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #1e90ff;
}

.section-group {
  margin-bottom: 40px;
}

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.team-member {
  flex: 1 1 200px;
  padding: 20px;
  /* border-radius: 10px;

 */
  border: 1px solid #1e90ff;
}
.team-member:hover {
  border: none;
  color: white;
  box-shadow: 0 0 5px #468bd1, 0 0 15px #468bd1;
  animation: glow 2s infinite alternate;
  transform: translateY(-3%);
  transition: color 0.3s;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px #468bd1;
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 10px #fff;
  }
}

footer {
  background-color: #1e90ff;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #1e90ff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  nav.show {
    transform: translateY(0);
  }

  .nav {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }
}
