 .roadmap {
  overflow-x: clip;
  position: relative;
  z-index: 1;
}
 
 .roadmap-container {
      padding: 20px 0;
      text-align: center;
    }



.work::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 260px;
    bottom: 20px;
    right: -100px;
    background: linear-gradient(180deg, rgba(24, 255, 158, 0) 0%, #FFAA00 100%);
    filter: blur(100px);
    z-index: -1;
}
    
.roadmap::before {
    content: "";
    position: absolute;
    width: 207px;
    height: 260px;
    bottom: -200px;
    left: 0px;
    background: linear-gradient(180deg, #323624 0%, #FFAA00 100%);
    filter: blur(100px);
    z-index: -1;
}



.roadmap::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 260px;
    bottom: 20px;
    right: -100px;
    background: linear-gradient(180deg, rgba(24, 255, 158, 0) 0%, #FFAA00 100%);
    filter: blur(100px);
    z-index: -1;
}

    .roadmap-content {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding-bottom: 10px;
      scrollbar-width: thin;
      scrollbar-color: #FFAA00 transparent;
    }

    .roadmap-content::-webkit-scrollbar {
      height: 8px;
    }

    .roadmap-content::-webkit-scrollbar-thumb {
      background: #FFAA00;
      border-radius: 10px;
    }

    .roadmap-content::-webkit-scrollbar-track {
      background: transparent;
    }

    .roadmap-content::-webkit-scrollbar:vertical {
      display: none;
    }

    .roadmap-quarter-section {
      flex-shrink: 0;
      width: 425px;
    }

    .roadmap-quarter-heading {
      font-family: "Josefin Sans", sans-serif;
      font-size: 28px;
      font-weight: 600;
      line-height: 110%;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .roadmap-phases {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .roadmap-phase {
      display: flex;
      align-items: center;
      position: relative;
      flex-direction: column;
    }

    .vertical-line {
      width: 2px;
      height: 100px;
       box-shadow: 0px 4px 4px 0px #FFFFFF40,
                0px 4px 4px 0px #FFFFFF40 inset;
      /* background: #FFAA00; */
    }

    .phase-details {
      /* background: #161616; */
      /* border: 1px solid #FFAA00; */
      box-shadow: 0px 4px 4px 0px #FFFFFF40,
                0px 4px 4px 0px #FFFFFF40 inset;
      width: 380px;
      height: 380px;
      border-radius: 30px;
      padding: 30px 20px;
    }

    .phase-details h4 {
      font-family: "Josefin Sans", sans-serif;
      font-size: 28px;
      font-weight: 600;
      line-height: 110%;
      text-align: start;
      margin-bottom: 15px;
      color: #FFAA00;
    }

    .phase-details ul {
      margin: 0;
      padding: 0 0 0 20px;
      list-style: disc;
    }

    .phase-details ul li {
      font-family: "Josefin Sans", sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 110%;
      text-align: left;
      margin-bottom: 10px;
      color: #eceaea;
    }

    @media (max-width: 1250px) {
      .roadmap-content {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .roadmap-container {
        padding: 10px 0;
      }

      .roadmap-content {
        padding: 10px 0;
      }

      .roadmap-quarter-section {
        width: 300px;
        padding: 10px;
      }

      .roadmap-quarter-heading {
        font-size: 20px;
      }

      .phase-details {
        width: 300px;
        height: auto;
        padding: 20px;
      }

      .phase-details h4 {
        font-size: 20px;
      }

      .phase-details ul li {
        font-size: 16px;
      }
    }

    @media (max-width: 340px) {
      .roadmap-quarter-section {
        width: 280px;
      }

      .phase-details {
        width: 250px;
      }
    }