/* ===================== OUR PROCESS SECTION ===================== */
.our-process {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
}

.our-process h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--rich-black-color);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

/* Gradient connecting lines */
.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, var(--lime-green-color), var(--vista-blue-color));
    z-index: 0;
}

.process-card {
    position: relative;
    background: var(--white-color);
    flex: 1 1 22%;
    padding: 40px 20px 20px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    z-index: 1;
}

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

.process-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: -60px auto 20px auto;
    border-radius: 50%;
    color: var(--white-color);
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

.process-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--rich-black-color);
}

.process-card p {
    font-size: 0.95rem;
    color: var(--granite-gray-color);
    line-height: 1.5;
}

/* Bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps::before {
        width: 4px;
        height: calc(100% - 20px);
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .process-card {
        flex: 1 1 70%;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .process-card {
        padding: 30px 15px 15px 15px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 2.2rem;
        margin-top: -50px;
    }

    .process-card h4 {
        font-size: 1.1rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }
}
