body {
    background-color: #fff;
    color: #000;
  }
  header {
    background-color: #000;
    height: 63px;
    color: #fff;
    position: relative;
    padding: 1rem 1rem;
  }
  .logo-img {
    position: absolute;
    top: -67px;
    width: 160px;
    height: 160px;
    object-fit: cover;
  }
  .contact-info {
    background-color: #f2f2f2;
    padding: 0.5rem;
  }
  .banner {
    background: url('./banner-image.png') no-repeat top center;
    background-size: cover;
    color: #000;
    padding: 6rem 1rem;
    height: 400px;
    display: flex;
    align-items: center;
  }
  .banner h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  .services-title {
    margin-top: 3rem;
    text-align: center;
  }
  .service-box {
    padding: 2rem;
    text-align: center;
    background-color: #f2f2f2;
    margin-bottom: 2rem;
    border-radius: 10px;
  }
  footer {
    background-color: #000;
    color: #fff;
    padding: 2rem;
    text-align: center;
  }

  .img-fluid-container{
    width: 100px;
    height: 100px;
    object-fit: cover;
    /* background-color: #fff; */
    background-color: #f2f2f2;
    margin-bottom: 10px;
    /* border-radius: 50%; */
    padding: 10px;
    position: relative;
    /* margin: auto; */
  }

  .img-fluid-container img{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }