/* =========================================================
   PROCESS SECTION
   ========================================================= */

.process-section {
    padding: 100px 0;
    background: #eef6ff;
    overflow: hidden;
}

.process-section .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.process-section .section-badge {
    display: inline-block;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.process-section .section-title {
    margin: 0;
    color: #101828;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.process-section .section-description {
    margin-top: 18px;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS GRID
   ========================================================= */

.process-section .row.g-4 {
    margin-top: 10px;
}


/* =========================================================
   PROCESS CARD
   ========================================================= */

.process-card {
    position: relative;
    background: #ffffff;
    border: 0;
    border-radius: 16px;
    padding: 30px 25px !important;
    min-height: 295px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.process-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(16, 24, 40, 0.13);
}


/* =========================================================
   STEP NUMBER
   ========================================================= */

.process-number {
    position: absolute;

    top: 16px;
    right: 18px;

    width: auto;
    height: auto;

    margin: 0;

    background: transparent;

    color: #eaf2ff;

    font-size: 38px;
    line-height: 1;
    font-weight: 800;

    z-index: 1;
}


/* =========================================================
   PROCESS ICON
   ========================================================= */

.process-icon {
    position: relative;

    width: 88px;
    height: 88px;

    margin: 0 auto 22px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #1677ff 0%,
        #398cff 100%
    );

    color: #ffffff;

    z-index: 2;

    box-shadow:
        0 8px 20px rgba(13, 110, 253, 0.22);
}


/* Font Awesome icon */

.process-icon i {
    margin: 0 !important;

    font-size: 25px !important;
    line-height: 1;

    color: #ffffff;
}


/* =========================================================
   PROCESS TITLE
   ========================================================= */

.process-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #101828;

    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   PROCESS DESCRIPTION
   ========================================================= */

.process-card .process-description {
    position: relative;
    z-index: 2;

    color: #667085;

    font-size: 15px;
    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   HIGHLIGHT BOX
   ========================================================= */

.process-highlight {
    margin-top: 50px;

    padding: 30px 35px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(16, 24, 40, 0.08);
}

.process-highlight h3 {
    margin: 0 0 8px;

    color: #101828;

    font-size: 24px;
    font-weight: 700;
}

.process-highlight div {
    color: #667085;

    font-size: 15px;
    line-height: 1.7;
}

.process-highlight .btn {
    padding: 12px 24px;

    border-radius: 8px;

    font-weight: 600;
}


/* =========================================================
   BOOTSTRAP COLUMN HEIGHT FIX
   ========================================================= */

.process-section .row.g-4 > div {
    display: flex;
}

.process-section .row.g-4 > div .process-card {
    width: 100%;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .process-section {
        padding: 80px 0;
    }

    .process-section .section-title {
        font-size: 36px;
    }

    .process-card {
        min-height: 280px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .process-section {
        padding: 65px 0;
    }

    .process-section .section-title {
        font-size: 30px;
    }

    .process-section .section-description {
        font-size: 15px;
    }

    .process-card {
        min-height: auto;
        padding: 30px 22px !important;
    }

    .process-number {
        top: 14px;
        right: 16px;

        font-size: 32px;
    }

    .process-icon {
        width: 62px;
        height: 62px;

        margin-bottom: 20px !important;
    }

    .process-card h3 {
        font-size: 19px;
    }

    .process-card .process-description {
        font-size: 14px;
    }

    .process-highlight {
        padding: 25px 20px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .process-section {
        padding: 55px 0;
    }

    .process-section .section-title {
        font-size: 27px;
    }

    .process-card {
        padding: 28px 20px !important;
    }

}