/* Why IIL grid (values) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin: 2rem 0 2.5rem;
}

.value-item {
    background: #ffffff;
    border: 1px solid #e2eaf2;
    border-radius: 20px;
    padding: 1.8rem 1.4rem;
    transition: all 0.2s;
}

.value-item:hover {
    border-color: #b6d0e2;
    box-shadow: 0 10px 20px -10px rgba(0,60,100,0.15);
}

.value-item i {
    font-size: 2.2rem;
    color: #2a6b9c;
    margin-bottom: 1.2rem;
}

.value-item p {
    color: #2b4f6e;
    font-size: 0.95rem;
    margin-top: 0.4rem;
}


.page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}


/* GLOBAL COMPANIES + WBENC */
.global-section {
    background: #e9f1f9;
    border-radius: 32px;
    padding: 2.5rem 2.5rem;
    margin: 2.8rem 0 2.5rem;
}

.global-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.global-text {
    flex: 2 1 300px;
}

.global-text h3 {
    font-size: 1.9rem;
    font-weight: 400;
    color: #10364b;
    margin-bottom: 0.6rem;
}

.global-text p {
    font-size: 1.1rem;
    color: #1f4865;
}

.wbec-badge {
    flex: 1 1 220px;
    background: #ffffffcc;
    backdrop-filter: blur(2px);
    padding: 1.6rem 1.8rem;
    border-radius: 40px;
    text-align: center;
    border: 2px solid white;
}

.wbec-badge i {
    font-size: 2.8rem;
    color: #b72c6c;
    margin-bottom: 0.5rem;
}

.wbec-badge h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1b2c3d;
}

.wbec-badge p {
    font-size: 0.9rem;
}

.small-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    background: #ffffffc0;
    padding: 1rem 1.8rem;
    border-radius: 60px;
    color: #1e4a70;
}

.small-note i {
    margin-right: 6px;
    color: #a13d77;
}
/* TESTIMONIAL SECTION */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 1.8rem;
}

.testimonial-header h2 {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #f4faff;
    padding: 1.8rem 1.5rem;
    border-radius: 28px;
    border: 1px solid #dde9f5;
}

.testimonial-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #002b44;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-title i {
    color: #3c7aa6;
    font-size: 1.2rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: #1f3f58;
    margin: 0.8rem 0 1rem;
    font-style: normal;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 600;
    color: #134470;
    border-top: 1px solid #cbddec;
    padding-top: 0.8rem;
    margin-top: 0.3rem;
    font-size: 0.95rem;
}
