/* ######################## COMPLETED PROJECTS SECTION START ######################## */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.completed-Projects {
    background-color: #f1f1f1;
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
  }
  .completed-projects__section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    height: 170px;
    margin: 10px;
    width: 20%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .completed-projects__section h1 {
    margin: 20px 0;
    font-size: 50px;
    color: #333;
    opacity: 0;
    animation: countUp 1.5s ease-out forwards;
  }
  .completed-projects__section p {
    font-size: 20px;
    color: #666;
  }
  @keyframes countUp {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @media only screen and (max-width: 599px) {
    .completed-Projects {
      width: 100%;
    }
    .completed-projects__section {
      width: 90%;
    }
  }
  @media only screen and (min-width: 600px) and (max-width: 900px) {
    .completed-Projects {
      width: 100%;
    }
    .completed-projects__section {
      width: 40%;
    }
  }
  @media only screen and (min-width: 1200px){
    .completed-projects__section {
      width: 250px;
    }
  }

/* ######################## COMPLETED PROJECTS SECTION END ######################## */