/* Services Section Styles */
.services-section {
    background-color: var(--dark-bg); /* Slate gray background */
    padding: var(--section-padding);
}

.service-card {
    background-color: var(--text-white);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 6px var(--shadow-light);
}

.service-card .icon {
    color: var(--secondary-color); /* Blue icons */
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow-medium);
}

.service-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color); /* Blue button */
    color: var(--text-white);
    text-decoration: none;
    border: none;
    border-radius: 6px;
    transition: all var(--transition-base);
    font-weight: 600;
    margin-top: 1.5rem;
    cursor: pointer;
}

.service-link:hover {
    background-color: var(--primary-color); /* Mint on hover */
    transform: translateY(-2px);
}

/* Ensure text colors are visible on dark background */
.services-section h2,
.services-section .section-label {
    color: var(--text-white);
}

.service-card h3 {
    color: var(--text-dark);
    margin: 1rem 0;
    font-size: 1.5rem;
}
