/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #004d40;
  color: white;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.navbar ul li a:hover,
.navbar ul li a.active {
  text-decoration: underline;
}


.hero-section {
  background: url('../assets/images/about-banner.jpg') center/cover no-repeat;
  color: #012c3b;
  text-align: center;
  padding: 100px 20px;
}

.hero-section1 h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-section2 p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}
/*mission vision*/


.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 012c3b */

.mission, .vision {
  background-color: #004d40;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 10px;
  text-align: center;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  background-color: #fefefe;
  padding: 20px;
  border-left: 4px solid #012c3b;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-section {
  margin-top: 60px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-member {
  background-color: sans-serif ;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

footer {
  background-color: #012c3b;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .mission-vision {
    flex-direction: column;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Scroll animation effect */
.fade-in {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 1s ease, transform 1s ease;
}

.mission-vision div,
.timeline-item,
.team-member,
.hero-content,
.container h2 {
  opacity: 0;
  transform: translateY(30px);
}
/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }
}