/* Service Cards Clickable Styling */
.svc-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* text-align: justify; */
}

.svc-card-link:hover {
    transform: translateY(-8px);
    text-decoration: none;
    color: inherit;
}

.svc-card-link:hover .svc-card {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.svc-card {
    height: 100%;
    transition: all 0.3s ease;
}

/* Ensure the existing card styling is preserved */
.svc-card-link .svc-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    /* text-align: center; */
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
