/** process-section **/

.process-section {
    position: relative;
    background: var(--secondary-color);
}

    .process-section .pattern-layer {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .process-section .tab-btns {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #396340;
        border-radius: 120px;
        max-width: 500px;
        margin: 0 auto;
        margin-bottom: 60px;
        padding: 8px;
    }

        .process-section .tab-btns li {
            position: relative;
            display: inline-block;
            overflow: hidden;
            width: 50%;
            font-size: 20px;
            line-height: 24px;
            font-family: var(--title-font);
            color: #fff;
            padding: 20px 20px;
            font-weight: 500;
            border-radius: 60px;
            text-align: center;
            z-index: 1;
            cursor: pointer;
            transition: all 500ms ease;
        }

            .process-section .tab-btns li.active-btn {
                color: var(--title-color);
            }

            .process-section .tab-btns li:before {
                position: absolute;
                content: '';
                width: 100%;
                height: 0%;
                left: 0px;
                top: 0px;
                z-index: -1;
                transition: all 500ms ease;
            }

            .process-section .tab-btns li.active-btn:before,
            .process-section .tab-btns li:hover:before {
                height: 100%;
            }

            .process-section .tab-btns li i {
                position: relative;
                display: inline-block;
                margin-right: 10px;
            }

.processing-block-one {
    position: relative;
    display: block;
    background: #396340;
    padding: 33px 40px 30px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

    .processing-block-one .inner-box {
        position: relative;
        display: block;
        padding-left: 48px;
        z-index: 1;
    }

    .processing-block-one:before {
        position: absolute;
        content: '';
        background: #fff;
        border-radius: 10px;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        transform: scaleX(0);
        transform-origin: center;
        transition: all 500ms ease;
    }

    .processing-block-one:hover:before {
        transform: scaleX(1);
    }

    .processing-block-one .inner-box .count-text {
        position: absolute;
        display: inline-block;
        left: 0px;
        top: 0px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        border-radius: 50%;
        text-align: center;
        font-size: 20px;
        font-family: var(--title-font);
        color: var(--title-color);
        font-weight: 600;
    }

    .processing-block-one .inner-box h3 {
        position: relative;
        display: block;
        font-size: 24px;
        line-height: 32px;
        color: #fff;
        margin-bottom: 15px;
        transition: all 500ms ease;
    }

        .processing-block-one .inner-box h3 a {
            display: inline-block;
            color: #fff;
        }

            .processing-block-one .inner-box h3 a:hover {
                text-decoration: underline;
            }

    .processing-block-one:hover .inner-box h3,
    .processing-block-one:hover .inner-box h3 a {
        color: var(--title-color);
    }

    .processing-block-one .inner-box p {
        color: #fff;
        transition: all 500ms ease;
    }

    .processing-block-one:hover .inner-box p {
        color: var(--text-color);
    }

.content_block_two .content-box {
    position: relative;
    display: block;
}

    .content_block_two .content-box .inner-box .single-item {
        position: relative;
        display: block;
        padding-bottom: 45px;
        padding-left: 48px;
        z-index: 1;
    }

        .content_block_two .content-box .inner-box .single-item:last-child {
            padding-bottom: 0px;
        }

        .content_block_two .content-box .inner-box .single-item:before {
            position: absolute;
            content: '';
            background: #E5E5E5;
            width: 1px;
            height: 100%;
            left: 16px;
            top: 0px;
            z-index: -1;
        }

        .content_block_two .content-box .inner-box .single-item:after {
            position: absolute;
            content: '';
            width: 1px;
            height: calc(50% + 20px);
            left: 16px;
            top: 0px;
            z-index: -1;
            opacity: 0;
            transition: all 500ms ease;
        }

        .content_block_two .content-box .inner-box .single-item:hover:after {
            opacity: 1;
        }

        .content_block_two .content-box .inner-box .single-item:last-child:before,
        .content_block_two .content-box .inner-box .single-item:last-child:after {
            display: none;
        }

        .content_block_two .content-box .inner-box .single-item .count-text {
            position: absolute;
            display: inline-block;
            left: 0px;
            top: 0px;
            width: 32px;
            height: 32px;
            line-height: 32px;
            background: #fff;
            border-radius: 4px;
            font-size: 18px;
            font-weight: 700;
            color: var(--title-color);
            text-align: center;
            transition: all 500ms ease;
        }

        .content_block_two .content-box .inner-box .single-item:hover .count-text {
            color: #fff;
        }

        .content_block_two .content-box .inner-box .single-item h3 {
            position: relative;
            display: block;
            font-size: 24px;
            line-height: 32px;
            font-weight: 500;
            margin-bottom: 9px;
        }

            .content_block_two .content-box .inner-box .single-item h3 a {
                display: inline-block;
                color: var(--title-color);
            }

                .content_block_two .content-box .inner-box .single-item h3 a:hover {
                }

        .content_block_two .content-box .inner-box .single-item p {
            font-size: 18px;
            line-height: 30px;
            color: var(--title-color);
        }


/** process-style-two **/

.process-style-two {
    position: relative;
    background: #fffaf4;
}

.process-style-two .outer-container {
    background: #fffaf4;
    border-radius: 20px;
    overflow: hidden;
}

/* Remove the flexbox layout from inner-container */
.process-style-two .inner-container {
    position: relative;
}

.process-style-two .inner-container .shape {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.processing-block-two {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.50);
    padding: 30px;
}

.processing-block-two:before {
    position: absolute;
    content: '';
    background: #fff;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    left: 14px;
    top: 14px;
    border-radius: 50%;
}

.processing-block-two .inner-box h4 {
    display: none;
}

.processing-block-two .inner-box {
    z-index: 999;
    position: relative;
    padding-top: 40px;
}

/* Icon Badge - positioned at top-left of the circle */
.processing-block-two .benefit-number-badge {
    position: absolute;
    top: -35px;
    left: -20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide number and label - only show icon */
.processing-block-two .benefit-number-badge .number,
.processing-block-two .benefit-number-badge .label {
    display: none;
}

/* Icon styling - centered inside the orange circle */
.processing-block-two .benefit-number-badge .badge-icon {
    position: relative;
    bottom: auto;
    right: auto;
    width: auto;
    height: auto;
    background: none;
    border: none;
    box-shadow: none;
    font-size: 32px;
    color: #fff;
    transform: none;
}

.processing-block-two .inner-box h3 {
    color: #1E1E2A;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.processing-block-two .inner-box p {
    color: #5E626F;
    font-size: 16px;
    line-height: 24px;
}

.processing-block-two:hover {
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.processing-block-two:hover:before {
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.processing-block-two:hover .benefit-number-badge {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6);
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
    .process-style-two {
        padding-left: 0px;
        padding-right: 0px;
    }
}


@media only screen and (max-width: 767px) {
    .processing-block-two {
        margin: 0 auto; /* Center the circle */
    }
    
    .processing-block-two .benefit-number-badge {
        width: 60px;
        height: 60px;
        top: -30px;
        left: -15px;
    }
    
    .processing-block-two .benefit-number-badge .badge-icon {
        font-size: 28px;
    }
    
    .processing-block-two .inner-box h3 {
        font-size: 22px;
        line-height: 28px;
    }
    
    .processing-block-two .inner-box p {
        font-size: 15px;
        line-height: 22px;
    }
    
    /* Center the entire benefit section on tablet */
    .process-style-two .row {
        justify-content: center;
    }
    
    .process-style-two .col-lg-4,
    .process-style-two .col-md-6 {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 576px) {
    .processing-block-two {
        margin: 0 auto; /* Center the circle */
    }
    
    .processing-block-two .benefit-number-badge {
        width: 55px;
        height: 55px;
        top: -27px;
        left: -12px;
    }
    
    .processing-block-two .benefit-number-badge .badge-icon {
        font-size: 24px;
    }
    
    .processing-block-two .inner-box h3 {
        font-size: 20px;
        line-height: 26px;
        margin-top: 25px;
    }
    
    /* Center the entire benefit section on mobile */
    .process-style-two .row {
        justify-content: center;
    }
    
    .process-style-two .col-lg-4,
    .process-style-two .col-md-6 {
        display: flex;
        justify-content: center;
    }
}

/** background **/

.processing-block-two .inner-box h4 {
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.processing-block-two .inner-box h4 span {
    color: #fff;
}

.processing-block-two .inner-box {
    z-index: 999;
}
