/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('/images/services-hero.jpg') center/cover no-repeat fixed;
    padding: 120px 0;
    color: white;
    position: relative;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

.service-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .services-hero {
        padding: 100px 0;
    }
    
    .service-card {
        padding: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .services-hero {
        padding: 80px 0;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}
