/* INNER BANNER */
.people-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url("../images/4.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */

.banner-overlay {
    background: rgba(0,0,0,0.45);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

/* TITLE */

.banner-overlay h1 {
    font-size: 68px;
    margin-bottom: 20px;
}

/* TEXT */

.banner-overlay p {
    font-size: 24px;
    max-width: 700px;
    line-height: 1.7;
}

/* MOBILE */

@media (max-width: 768px) {

    .inner-banner {
        height: 320px;
    }

    .banner-overlay h1 {
        font-size: 42px;
    }

    .banner-overlay p {
       font-size: 18px;
    }

}

/* SCHOOL INTRO */

.school-intro {
    padding: 100px 40px;
    background: #ffffff;
}

/* CONTAINER */

.intro-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */

.intro-text h2 {
    font-size: 54px;
    color: #003366;
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 30px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 25px;
}

/* IMAGE */

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */

@media (max-width: 768px) {

    .school-intro {
        padding: 60px 20px;
    }

    .intro-container {
        grid-template-columns: 1fr;
    }

    .intro-text h2 {
        font-size: 34px;
    }

    .intro-text p {
       font-size: 18px;
    }

}

/* VISION MISSION SECTION */

.vision-mission {
    background: #f5f9ff;
    padding: 100px 40px;
}

/* CONTAINER */

.vm-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */

.vm-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

/* TITLE */

.vm-card h2 {
    font-size: 54px;
    color: #003366;
    margin-bottom: 30px;
}

/* HIGHLIGHT */

.highlight {
    font-size: 30px;
    color: #0056b3;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* TEXT */

.vm-card p {
    font-size: 30px;
    line-height: 1.9;
    color: #555555;
}

/* MOBILE */

@media (max-width: 768px) {

    .vision-mission {
        padding: 60px 20px;
    }

    .vm-container {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 35px 25px;
    }

    .vm-card h2 {
        font-size: 32px;
    }

    .highlight {
        font-size: 22px;
    }

}


/* VALUES SECTION */

.values-section {
    background: #ffffff;
    padding: 100px 40px;
}

/* HEADING */

.values-heading {
    text-align: center;
    margin-bottom: 70px;
}

.values-heading h2 {
    font-size: 54px;
    color: #003366;
    margin-bottom: 20px;
}

.values-heading p {
    font-size: 30px;
    color: #666666;
}

/* GRID */

.values-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.value-card {
    background: #003b8e;
    padding: 60px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HOVER */

.value-card:hover {
    transform: translateY(-10px);
    background: #0056b3;
}

/* TEXT */

.value-card h3 {
    color: white;
    font-size: 30px;
    font-weight: bold;
}

/* MOBILE */

@media (max-width: 768px) {

    .values-section {
        padding: 60px 20px;
    }

    .values-heading h2 {
        font-size: 36px;
    }

    .values-heading p {
       font-size: 18px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 45px 20px;
    }

    .value-card h3 {
        font-size: 24px;
    }

}

/* STAFF SECTION */

.staff-section {
    padding: 100px 40px;
    background: #ffffff;
}

/* HEADING */

.staff-heading {
    text-align: center;
    margin-bottom: 70px;
}

.staff-heading h2 {
    font-size: 54px;
    color: #003366;
    margin-bottom: 20px;
}

.staff-heading p {
    font-size: 30px;
    color: #666666;
}

/* GRID */

.staff-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.staff-card {
    background: #f5f9ff;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HOVER */

.staff-card:hover {
    transform: translateY(-10px);
}

/* TITLE */

.staff-card h3 {
    font-size: 35px;
    color: #003366;
    margin-bottom: 15px;
}

/* NAME */

.staff-card p {
    font-size: 25px;
    color: #555555;
}

/* MOBILE */

@media (max-width: 768px) {

    .staff-section {
        padding: 60px 20px;
    }

    .staff-heading h2 {
        font-size: 36px;
    }

    .staff-heading p {
       font-size: 18px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

}

/* BOARD SECTION */

.board-section {
    background: #f5f9ff;
    padding: 100px 40px;
}

/* HEADING */

.board-heading {
    text-align: center;
    margin-bottom: 70px;
}

.board-heading h2 {
    font-size: 52px;
    color: #003366;
    margin-bottom: 20px;
}

.board-heading p {
    font-size: 22px;
    color: #666666;
}

/* GRID */

.board-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.board-card {
    background: white;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HOVER */

.board-card:hover {
    transform: translateY(-10px);
}

/* NAME */

.board-card h3 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 15px;
}

/* ROLE */

.board-card p {
    font-size: 20px;
    color: #555555;
}

/* MOBILE */

@media (max-width: 768px) {

    .board-section {
        padding: 60px 20px;
    }

    .board-heading h2 {
        font-size: 36px;
    }

    .board-heading p {
       font-size: 18px;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

}

/* GOVERNANCE SECTION */

.governance-section {
    background: #ffffff;
    padding: 100px 40px;
}

/* CONTAINER */

.governance-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* TITLE */

.governance-container h2 {
    font-size: 52px;
    color: #003366;
    margin-bottom: 35px;
}

/* TEXT */

.governance-container p {
    font-size: 21px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 30px;
}

/* LINKS */

.governance-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

/* BUTTONS */

.governance-links a {
    text-decoration: none;
    background: #003b8e;
    color: white;
    padding: 16px 30px;
    border-radius: 10px;
   font-size: 18px;
    transition: 0.3s;
}

/* HOVER */

.governance-links a:hover {
    background: #0056b3;
}