/* Service Process Section Styles */
.service-process {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    transition: transform 0.3s ease;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 113, 227, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    color: #0071e3;
    font-size: 28px;
}

.process-step:hover .step-icon {
    background-color: #0071e3;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.15);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
    flex-grow: 1;
}

/* Responsive adjustments */
.process-step {
    flex: 1 1 220px;
    max-width: 260px;
}

@media (max-width: 1024px) {
    .process-steps {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .process-step {
        width: 100%;
        max-width: 320px;
    }
    
    .step-description {
        max-width: 300px;
    }
}

/* Animation for the service steps */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }