
/*#service-card-1 {*/
/*    background: url("https://wallpapers.com/images/featured/laptop-murjp1nk4lp1idlt.jpg");*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-color: cornflowerblue; !* Set the overlay color *!*/
/*    background-blend-mode: multiply; !* Other options: overlay, screen, soft-light *!*/
/*}*/

/*#service-card-2 {*/
/*    background: url("https://img.freepik.com/free-photo/ai-technology-microchip-background-digital-transformation-concept_53876-124669.jpg");*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    !*background-color: cornflowerblue; !* Set the overlay color *!*!*/
/*    !*background-blend-mode: multiply; !* Other options: overlay, screen, soft-light *!*!*/
/*}*/

/*#service-card-3 {*/
/*    background: url("https://thumbs.dreamstime.com/b/digital-marketing-media-website-ad-email-social-network-seo-digital-marketing-media-website-ad-email-social-network-seo-video-124276305.jpg");*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-color: cornflowerblue; !* Set the overlay color *!*/
/*    background-blend-mode: multiply; !* Other options: overlay, screen, soft-light *!*/
/*}*/

/*#service-card-4 {*/
/*    background: url("https://img.freepik.com/free-vector/blue-social-media-background_1017-7008.jpg");*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    !*background-color: cornflowerblue; !* Set the overlay color *!*!*/
/*    !*background-blend-mode: multiply; !* Other options: overlay, screen, soft-light *!*!*/
/*}*/





/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service-title{
        color: #38b6ff;
        text-align: center;
        padding-bottom: 3rem;
}
.service-subtitle{
    color: white;
    text-align: center;
    padding-bottom: 3rem;
}
.service-smallSubtitle{

    color: white;
    text-align: center;
    padding-bottom: 3rem;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.service .service-item .service-img img {
    height: 200px; /* Set your desired uniform height */
    object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
    width: 100%;
    transition: 0.5s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color:#007bff;
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: white;
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: white;
    background: #007bff;
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: white;
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: white;
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: #007bff;
    background: white;
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: white;
    background: #010e36;
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: #010e36;
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #007bff;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/