.services-section {
    padding: 40px 0;
    padding-bottom: 0px;
  }
  
  .services-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    background-color: #fff;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    top: -170px;
    border-color: transparent;
  }

  
  
  
  .service-card {
    text-align: center;
    flex: 1;
  }
  
  .service-number {
    width: 70px;
    height: 70px;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .services-container {
      flex-direction: column;
      width: 90%;
    }

    .wrapper3{
      display: flex;
      flex-direction: column-reverse;
    }
  }
  