 .timeline {
       position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 0;

  }

  /* Grey background line */
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e0e0e0;
  }

  /* Blue animated line */
  .timeline .line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: #00bcd4;
  }

  .timeline-item {
    position: relative;
    width: 45%;
    margin: 17vh 0;
    opacity: 0.4;
    transform: translateY(40px);
    transition: all 0.4s ease;
  }

  .timeline-item.active {
    opacity: 1;
    color: #111;
    transform: translateY(0);
  }

  /* Desktop alternate */
  .timeline-item.left {
    left: 0;
    text-align: right;    padding-right: 50px;
    box-sizing: border-box;
  }
  .timeline-item.right {
    left: 55%;    padding-left: 50px;
    box-sizing: border-box;
  }

  .timeline-item .icon {
    position: absolute;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f1f1f1;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 1;
  }

  /* align icons to the line */
  .timeline-item.left .icon {
       right: -105px;
  }
  .timeline-item.right .icon {
       left: -105px;
  }






.timeline-item:nth-child(1){margin-top:0px;}

.timeline-item .m-head{color: #012537;text-align:left;font-weight:600;font-size:var(--f-28-16) !important;}

.timeline-item.left .m-head{text-align:right;}


  .timeline-item h3 {
    margin: 0;
    font-weight: 600;font-size:var(--f-65-32) !important;color: #012537;

  }

  .timeline-item p {
    /*margin: 3px 0 0;*/
    /*font-size: 14px;*/
  }
  
  
  .timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: var(--line-height);              /* will be animated */
  background: #00bcd4;    /* animated blue line */
}
  
  
  
  .timeline::before,
.timeline::after {
  z-index: 0;  /* push lines behind */
}

.timeline-item .icon {
  z-index: 2;  /* bring icons in front */
}

.timeline-item {
  position: relative;
  z-index: 1;  /* keep content above the line */
}
  
  

  /* 📱 Mobile */
  @media (max-width: 768px) {
    .timeline::before,
    .timeline .line {
      left: 35px;
      transform: none;
    }

    .timeline-item {
      width: 100%;
      text-align: left;
      margin-left: 40px;
    }

    .timeline-item.left,
    .timeline-item.right {
      left: 0;
    }

    .timeline-item .icon {
        left: 0px;
      right: auto;
    }
    
    
    .timeline-item.right .icon {
    left: 0px;
}
    
    
    .timeline-item .icon{width:60px;height:60px;}
    
    .timeline-item .icon svg{max-width:30px !important;}
    
    
    .timeline-item.left {
    left: 0;
    text-align: left;
    padding-left: 95px;
    box-sizing: border-box;
    padding-right: unset;
    box-sizing: border-box;
}
.timeline-item.right{ padding-left: 95px;}
    
    .timeline-item.left .m-head {
    text-align: left;
}
    
    
    .timeline-item{margin-left:0px;}
    
    .timeline::after{left:35px;}

    
    
    
    
    
    
    
  }