/* Service Section */
.service-list {
    margin-top: 48px;
}

.service-item {
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}
.service-item-best{
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #dfc21d57;
    right: 18px;
    top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.service-item-best img{
    width: 14px !important;
}
.service-item a {
    color: inherit;
    text-decoration: none;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(144, 97, 255, 0.1);
}

.service-item h4 {
    min-height: 54px;
    display: flex;
    align-items: center;
    color: #181C32 !important;
    font-size: 24px;
}

.service-item p {
    min-height: 72px;
    word-break: keep-all;
    margin-bottom: 0;
    color: #7E8299 !important;
    font-size: 16px;
}

.service-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #555 !important;
}

.service-link .ki-arrow-right {
    transition: transform 0.3s ease;
}

.service-item:hover .service-link .ki-arrow-right {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .service-item h4 {
        min-height: auto;
    }
    
    .service-item p {
        min-height: auto;
    }
}