@import url('https://fonts.googleapis.com/css2?family=Honk&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900&display=swap');

body {
    background-color: #f5f7ff !important;
}

.service-heading {
    background-color: #f5f7ff !important;
}

.service-heading h6 {
    font-size: 15px;
    color: #ff561d;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    margin-top: 50px;
}

.service-heading h2 {
    font-size: 38px;
    color: #000;
    font-weight: 800;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 50px;
}

.services-container {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f5f7ff;
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

.services-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
    background-color: #f5f7ff;
}

.card {
    margin: 20px;
    border-radius: 1px !important;
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    background-color: #f5f7ff !important;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
    width: 22rem;
    height: 23rem;
    text-decoration: none;
    color: inherit;
    border-radius: 8px !important;
}

.card:hover {
    transform: scale(0.95);
}

.card-body {
    position: relative;
    z-index: 2;
}

.card p {
    margin-top: 20px;
    font-family: "Syne", sans-serif;
}

.card h5 {
    font-weight: bold;
    font-family: "Syne", sans-serif;
}

.card .readMore {
    text-decoration: none;
    color: #ff561d;
    font-size: 17px;
    font-weight: 600;
}

.card-img-top {
    width: 150px !important;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 0px;
    transition: transform 0.3s ease-in-out;
}

.card:hover .card-img-top {
    transform: scale(0.9);
}
