body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background-color: #00008B;
  color: white;
}


#LOGOWEB {
  text-align: center;
  margin: 30px auto;
}

#LOGOWEB img {
  max-width: 100%;
  height: auto;
}

#LOGOWEB p,
#LOGOWEB h5 {
  margin: 10px 0;
}


nav {
  background-color: #9028c5;
  padding: 10px;
  text-align: center;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  display: inline-block;
  margin: 0 10px;
}


.Team-Members_Sec {
  display: flex;/*This make a container center*/
  justify-content: center;/*This make a container center*/
  align-items: center;/*This make a container center*/
  padding: 40px 20px;
  text-align: center;/*This make a container center*/


}

.profile-card {
  background-color: #4B0082;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
    
}

.profile-card h3,
.profile-card h5 {
  margin: 10px 0;
}

.profile-card img {
  margin-bottom: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease;
    height: 238px;
  width: 234px;
}

.profile-card img:hover {
  transform: scale(1.1);
}

footer {
  background-color: #9028c5;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section img {
  width: 250px;
  margin-bottom: 10px;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin: 5px 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

