@import url("./color.css");
.mainBanner {
    background-image: url('../asset/bannerimg/service-banner3.jpg');
}

.cardContainer {
    padding-left: calc(20px);
    padding-right: calc(20px);
    padding-bottom: 30px;
    /* width: 33.333% !important; */
}

.card {
    padding: 0 !important;
    box-shadow: 0 10px 30px 0 rgba(50, 50, 50, 0.1);
    width: 100%;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
    border: none !important;
    border-radius: 5px !important;
    /* height: 100%; */

    .imgContainer {
        position: relative !important;
        padding: 0 !important;
        overflow: hidden;
        /* box-shadow: none; */
        border-radius: 5px 5px 0 0 !important;
        margin-bottom: 0 0 10px 0;

        img {
            /* height: 250px; */
            height: 280px !important;
            object-fit: cover;
            transition: transform 0.5s ease-in-out;
        }
    }

    .card-body {
        display: flex;
        justify-content: center;

        /* margin-top: 10px; */
        a {
            text-decoration: none !important;
            color: black;
            text-align: center;
            font-family: "poppins";
            font-size: 16px;
            font-weight: 600;
            min-height: 40px;
        }
    }
}

.imgContainer:hover .card-img-top {
    transform: scale(1.2);
}

.card:has(.imgContainer:hover) {
    box-shadow: 0 10px 30px 0 rgba(50, 50, 50, 0.16);
}

.section3 {
    background-color: #F9F9F9;

    h2 {
        font-family: "Poppins";
        font-weight: 700 !important;
        font-style: normal;
        padding: 0;
        padding-left: 20px;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .cardGroup{
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
.buttonContainer{
    display: flex;
    justify-content: center;
    margin-top: 20px ;
    margin-bottom: 20px ;
    a{
        text-decoration: none;
    }
}
.ShopBtn{
    color: #ffffff;
    background-color: var(--blue-background-color);
    border: 2px solid var(--blue-background-color);
    width: 150px !important;
    height: 50px !important;
    border-radius: 50px;
    font-size: 16px !important;
    text-align: center;
    font-weight: 500;
    display: block !important;
    transition: all 0.3s ease;
    &:hover{
        background-color: var(--backGround-color);
        color: var(--blue-background-color);
    }
}