#services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 100px 0;
    position: relative;
    overflow: hidden;
    flex-direction: column;
  }



  .service-wrapper {
    z-index: 10;
  }

  
  .service-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 25px;
    width: 90vw;
    max-width: 1700px;
    margin: 30px auto;
    background: white;
    box-shadow: 0px 0px 25px -5px rgb(233, 233, 233);
    z-index: 5;
  }

  .anchor {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-200px);
  }
  
  .service-image {
    width: 50%;
  }
  
  .service-image img {
    width: 80%;
  }
  
  .service-info {
    width: 50%;
    padding: 40px;
  }
  
  .services-blue-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  
  .services-blue-dots img {
    width: 150px;
    z-index: 1;
  }
  
  .services-purple-dots {
    position: absolute;
    bottom: 55%;
    left: 0;
    z-index: 1;
  }
  
  .services-purple-dots img {
    z-index: 1;
    width: 200px;
  }
  
  #services .blob-container {
    position: absolute;
    width: 500px;
    right: -10%;
    top: 1%;
    opacity: 0.2;
  }
  
  .position {
    transform: translateY(1200px) translateX(-100vw);
  }
  
  #services .purple-blob-container {
    position: absolute;
    width: 800px;
    right: -20%;
    bottom: 2%;
    opacity: 0.2;
  }
  
  .services-green-path {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
  }
  
  .services-green-path img {
    width: 100%;
  }
  
  .services-second-green-path {
    position: absolute;
    top: 55%;
    left: 0;
    width: 250px;
    opacity: 0.2;
  }
  
  .services-second-green-path img {
    width: 100%;
  }
  
  .services-purple-path {
    position: absolute;
    top: 70%;
    right: -10%;
    width: 300px;
  }
  
  .services-purple-path img {
    width: 100%;
  }
  
  #services .bright-blue-dot {
    position: absolute;
    top: 12%;
    right: 100px;
    width: 30px;
    height: 30px;
    border: 3px solid var(--bright-blue);
    border-radius: 50%;
  
    animation-name: service-bright-blue-dot;
    animation-duration: 100s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  @keyframes service-bright-blue-dot {
    0% {
      transform: translate(0px, -0px);
    }
    33% {
      transform: translate(-150px, -200px);
    }
    66% {
      transform: translate(-280px, -150px);
    }
    100% {
      transform: translate(0px, -0px);
    }
  }
  
  #services .second-bright-blue-dot {
    position: absolute;
    bottom: 20px;
    right: 100px;
    width: 60px;
    height: 60px;
    border: 3px solid var(--bright-blue);
    border-radius: 50%;
  
    animation-name: service-second-bright-blue-dot;
    animation-duration: 100s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  @keyframes service-second-bright-blue-dot {
    0% {
      transform: translate(0px, -0px);
    }
    25% {
      transform: translate(-550px, -10px);
    }
    50% {
      transform: translate(-1150px, 0px);
    }
    75% {
      transform: translate(-550px, -30px);
    }
    100% {
      transform: translate(0px, -0px);
    }
  }
  
  #services .green-circle {
    position: absolute;
    top: 65%;
    left: 0px;
    width: 50px;
    height: 50px;
    border: 3px solid var(--green);
    border-radius: 50%;
  
    animation-name: service-green-circle;
    animation-duration: 100s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  @keyframes service-green-circle {
    0% {
      transform: translate(0px, -0px);
    }
    25% {
      transform: translate(700px, -20px);
    }
  
    50% {
      transform: translate(1400px, -50px);
    }
  
    75% {
      transform: translate(700px, -20px);
    }
    100% {
      transform: translate(0px, -0px);
    }
  }
  
  #services .second-green-circle {
    position: absolute;
    top: 45%;
    right: 10px;
    width: 20px;
    height: 20px;
    border: 3px solid var(--green);
    border-radius: 50%;
  
    animation-name: service-second-green-circle;
    animation-duration: 100s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  @keyframes service-second-green-circle {
    0% {
      transform: translate(0px, -0px);
    }
    25% {
      transform: translate(-120px, -490px);
    }
  
    50% {
      transform: translate(-40px, -50px);
    }
  
    75% {
      transform: translate(-120px, 320px);
    }
    100% {
      transform: translate(0px, -0px);
    }
  }
  
  .services-scroll {
    display: none;
  }

