body {
    /* font-family: Arial, sans-serif; */
    margin: 0;
    padding: 0;
    /* background-color: #f4f4f4; */
}

#board {
    margin-left: 35%;
    /* Set initial margin-left for the board */
    max-width: 65%;
    /* Ensure the content doesn't exceed the remaining width */
    padding: 20px;
}

#management {
    margin-left: 35%;
    /* Set initial margin-left for the management */
    max-width: 65%;
    /* Ensure the content doesn't exceed the remaining width */
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    #board,
    #management {
        margin-left: 20%;
        /* Reduce margin-left for medium screens */
        max-width: 80%;
    }
}

@media (max-width: 768px) {

    #board,
    #management {
        margin-left: 10%;
        /* Further reduce margin-left for smaller screens */
        max-width: 90%;
    }
}

@media (max-width: 480px) {

    #board,
    #management {
        margin-left: 5%;
        /* Minimal margin-left for very small screens */
        max-width: 95%;
    }
}


#team {
    display: flex;
    /* flex-wrap: nowrap; Prevent wrapping */
    flex-wrap: wrap;
    /* Prevent wrapping */
    overflow-x: auto;
    /* Add horizontal scrolling if needed */
    gap: 20px;
    justify-content: center;
    /* Center the content */
    padding: 20px;
}

.tabs {
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #ececec;
}

.tablink {
    background-color: #fff;
    color: #333;
    padding: 15px 80px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px;
}

.tablink:hover {
    background-color: #ddd;
}

.tablink.active {
    background-color: #004c8e30;
    color: #004c8e;
    border-bottom: 3px solid #004c8e;
}

.tabcontent {
    display: none;
    padding: 20px;
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.team-member1 {
    width: 240px;
    height: 260px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, filter 0.3s;
    background-color: #fff;
    padding: 27px;
    border-radius: 8px;
    filter: grayscale(100%);
    /* background-image: url("../img/pic/bgcard.webp"); */

    /* Add these properties */
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Positions the image centrally */
    background-repeat: no-repeat;
    /* Prevents repeating if the image is smaller than the div */
}

.team-member1 img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member1 h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #1c3792;
}

.team-member1 p {
    font-size: 1em;
    color: #666;
    text-align: center;
}

.team-member1:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* background-color: #edf4fd; */
    filter: grayscale(0%);
}

.team-member {
    width: 235px;
    height: 295px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, filter 0.3s;
    background-color: #fff;
    padding: 27px;
    border-radius: 8px;
    filter: grayscale(100%);

    /* Add these properties */
    background-size: cover;
    /* Ensures the image covers the entire div */
    background-position: center;
    /* Positions the image centrally */
    background-repeat: no-repeat;
    /* Prevents repeating if the image is smaller than the div */

    /* Border only on left and bottom */
    border-left: 3px solid #4f8edd;
    border-bottom: 3px solid #4f8edd;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #1c3792;
    font-weight: 600;
}

.team-member p {
    font-size: 1em;
    color: #666;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* background-color: #e1d3cad1; */
    /* background-color: #edf4fd; */
    filter: grayscale(0%);
}

.pdF {
    padding: 10%;
}


.content-box {
    background-color: #014c8e;
    padding: 15px;
    margin-top: 10px;
    text-align: center;
}

.content-box h2,
.content-box p {
    margin: 0;
}

.st1 {
    width: 50%;
}

/* ****************** */

/* *********** board of director css ********** */

.nw-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1900px;
    width: 100%;
}

.nw-profile-card {
    background: #fff;
    max-width: 650px;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    /* box-shadow: -5px 5px 10px rgba(0, 76, 142, 0.16);  */
    text-align: center;
    MARGIN-TOP: 3%;
}

.nw-profile-card img {
    width: 200px;
    height: 200px;
    /* border-radius: 50%; */
    border: 3px solid #014c8e8a;
    margin-bottom: 15px;
    /* margin-right: 70%; */
}

.nw-profile-card h2 {
    color: #004c8e;
    margin-bottom:12px;
    font-family: "Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji";
    text-align: center;
    font-size: 30px;
}

.nw-profile-card p {
    color: black;
    font-size: 17px;
    margin-bottom: 10px;
    text-align: center;
}

.nw-profile-card .nw-designation {
    font-style: italic;
    color: #958686;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .nw-container {
        flex-direction: column;
        align-items: center;
    }
}
.fs{
    font-size: 20px;
}
/* *********** board of director css ********** */