.kservice-section {
    width: 100%;
    padding: 45px 15px 25px;
    background: #f5f6f7 !important;
    overflow: hidden;
}

.kservice-section,
.kservice-section * {
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

.kservice-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.kservice-card {
    width: calc((100% - 60px) / 3);
    background: #ffffff;
    border-radius: 7px;
    padding: 16px 16px 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);
    border-bottom: 3px solid #F55B14;
    overflow: hidden;
}

.kservice-image-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 7px;
}

.kservice-image {
    width: 100%;
    display: block;
    
    border-radius: 7px;
    transition: transform 0.6s ease;
}

.kservice-card:hover .kservice-image {
    transform: scale(1.03);
}

.kservice-card h3 {
    margin: 18px 0 12px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.kservice-title-link {
    color: #071426;
    text-decoration: none;
}

.kservice-title-link:hover {
    color: #071426;
    text-decoration: none;
}

.kservice-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F55B14;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.35s ease;
}

.kservice-readmore:hover {
    color: #F55B14;
    text-decoration: none;
    transform: scale(1.08);
}

.kservice-readmore span {
    width: 16px;
    height: 16px;
    background: #F55B14;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
}

@media (max-width: 991px) {
    .kservice-card {
        width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 767px) {
    .kservice-container {
        gap: 20px;
    }

    .kservice-card {
        width: 97%;
    }

  
}