/* Hero Banner */
.about-hero {
  background: url("../IMAGES/about-banner.jpg") no-repeat center center/cover;
  height: 60vh;
  text-align: center;
  position: relative;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.about-hero h1, .about-hero p {
  position: relative;
  z-index: 2;
}

/* Timeline Section */
.timeline {
  position: relative;
  margin: 20px auto;
  padding-left: 30px;
  border-left: 3px solid #fa7800;
  max-width: 500px;
}
.timeline-item {
  margin-bottom: 20px;
}
.timeline-item h5 {
  color: #111111;
  font-weight: 600;
}
.timeline-item p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* CTA Section */
.cta {
  background: url("../IMAGES/cta-bg.jpg") no-repeat center center/cover;
  background-attachment: fixed;
}
