/* General Styling for Flexbox Alignment */
.service-box-icon {
    transition: transform 0.3s ease-in-out;
  }
  
  .service-box-icon:hover {
    transform: scale(1.2);
    color: #fff;
  }
  .service-area .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  
  .btn-warning {
    background-color:#ffc107d5;
    margin-left: 15%;
    margin-right: 15%;
    border: none;
  }
  
  .btn-warning:hover {
    background-color: #e6b800;
    color: #fff;
  }
  