/* Governance Pill UI - Precise match to Kaiya & Prema oval style */
.governance-pill-section {
    padding: 100px 0;
    background-color: #f7fafd !important;
    /* Very soft light background */
}

.governance-header {
    text-align: center;
    margin-bottom: 70px;
}

.governance-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.governance-header p {
    color: #080808;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.governance-card {
    background: transparent !important;
    /* No white box background */
    border: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: none !important;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.governance-card:hover {
    transform: translateY(-8px);
}

.governance-img-wrapper {
    width: 220px;
    height: 320px;
    border-radius: 0 !important;
    /* Capsule / Sharp Oval shape removed */
    overflow: hidden !important;
    margin-bottom: 10px;
    /* background: #ffffff !important; */
    box-shadow: none !important;
}

.governance-img-wrapper img {
    width: 100%;
    height: 90%;
    object-fit: cover !important;
    object-position: top center !important;
    transition: transform 0.6s ease;
    border-radius: 0 !important;
}

/* Specific fix for Leadership circular PNGs to make them look square */
/* Specific fix for Leadership circular PNGs to make them look square */
/* .governance-card .governance-img-wrapper img[src$=".png"] {
    transform: scale(1.45);
    object-position: center 15%;
    transform-origin: center center;
} */

/* .governance-card:hover .governance-img-wrapper img[src$=".png"] {
    transform: scale(1.55);
} */

.governance-card:hover .governance-img-wrapper img {
    transform: scale(1.05);
}

.governance-info {
    padding: 0;
}

.governance-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.governance-info span {
    font-size: 1rem;
    color: #054419;
    /* Designation color from screenshot */
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .governance-img-wrapper {
        width: 200px;
        height: 290px;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .governance-pill-section {
        padding: 60px 0;
    }

    .governance-img-wrapper {
        width: 180px;
        height: 260px;
        border-radius: 0;
    }

    .governance-info h4 {
        font-size: 1.25rem;
    }
}