 .timeline-box {
       background: linear-gradient(to right, #781C63, #4A0072);
      padding: 70px 20px 30px;
      margin: 0px auto;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
    }

    .timeline-line {
      position: absolute;
      top: 117px; 
      left: 0;
      width: 100%;
      height: 4px;
      background-color: #ccc;
      z-index: 1;
    }

    .timeline {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .timeline-point {
      text-align: center;
      flex: 1 1 20%;
      position: relative;
      padding-top: 30px;
    }

    .timeline-point .circle {
      width: 20px;
      height: 20px;
       background: linear-gradient(to right, #781C63, #4A0072);
      border: 4px solid #fff;
      border-radius: 50%;
      margin: 0 auto;
      position: absolute;
      top: 50px; /* Center on the 4px timeline line */
      left: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 0 2px #ad3190;
      z-index: 3;
    }

    .timeline-point h5 {
      margin-top: 50px;
      font-size: 16px;
      color: #f9fbfc;
    }

    .timeline-point p {
      font-size: 14px;
      color: #f9fbfc;
    }

    @media (max-width: 768px) {
      .timeline {
        flex-direction: column;
        align-items: center;
      }

      .timeline-line {
        display: none;
      }

      .timeline-point {
        flex: 1 1 100%;
        margin-bottom: 50px;
        padding-top: 0;
      }

      .timeline-point .circle {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 10px;
      }

      .timeline-point h5 {
        margin-top: 10px;
      }
    }
   .timeline-fill-line {
  position: absolute;
  top: 117px;
  left: 0;
  height: 4px;
  background-color: #B2006D;
  width: 0%;
  z-index: 2;
  transition: width 2s ease-out;
}

.timeline-point .content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease;
}

.timeline-point.active .content {
  opacity: 1;
  transform: translateY(0);
}
