.overall-banner-section {
    position: relative;
    overflow: hidden;
}

.overall-banner-image {
    object-fit: cover;
}

.overall-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.overall-banner-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.overall-banner-overlay p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Navbar Styling */
.committee-nav {
    /* background: #007bff; */
    padding: 10px;
    text-align: center;
}

.committee-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.committee-nav ul li {
    margin: 5px;
}

.committee-nav ul li a {
    text-decoration: none;
    font-size: 15px;
    color: white;
    padding: 10px 50px;
    display: inline-block;
    background: #3652A5;
    transition: 0.3s;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);

}

.committee-nav ul li a:hover,
.committee-nav ul li a.active {
    background: #003d82;
    transform: scale(1.05);
}

/* Content Section */
#committee-content {
    margin: 20px;
   
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#content-container {
    transition: opacity 0.3s ease-in-out;
}

/* Active Navbar Item */
.committee-nav ul li a.active {
    background: #F5A425; /* Highlight color */
    color: black;
}
