/* key values */
.container_key_val {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.values-column {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.value-box {
    background: #e9ecef;
    border-left: 6px solid #333;
    border-radius: 4px;
    padding: 12px 16px;
    margin: 8px 0;
    text-align: left;
}

.value-box:nth-child(1) {
    border-color: #6a1b9a;
}

.value-box:nth-child(2) {
    border-color: #f9a825;
}

.value-box:nth-child(3) {
    border-color: #00838f;
}

.value-box:nth-child(4) {
    border-color: #0288d1;
}

.value-box:nth-child(5) {
    border-color: #7cb342;
}

.circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: auto;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 15px #ddd;
}

.circle .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 20px;
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    background: white;
    border: 6px solid #ddd;
    text-align: center;
}

.icon-segment {
    position: absolute;
    width: 100px;
    height: 100px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
}

/* Adjusted for 5 segments in a circular loop */
.seg1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #6a1b9a;
}

.seg2 {
    top: 60px;
    left: -10px;
    color: #f9a825;
}

.seg3 {
    bottom: 20px;
    left: 22%;
    transform: translateX(-50%);
    color: #00838f;
}

.seg4 {
    bottom: 16px;
    right: 23px;
    color: #0288d1;
}

.seg5 {
    top: 60px;
    right: -10px;
    color: #7cb342;
}

h1 {
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 1000px) {
    .container {
        /* flex-direction: column; */
        align-items: center;
    }

    .values-column {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
}

.h1_keyValue>h1 {
    text-align: center !important;
}

.h3_visonMission>span {
    color: var(--heading-color);
}

.p_text {
    font-size: 24px;
}

.value-box {
    text-align: justify !important;

}



.asia_mehr_key_value {
    text-align: center;
    color: #0EB19C;
    font-size: 48px;
    font-weight: 700;
}

.strong {
    color: var(--heading-color);
}

/* .img-fluid{
    max-width: 45% !important;
} */