div.contain_list_services_karonet {
    min-height: 350px;
    padding: 0 ;
}

div.contain_list_services_karonet .contain_list_services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

div.contain_list_services_karonet .contain_list_services .bloc_service {
    width: calc(100%/3 - 30px);
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

div.contain_list_services_karonet .contain_list_services .bloc_service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

div.contain_list_services_karonet .contain_list_services .bloc_service .contain_img {
    height: 250px;
    width: 100%;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    position: relative;
}

div.contain_list_services_karonet .contain_list_services .bloc_service .contain_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

div.contain_list_services_karonet .contain_list_services .bloc_service:hover .contain_img img {
    transform: scale(1.1);
}

div.contain_list_services_karonet .contain_list_services .bloc_service .svg-img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

div.contain_list_services_karonet .contain_list_services .bloc_service .svg-img svg{
    position: absolute;
    bottom: 0;
    width: 100%;
}

div.contain_list_services_karonet .contain_list_services .bloc_service .svg-img svg.svg-green{
    fill: rgba(39, 158, 100, 0.9);
    transition: all 0.3s ease;
}

div.contain_list_services_karonet .contain_list_services .bloc_service:hover .svg-img svg.svg-green{
    fill: rgba(0, 153, 255, 0.9);
}

div.contain_list_services_karonet .contain_list_services .bloc_service .svg-img svg.svg-white{
    fill: white;
    bottom: -1px;
}

div.contain_list_services_karonet .contain_list_services .bloc_service .contain_texte {
    padding: 25px;
}

div.contain_list_services_karonet .contain_list_services .bloc_service .title {
    position: relative;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
    color: #0099ff;
    transition: all 0.3s ease;
}

div.contain_list_services_karonet .contain_list_services .bloc_service:hover .title{
    color: #279E64;
}

div.contain_list_services_karonet .contain_list_services .bloc_service .title::before {
    height: 2px;
    width: 30px;
    border-radius: 2px;
    background-color: #279E64;
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    transition: all 0.3s ease;
}

div.contain_list_services_karonet .contain_list_services .bloc_service:hover .title::before{
    background-color: #0099ff;
    width: 50px;
}

div.contain_list_services_karonet .contain_list_services .bloc_service p.texte {
    font-size: 15px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
}

div.contain_list_services_karonet .contain_list_services .bloc_service p.link_show a {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 25px;
    background-color: #279E64;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

div.contain_list_services_karonet .contain_list_services .bloc_service:hover p.link_show a {
    background-color: #0099ff;
    transform: translateX(5px);
}
