.services_block {
    background-color: var(--serv-bg-color);
}
.exp-service-grid {
    /* display: grid;
    grid-template-columns: repeat(3 ,1fr); */
    /* gap: 50px 70px;
    align-items: stretch;
    margin-top: 80px; */
}

/* 
.exp-service-swiper .item:hover {
    background: linear-gradient(135deg, #00B170, #005A7A);    
}
*/

.exp-service-swiper .item {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.exp-service-swiper .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00B170, #005A7A);
    opacity: 0;
    transition: opacity 0.4s ease; /* fade in & out */
    z-index: 0;
    pointer-events: none; /* never intercept clicks */
}

/* fade IN on hover */
.exp-service-swiper .item:hover::before {
    opacity: 1;
}

/* keep content above the overlay */
.exp-service-swiper .item > * {
    position: relative;
    z-index: 1;
}

/* optional: smooth text color transition too */
.exp-service-swiper .item * {
    transition: color 0.4s ease;
}

.exp-service-swiper .item:hover * {
    color: var(--white) !important;
}

.exp-service-swiper .item a {
    text-decoration: none;
}

.service-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*gap: 23px;*/
    height: 100%;
    padding: 40px;
}
.service-col .s_count {
    font-family: var(--font-Mr-Eaves-ultra);
    font-size: var(--secHeadingFont);
    font-style: normal;
    font-weight: 900;
    line-height: 50px;
    color: var(--color-greenSheen);
}
.s_title .title {
    font-family: var(--font-Mr-Eaves-Heavy);
    font-size: var(--serHeadingFont);
    font-style: normal;
    font-weight: 800;
    line-height: var(--serHeadingLh);
    color: var(--color-midnightBlue);    
    text-transform: uppercase;
    margin: 0;
    min-height: 80px;
}
.service-col .s_content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.s_content .content-flex-col {
    margin-top: 16px;
    justify-content: space-between;
    flex-grow: 1;
    display: flex;
}





@media(max-width:1320px) {
    .exp-service-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
    }
    .s_content .title {
        font-size: 35px;
        line-height: 28px;
        min-height: 56px;
    }
    /*.s_content .parah {
        font-size: 16px;
        line-height: 28px;
    }*/
}
@media(max-width:767px) {
    .s_content .title{
        min-height: unset;
    }
    /*.service-col .s_count {
        font-size: 41px;
        line-height: 32px;
    }*/
    .service-col {
        gap: 18px;
    }
    .exp-service-grid {
        margin-top: 0;
    }
}