
.core-values {
    padding: 60px 20px;
   
}

.value-card {
    position: relative;
    padding: 40px 25px 60px;
    height: 100%;
    width: 100%;
    border-left: 5px solid;
    background: #fff;
     display: grid;
    place-items: center;  /* True center */
}



/* Pill Heading */
.value-title {
    position: absolute;
    top: -25px;
    left: 20px;
    height: 60px;
    padding: 10px 30px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

/* Number Box */
.value-number {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 14px;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    font-size: 16px;
}

/* Icon */
.value-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
    color: #000;
}

/* Color Themes */
.integrity {
    border-color: #ffb703;
}
.integrity .value-title,
.integrity .value-number {
    background: #ffb703;
}

.innovation {
    border-color: #00b050;
}
.innovation .value-title,
.innovation .value-number {
    background: #00b050;
}

.empathy {
    border-color: #00b0f0;
}
.empathy .value-title,
.empathy .value-number {
    background: #00b0f0;
}

.agility {
    border-color: #92d050;
}
.agility .value-title,
.agility .value-number {
    background: #92d050;
}

.diversity {
    border-color: #0070c0;
}
.diversity .value-title,
.diversity .value-number {
    background: #0070c0;
}

/* Text Styling */
.value-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
}


/* Responsive Fix */
@media (max-width: 768px) {
    .value-title {
        font-size: 14px;
        padding: 8px 20px;
    }
}


.why-section {
    padding: 60px 20px;
   
}

/* Header line */
.why-line {
    height: 3px;
    width: 100%;
    background: #f37021;
    margin: 15px 0 50px;
}

/* Item layout */
.why-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

/* Number Box */
.why-number {
    min-width: 80px;
    min-height: 55px;
    border: 3px solid #00a651;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    color: #f37021;
}

/* Text */
.why-text {
    font-size: 20px;
    line-height: 1.4;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .why-text {
        font-size: 16px;
    }

    .why-number {
        min-width: 60px;
        min-height: 45px;
        font-size: 18px;
    }
}