Web development solutions
.highlight {
    background-color: #d2f4e8;
    border-radius: 10px;
    padding: 0 5px;
  }
  .service-card {
    border: none;
    background-color: #f2f5f7;
    padding: 20px;
    height: 100%;
    border-radius: 8px;
  }
  .icon-circle {
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
  }
  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  /* why oneIT section */


  .new-section {


    background: #f1f7f4; 
    padding: 100px 0;
  }

  .new-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #f1f7f4; 
    z-index: 1;
  }

  .new-content {
    position: relative;
    z-index: 2;
  }

  .new-title {
    font-size: 2.5rem;
  }

  .new-title .highlight {
    color: #00c264;
    font-weight: bold;
  }

  .stat-box {
    /* background: rgba(0, 0, 0, 0.6); */
    background: #215846;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    color: white;
  }

  .stat-box h2 {
    font-size: 2.5rem;
    margin: 0;
    color: white;
  }

  .stat-box p {
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
  }

  @media (max-width: 767px) {
    .stat-box {
      margin-bottom: 20px;
    }
  }
