* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  background-color: #f0f0f0;
}

.timeline-section {
  text-align: center;
  padding: 50px 15px;
  background-color: #284184;
  color: white;
}

.timeline-title {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: bold;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  position: absolute;
  width: 4px; /* Line width */
  height: 100%; /* Full height of the container */
  background: linear-gradient(orange 40%, transparent 0%) center/100% 40px; /* Dashed effect */
  background-repeat: repeat-y; /* Repeats the dashed pattern vertically */
  border-radius: 20px;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0;
  flex-direction: row;
  position: relative;
  margin-bottom: 15%;
}

.timeline-dot {
  /* position: absolute; */
  /* top:20%; */
  background: white;
  color: orange;
  border: 3px solid orange;
  border-radius: 20%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  z-index: 1;
}

.timeline-content,
.timeline-year {
  width: 35%;
  padding: 10px;
  position: relative;
  z-index: 1;
}
/* .timeline-year{
  margin-top: -10px;
} */
.timeline-content {
  text-align: center;
  /* margin-bottom: 15%; */
}

.timeline-content.left {
  text-align: left;
}

.timeline-content p {
  font-size: 18px;
  line-height: 1.6;
}

.timeline-year {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  /* margin-bottom: 15%; */
}

.left {
  text-align: left;
}

.right {
  text-align: left;
}




@media (max-width: 768px) {
  .timeline-item {
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: row; /* Align children vertically */
  }

  .timeline-content p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
  }
  
  .timeline::before{
    left:5%;
  }

.timeline-content{
  font-size:14px;
  line-height: 14px;
  font-weight: 600;
  order: 3;
  width:70%;
}


.timeline-dot{
  /* width: 100px; */
  height:35px;
  width:10%;
  order: 1;
}

.timeline-year{
  font-size:24px;
  line-height: 24px;
  font-weight: 700;
  order: 2;
  width:20%
}
}