/* The Timeline Track */
.edu__container {
  position: relative;
  padding-left: 60px; /* Space for the line and icons */
}

/* The Vertical Line */
.edu__container::before {
  content: "";
  position: absolute;
  left: 20px; /* Aligns with the center of the icons */
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e0e0e0;
}

/* Individual Box Styling */
.edu__box {
  position: relative;
  background-color: #f9f9fb;
  padding: 20px 30px;
  margin-bottom: 25px;
  border-radius: 4px;
}
.empty {
  background-color: transparent;
}

/* The Speech Bubble Arrow */
.edu__box::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 25px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #f9f9fb;
}

/* The Icons */
.edu__box i {
  position: absolute;
  left: -58px;
  top: 15px;
  width: 36px;
  height: 36px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 4px solid #e0e0e0;
  z-index: 2;
}

.edu__box:nth-child(2) i {
  background-color: #ef4444;
}
.edu__box:nth-child(3) i {
  background-color: #f59e0b;
}
.edu__box:nth-child(4) i {
  background-color: #ffffff;
}

.empty i {
  height: 25px;
  width: 25px;
  left: -52px;
}

/* Text inside the boxes */
.edu__box h2 {
  font-size: 1.1rem;
  margin: 0;
  color: #010101;
}

.edu__box h2 span {
  color: #bbb;
  font-weight: normal;
  margin-left: 10px;
  font-size: 0.9rem;
}

.edu__box h3 {
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
  color: #666;
  margin-top: 5px;
}
