/* services.css */
.services-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.service-section {
    padding: 80px 0;
}

.service-section.bg-light {
    background-color: #f8f9fa !important;
}

.service-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.02);
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.service-features li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.service-process {
    padding: 80px 0;
}

.process-step {
    padding: 20px;
    height: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    color: #0066cc;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .service-section {
        padding: 50px 0;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
}