.New_Be_A_Karagir {}

.stepper_header {
    display: flex;
    background-color: #fffaf6;
    padding: 18px 32px;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-bottom: 1px solid #bd7e43;
}

/* Back Button */
.back_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 8px;
    border-radius: 6px;
    color: #3b3028;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    box-shadow: 0px 4px 5px -1px rgb(176 176 176);
    background-color: #ffff;
    border: 1px solid #c4b9aa;
}

.back_btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.back_arrow {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #6e6459;
    transition: transform 0.2s ease;
}

.back_btn:hover .back_arrow {
    transform: translateX(-3px);
}

.back_text {
    line-height: 1;
}

/* Steps Container */
.steps_container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
}

/* Step Item */
.step_item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f0f0f;
    cursor: pointer;
    font-weight: 700;
}

.step_circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #494949;
    background-color: transparent;
    transition: all 0.3s ease;
    background: #ffff;
}

.step_label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

/* Connecting Line */
.step_line {
    width: 40px;
    height: 1px;
    background-color: #333333;
    transition: background-color 0.3s ease;
}

/* Active State (Gold theme matching design) */
.step_item.active_step .step_circle {
    background-color: #bd7e43;
    border-color: #bd7e43;
    color: #fff;
    font-weight: 700;
}

.step_item.active_step .step_label {
    color: #bd7e43;
}

.step_line.active_line {
    background-color: #bd7e43;
}

/* ----------------------------- */


.New_Be_A_Karagir .main_layout {
    margin: 25px 20px;
}


.New_Be_A_Karagir .main_layout .left_col {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #bb9c7f;
    height: 100%;
}

.New_Be_A_Karagir .main_layout .middle_col {
    height: 100%;
}

/* ------------------------------------- */
/* Container Bar */
.trust_bar {
    width: 100%;
    background-color: #fcf8f5;
    /* Warm off-white / beige tone */
    border-top: 1px solid #ebdcd0;
    border-bottom: 1px solid #ebdcd0;
    padding: 16px 24px;
    box-sizing: border-box;
}

/* Inner Flex Layout */
.trust_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* Individual Item */
.trust_item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a524c;
    /* Subtle brown/slate text tone */
}

/* FontAwesome Icon Specific Sizing & Color */
.trust_icon {
    color: #b59061;
    /* Warm gold/tan accent color */
    font-size: 18px;
    flex-shrink: 0;
}

/* Typography */
.trust_text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* Vertical Separator Line */
.trust_divider {
    width: 1px;
    height: 18px;
    background-color: #e0d0c3;
}


.New_Be_A_Karagir .section_sub_heading {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.error_text {
    color: rgb(105, 30, 30);
}


@media (max-width: 900px) {
    .trust_container {
        justify-content: center;
        gap: 12px 20px;
    }

    .trust_divider {
        display: none;
    }
}


@media (min-width:1200px) and (max-width: 1599px) {
    .stepper_header {
        padding: 18px 10px;
    }

    .steps_container {
        gap: 8px;
    }

    .step_item {
        gap: 5px;
    }

    .step_circle {
        width: 23px;
        height: 23px;
        font-size: 11px;
    }

    .step_label {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .steps_container {
        width: 1000px;
        overflow: auto;
    }

    .New_Be_A_Karagir .main_layout .left_col {
        padding: 10px;
    }

    .trust_container {
        max-width: 1000px;
    }
}