/* Process flow infographic component */
.process-flow-wrap {
    overflow: hidden;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin-top: 30px;
}

.process-step {
    flex: 1 1 200px;
    max-width: 230px;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.process-step .step-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background-color: #086ad7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px -10px rgba(8, 106, 215, 0.45);
}

.process-step .step-icon-wrap i {
    font-size: 32px;
    line-height: 1;
    color: #fff;
}

.process-step .step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #211e3b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #211e3b;
}

.process-step p {
    font-size: 14px;
    color: #696969;
    line-height: 24px;
    margin: 0;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #086ad7;
    font-size: 22px;
    padding-top: 35px;
    flex: 0 0 auto;
}

@media (max-width: 991px) {
    .process-arrow {
        display: none;
    }

    .process-step {
        flex: 1 1 45%;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .process-step {
        flex: 1 1 100%;
    }
}

.body-wrapper.dark-1 .process-step h4 {
    color: #FFF;
}

.body-wrapper.dark-1 .process-step p {
    color: #9a95c0;
}

/* Page banner icon-cluster graphic */
.page-banner-wrap .row {
    position: relative;
}

.banner-graphic {
    position: relative;
    height: 320px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.banner-graphic .bg-circle {
    position: absolute;
    border-radius: 50%;
}

.banner-graphic .bg-circle-1 {
    width: 300px;
    height: 300px;
    top: 10px;
    left: 30px;
    background: rgba(255, 255, 255, 0.06);
}

.banner-graphic .bg-circle-2 {
    width: 190px;
    height: 190px;
    bottom: 0;
    right: 10px;
    background: rgba(8, 106, 215, 0.18);
}

.banner-graphic .graphic-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #086ad7, #211e3b);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -15px rgba(8, 106, 215, 0.55);
    z-index: 2;
}

.banner-graphic .graphic-core i {
    font-size: 52px;
    line-height: 1;
    color: #fff;
}

.banner-graphic .graphic-chip {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.35);
    z-index: 3;
}

.banner-graphic .graphic-chip i {
    font-size: 24px;
    line-height: 1;
    color: #086ad7;
}

.banner-graphic .chip-1 {
    top: 5px;
    left: 15px;
}

.banner-graphic .chip-2 {
    top: 30px;
    right: 0;
}

.banner-graphic .chip-3 {
    bottom: 35px;
    left: 0;
}

.banner-graphic .chip-4 {
    bottom: 5px;
    right: 35px;
}

@media (max-width: 991px) {
    .banner-graphic {
        display: none;
    }
}

/* Case study icon thumbnail (replaces photography) */
.case-thumb-icon {
    border-radius: 7px;
    height: 285px;
    background: linear-gradient(135deg, #086ad7, #211e3b);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-thumb-icon i {
    font-size: 70px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.case-thumb-icon::before,
.case-thumb-icon::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.case-thumb-icon::before {
    width: 180px;
    height: 180px;
    top: -60px;
    right: -40px;
}

.case-thumb-icon::after {
    width: 120px;
    height: 120px;
    bottom: -40px;
    left: -30px;
}

.case-thumb-icon.case-thumb-lg {
    height: 360px;
}

.case-thumb-icon.case-thumb-lg i {
    font-size: 100px;
}

/* Case study result stats */
.case-stats-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 10px;
}

.case-stat-item {
    flex: 1 1 200px;
    background: linear-gradient(135deg, #086ad7, #211e3b);
    border-radius: 7px;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
}

.case-stat-item .stat-value {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.case-stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* Case study module/tech tags */
.case-modules-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-modules-tags span {
    background: #eef4fc;
    color: #086ad7;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
}

.body-wrapper.dark-1 .case-modules-tags span {
    background: rgba(8, 106, 215, 0.15);
}
