* {
  margin: 0;
  padding: 0;
  
}

.container:hover {
  border-radius: 6px;
  background-color: transparent;
}

.about-section {
  text-align: center;
  padding: 30px 15px;
  background: rgba(255, 255, 255, 0.9);
  margin-top: 10px !important;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
 
}

.video-section video {
  max-width: 100%;
  height: auto;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  border: solid transparent;
  text-align: center;
  padding: 30px 15px;
  background: rgba(255, 255, 255, 0.9);
  margin-top: 10px !important;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
 
}

.team-member {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  
}

.team-member img {
  width: 100%;
  height: auto;
  max-width: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
  background-color: navy;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mission, .vision, .team, .services, .video-section, .testimonials {
  margin-top: 30px;
  padding: 20px;
  
}

.mission h3, .vision h3, .team h3, .services h3, .video-section h3, .testimonials h3 {
  color: navy;
}

.team{text-align:center;
}
.team-members {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.team-member {
  text-align: center;
  padding: 20px;
}
.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.video-section {
  text-align: center;
}
.video-section video {
  width: 600px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
.testimonials {
  text-align: center;
}

@keyframes fadeInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
  transition: transform 0.3s;
}
.social-icons a:hover {
  transform: scale(1.2);
}



.footer a {
  color: #4CAF50;
  text-decoration: none;
  margin: 0 10px;
}

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

.footer {
  font-size: 20px;
  background-color: #333;
  color: white;
  padding: 90px 0;
  text-align: center;
  margin-top: 200px;
} 

  
