/* --------------------- Hero Section for About Page --------------------- */
/* section.hero.about {
  background: url("assets/images/about-hero.jpg") center/cover no-repeat;
} */

/* --------------------- About Section --------------------- */
/* ------------------------ Timeline Styles ------------------------ */
.timeline-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  border-bottom: #4994d0 3px solid;
  z-index: 1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.timeline-item i {
  font-size: 1.5rem;
  color: #6c757d;
  transition: transform 0.3s ease, color 0.3s ease;
}

.timeline-year {
  font-size: 1rem;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect applied when hovering the whole timeline item */
.timeline-item:hover i,
.timeline-item:hover .timeline-year {
  color: #4994d0;
  transform: scale(1.3);
}

/* Line under icon */
.timeline-line {
  width: 3px;
  height: 25px;
  background-color: #4994d0;
  margin: 6px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-horizontal {
    flex-direction: column;
    align-items: flex-start;
    border-left: 3px solid #4994d0;
    padding-left: 1rem;
    border-bottom: none;
  }

  .timeline-item {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    transform: translateX(50%);
  }

  .timeline-line {
    display: none;
  }
}


/*------------------- Timeline Info Card------------------------ */
.timeline-info-card {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  max-width: 300px;
  background: #fff;
  border-left: 4px solid #4994d0;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0.3s ease;
  z-index: 10;
  max-width: 250px;
  min-width: 250px;
  line-height: 1.5;
  min-height: 140px;
}

.timeline-info-card.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* 
@media (max-width: 768px) {
  .timeline-info-card {
   position: absolute;
  top: 100px;
  left: 100%;
  transform: translateX(-50%) translateY(10px);
  }
} */

/* ---------Mission and vision------------ */
#mission-vision h3{
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 1.5rem;
  text-align: left;
  color: #003366;
}
/* ----------------- Why Choose Us ----------------- */

ul.list-unstyled li i {
  min-width: 1.25rem;
}

/* Progress Group */
.progress-group {
  display: flex;
  flex-direction: column;
}

/* Progress Bar Container */
.progress-bar-wrap {
  background-color: #b9b9b9;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  width: 0; /* Start at 0 */
  height: 100%;
  background: linear-gradient(to right, #4994d0, #007bff);
  transition: width 1.5s ease-in-out;
  border-radius: 8px;
}

.progress-bar-fill.animated {
  width: var(--progress);
}


