/* Service Links Styling */
.service-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-link:hover {
    color: #00d4ff;
    text-decoration: none;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0ea5e9);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}