.post-container{
    width: 100%;
    height: 100vh;
    background-color: #D7E6FF;
    padding: 40px 20px;
}

.heading-main{
    color: #1E3E37;
    font-family: 'TroisMilleRegular';
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
    padding-left: 35px;
}
.nav-pills .nav-link{
    font-family: 'TroisMilleRegular';
    font-size: 64px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #1E3E37;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    color: #A884FF !important;
    background-color: transparent !important;
}
.post-date{
font-family: Montserrat;
font-size: 16px;
font-weight: 500;
line-height: 22.4px;
text-align: left;
margin-top: 20px;

}
.post-title{
font-family: 'TroisMilleRegular';
font-size: 32px;
font-weight: 400;
line-height: 32px;
text-align: left;
padding-top:20px;
}
.post-url{
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 49.4px;
    text-align: left;
    text-decoration: none;
    color: #1E3E37;
    margin-bottom: 20px !important;
}

.scroller {
    height: 600px;
    z-index: -1;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
  }
  
  .scroller .post-column {
    scroll-snap-align: start;
  }
  .scroller::-webkit-scrollbar{
    display: none;
  }

  @media(max-width: 767px){
    .scroller {
        padding: 20px;
      }
      .nav-pills .nav-link{
        font-family: 'TroisMilleRegular';
        font-size: 24px;
        font-weight: 400;
        line-height: 28px;
        text-align: center;
        color: #1E3E37;
    }
    .post-featured-image{
        width: 300px;
        height: 300px;
    }
    .milestones-container .milestones-left{
        width: 100% !important;
    }
    .milestones-container .milestones-right{
        margin-top:0px !important;
        margin-left: -125px !important;         
    }
    .timeline-container img.timeline-image {
        width: 250px !important;
        height: 250px !important;
        object-fit: cover !important;
    }    
  }
  
   .timeline-container {
        position: absolute;
        left: 45%; /* Adjust based on your layout */
        height: 100%;
        width: 5px;
        background-color: #e0e0e0; /* Light background */
    }

    /*.timeline {*/
    /*    position: absolute;*/
    /*    left: 0;*/
    /*    width: 5px;*/
    /*    height: 50px; */
    /*    background-color: #007bff; */
    /*    transition: top 0.5s ease-in-out; */
    /*}*/

    .active-dot {
        position: absolute;
        left: -7px; /* Center the dot on the timeline */
        width: 15px; /* Width of the active dot */
        height: 15px; /* Height of the active dot */
        background-color: #ff4081; /* Active dot color */
        border-radius: 50%; /* Make it a circle */
        transition: top 0.5s ease-in-out; /* Smooth transition */
    }

    .inactive-dot {
        position: absolute;
        left: -7px; /* Center the dot on the timeline */
        width: 15px; /* Width of the inactive dot */
        height: 15px; /* Height of the inactive dot */
        background-color: #c0c0c0; /* Inactive dot color */
        border-radius: 50%; /* Make it a circle */
        transition: top 0.5s ease-in-out; /* Smooth transition */
    }

    .post-column.active {
        background-color: #f5f5f5; /* Highlight active post */
        transition: background-color 0.3s ease-in-out; /* Smooth transition */
    }
