
.governing-hero {
    position: relative;
    min-height: 330px;

    background-image:
        linear-gradient(135deg,
            rgba(4, 120, 87, 0.92),
            rgba(6, 95, 70, 0.82)),
        url("/assets/images/governing-body/meeting-room.jpg");

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.governing-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -180px;
    right: -100px;
}

.governing-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -180px;
    left: -80px;
}

.governing-hero-overlay {
    width: 100%;
    position: relative;
    z-index: 2;
}

.governing-hero-content {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    text-align: center;
    color: white;
}
.governing-badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 17px;
    margin-bottom: 15px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.governing-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 18px;

    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.governing-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.governing-breadcrumb strong {
    color: white;
}

#hero-section{
    margin-top: 120px;
}