.service-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--sekin-border);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-card-link-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.service-card-image {
    height:170px;
    overflow: hidden;
    z-index:1;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
     z-index:3;
}

.service-card-icon {
    width: 72px;
    height: 72px;
    margin-top: -36px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--sekin-orange);
    border: 5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sekin-white);
    box-shadow: 0 8px 20px rgba(255, 122, 0, .3);
    z-index:5;
}
.service-card-icon svg{
    width:30px;
    height:30px;
}

.service-card-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-card-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--sekin-dark);
}

.service-card-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sekin-orange);
    position: absolute;
    left: 0;
    top: 5px;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-weight: 700;
    font-size: 14px;
    color: var(--sekin-orange);
}
