.about-section {
  background: #f9fbfc;
  padding: 60px 30px;
  font-family: 'Segoe UI', sans-serif;
  color: hsl(178, 85%, 35%);
  padding-top: 100px;
  margin-bottom: 20px;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: hsl(178, 85%, 35%);
  
}

.about-header p {
  font-size: 18px;
  color: #555;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.about-left {
  flex: 2;
  min-width: 300px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stats div {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stats strong {
  font-size: 24px;
  color: #27ae60;
  display: block;
}

.stats span {
  font-size: 14px;
  color: #777;
}

.mission-vision .card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mission-vision h3 {
  margin-top: 0;
  color: #2980b9;
}

.about-right {
  flex: 1;
  min-width: 250px;
}

.about-right img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-section {
  padding: 60px 20px;
  background: #f4f7fa;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  max-width: 900px;
  margin: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.timeline-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0056b3;
}

.timeline {
  position: relative;
  border-left: 3px solid #007bff;
  padding-left: 30px;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: #007bff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #e3f2fd;
}

.year {
  font-weight: bold;
  color: #007bff;
  font-size: 18px;
  margin-bottom: 5px;
  padding-left: 15px;
}

.content h3 {
  margin: 0;
  font-size: 20px;
  color: #2c3e50;
}

.content p {
  margin-top: 5px;
  font-size: 15px;
  color: #555;
}

.leadership-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 12px;
}

.leadership-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0056b3;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.team-card h3 {
  margin-top: 0;
  font-size: 20px;
  color: #2c3e50;
}

.team-card .title {
  font-weight: bold;
  color: #007bff;
  margin: 8px 0;
}

.team-card .qual {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.team-card .exp {
  font-size: 13px;
  color: #777;
}

.promo-banner {
  background: linear-gradient(to right, #e3f2fd, #bbdefb);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #0d47a1;
  margin-bottom: 20px;
  border-radius: 12px;
 margin: 10px 50px;
}

.banner-content {
  max-width: 800px;
  margin: auto;
}

.icon {
  font-size: 40px;
  color: #1976d2;
  margin-bottom: 10px;
}

.banner-content h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0d47a1;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.highlight {
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-weight: bold;
  color: #1976d2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.team-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  
}
.team-card:hover {
  scale: 105%;

}
.popup-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.popup-content {
  background: white;
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  color: hsl(178, 85%, 35%);
}
.close-btn {
  float: right;
  cursor: pointer;
  font-size: 20px;
}
