/* Process Steps Widget Styles */

.process-steps-wrapper {
    /* Fallback */
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 20px;
    text-align: center;
}

/* Header Section */
.process-header {
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #eef2ff;
    color: #4f46e5;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.process-heading {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 25px;
}

.process-gradient-text {
    background: linear-gradient(90deg, #4f46e5, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.process-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.process-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Steps Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    padding-top: 40px;
    /* Space for badges */
}

/* Connecting Line (Desktop) */
.process-line-connector {
    position: absolute;
    top: 33%;
    /* Aligns with badges */
    left: 15%;
    /* Start after first badge */
    right: 15%;
    /* End before last badge */
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
    display: block;
}

/* Step Card */
.process-step-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    z-index: 1;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Number Badge */
.step-number-badge {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
    border: 4px solid #fff;
    /* White ring effect */
}

/* Step Icon */
.step-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 10px;
}

.step-icon-box i,
.step-icon-box svg {
    color: #fff;
    font-size: 24px;
    width: 24px;
    height: 24px;
    fill: #fff;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.4;
}

.step-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .process-heading {
        font-size: 36px;
    }

    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-line-connector {
        display: none;
        /* Hide line on tablet/mobile */
    }
}

@media (max-width: 767px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        /* More vertical space */
    }

    .process-step-card {
        padding: 30px 20px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-heading {
        font-size: 32px;
    }
}