/* .achieve-main{
    width: 100%;
    float: left;
}
.achieve{
    margin: 100px 0;
    width: 100%;
} */

.achieve-main {
    position: relative;
    padding: 60px 0;
  }
  
  .timeline-line {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #0e2e50;
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .achieve {
    position: relative;
    padding: 40px 0;
    align-items: center;
  }
  
  .achieve .col-6 {
    z-index: 2; /* Bring above the line */
  }
  
  /* Optional - Add dots on the line per row */
  .achieve::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid #0e2e50;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }
  
.achieve h2 {
    font-size: 35px;
    font-weight: 600;
    color: #aa8a39;
    text-transform: uppercase;
  }
.achieve h4{
    font-size:32px;
    font-weight: 600;
    color: #fff;
    } 
.achieve p{
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    }      
.achieve h5{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: #aa8a39;
    padding: 7px 15px;
    border-radius: 2px;
    margin-top: 10px;
    display: inline-block;
    text-transform: uppercase;
    }   



    .achieve-main {
        position: relative;
        padding: 60px 0;
      }
      
      .timeline-line {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 4px;
        background-color: #0e2e50;
        transform: translateX(-50%);
        z-index: 1;
      }
      
      .achieve {
        position: relative;
        padding: 40px 0;
        align-items: center;
      }
      
      .achieve .col-6 {
        z-index: 2;
      }
      
      .achieve::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 20px;
        height: 20px;
        background-color: #ab8a3a;
        border: 4px solid #ab8a3a;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
      }
      
      .timeline-icon {
        font-size: 24px;
        color: #0e2e50;
      }


      /* Example timeline-line styles */
      .achieve-main {
        position: relative;
        padding: 50px 0;
      }
      
      .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 2px;
        background-color: #AA8A39;
        height: 0;
        transition: height 0.3s ease-out;
        z-index: 1;
      }
      
      .timeline-icon-on-line {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        border: 2px solid #007bff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #007bff;
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
        transition: all 0.4s ease;
      }
      
      .timeline-icon-on-line.active {
        opacity: 1;
        transform: translateX(-50%) scale(1);
      }

      .timeline-side {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
      }
      
      .timeline-side.active {
        opacity: 1;
        transform: translateY(0);
      }
      
      /* Entire row zoom effect */
.achieve {
    transform: scale(0.95);
    opacity: 0.7;
    transition: all 0.5s ease;
  }
  
  .achieve.zoom-active {
    transform: scale(1);
    opacity: 1;
  }
  
  /* Text fade-up animation */
  .fade-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .fade-text.fade-up-active {
    opacity: 1;
    transform: translateY(0);
  }
  
      
      
      