/* c:\Users\Hp\Desktop\Nexus\core\static\assets\css\service_marketplace.css */

.service-hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../img/backgrounds/services-bg.jpg"); /* Adjusted path for static files */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.category-card-service {
    text-align: center;
    margin-bottom: 1rem;
    transition: transform 0.2s ease-in-out;
    padding: 1rem;
    background-color: #fff;
    border-radius: var(--border-radius-md); /* Assuming you have these CSS variables defined in a base CSS */
    box-shadow: var(--shadow-sm); /* Assuming you have these CSS variables defined in a base CSS */
}

.category-card-service a {
    text-decoration: none;
    color: inherit;
}

.category-card-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md); /* Assuming you have these CSS variables defined in a base CSS */
}

.category-card-service img, .category-card-service .icon-placeholder {
    max-height: 80px;
    width: 80px;
    object-fit: contain; /* or cover if you prefer cropping */
    margin-bottom: 0.75rem;
    border-radius: 50%;
    border: 1px solid #eee;
    padding: 3px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.category-card-service .icon-placeholder {
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-text-muted); /* Assuming you have these CSS variables defined in a base CSS */
}

.category-card-service .category-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-provider-section {
    background-color: var(--color-primary-light); /* Assuming you have these CSS variables defined in a base CSS */
    padding: 3rem 1rem;
    text-align: center;
    border-radius: var(--border-radius-lg); /* Assuming you have these CSS variables defined in a base CSS */
}