/* --- Leadership Section Redesign v5 (Brand Colors) --- */
.leadership-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.geo-img-wrapper {
    position: relative;
    padding: 40px 0 40px 40px;
}

.brand-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #0b1c3c 0%, #e74c3c 100%);
    z-index: 0;
    background-image: repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 30px, rgba(255, 255, 255, 0.03) 30px, rgba(255, 255, 255, 0.03) 60px);
}

.geo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
}

.geo-name-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    padding: 20px 25px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-left: 5px solid #e74c3c;
}

.geo-name-card .name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0b1c3c;
    margin: 0;
}

.geo-name-card .role-group .role {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-top: 4px;
}

.geo-title {
    font-family: 'Poppins', sans-serif;
    color: #555;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.geo-title .light {
    font-weight: 300;
    font-size: 2.2rem;
    color: #0b1c3c;
    display: block;
}

.geo-title .bold {
    font-weight: 700;
    font-size: 2.2rem;
    color: #e74c3c;
    display: block;
}

.geo-body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Hide redundant headings */
.geo-body h1,
.geo-body h2,
.geo-body h3 {
    display: none;
}

@media (max-width: 991px) {
    .geo-img-wrapper {
        padding: 0;
        margin-bottom: 50px;
    }

    .brand-shape {
        width: 100%;
        height: 80%;
        top: 10%;
        right: 0;
        left: 0;
    }

    .geo-name-card {
        right: 0;
        bottom: 10px;
        left: auto;
    }

    .geo-title .light,
    .geo-title .bold {
        font-size: 1.8rem;
    }
}

/* --- Vision Mission Values Cards (3-Column Layout) --- */
.mvv-card {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mvv-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.25rem;
}

.mvv-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Specific Card Accents */
.mvv-card.vision {
    border-top: 4px solid #4a90e2;
    /* Blue */
}

.mvv-card.vision .mvv-icon {
    background: #eff6fc;
    color: #4a90e2;
}

.mvv-card.values {
    border-top: 4px solid #f1c40f;
    /* Yellow */
}

.mvv-card.values .mvv-icon {
    background: #fef9e7;
    color: #f1c40f;
}

.mvv-card.mission {
    border-top: 4px solid #e74c3c;
    /* Red */
}

.mvv-card.mission .mvv-icon {
    background: #fdecec;
    color: #e74c3c;
}

/* Header Text - updated to use specific class */
.about-intro-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
}