.service-card {
    position: relative;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
}

.service-card .card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.heading-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-icons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.action-icons img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.action-icons img:hover {
    transform: scale(1.1);
}

.service-card h3{
    justify-content: space-between;
}

.right i{
    padding:10px;
    color: #027dc3;
}

.action-icons .btn{
    padding: 5px 15px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--white);
    background: var(--btn-gradient);
    height:min-content;
}