
  .services-section {
    padding: 60px 20px;
    background-color: #fff;
  }

  .services-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
  }

  .service-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }

  .service-item {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(215, 207, 207, 0.1);
    transition: transform 0.3s;
  }

  .service-item:hover {
    transform: translateY(-10px);
  }

  .service-item img {
    width: 330px;
    margin-bottom: 34px;
  }

  .service-item h3 {
    font-size: 2.1rem; /*  for font change*/
    color: green;
    margin-bottom: 10px;
  }

  .service-item p {
    font-size: 1.4rem;
    color: #666;
  }



  