:root {
    --color-9a442b: #9a442b;
    --color-be8770: #be8770;
    --color-4a84ca: #4a84ca;
    --color-6cd5bf: #6cd5bf;
    --color-375c56: #375c56;
    --color-c35308: #c35308;
    --color-817b2e: #817b2e;
    --color-41322c: #41322c;
    --color-a4cecd: #a4cecd;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font: medium;
    text-decoration: none;
    color: black;
    white-space: nowrap;
}

.linksContainer {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navLinks {
    display: flex;
    gap: 0.5rem;
}

.navLinks a {
    text-decoration: none;
    color: black;
    border: 1px solid white;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navLinks a:hover {
    background: white;
    color: var(--color-375c56);
}

.admissionbtn {
    background: var(--color-375c56);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.admissionbtn:hover {
    background: #2f4e47;
}

footer {
    background: var(--color-a4cecd);
}

footer {
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    border-top: 1px solid #ccc;
}

.logoContainer .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logoContainer h3 {
    font-size: 1.2rem;
    line-height: 1.3;
}

.logoContainer p {
    margin-top: 20px;
    line-height: 1.6;
    max-width: 350px;
}

footer h1 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

footer a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    color: black;
}

.column3 p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.column3 form {
    display: flex;
    gap: 10px;
}

.column3 input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    outline: none;
}

.column3 button {
    padding: 10px 16px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 900px) {
    footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    footer {
        grid-template-columns: 1fr;
    }
}

main {
    padding: 0;
    overflow: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero {
    background: var(--color-375c56);
    color: #fff;
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.about-hero p {
    font-size: 1.15rem;
    opacity: 0.88;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.about {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    color: var(--color-375c56);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-4a84ca);
    border-radius: 2px;
    margin: 10px auto 0;
}

.about p {
    font-size: 1.05rem;
    color: var(--color-41322c);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.mission-vision {
    background: var(--color-a4cecd);
    padding: 80px 0;
}

.mission-vision h2 {
    font-size: 2rem;
    color: var(--color-41322c);
    text-align: center;
    margin-bottom: 2.5rem;
}

.mission-vision h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-375c56);
    border-radius: 2px;
    margin: 10px auto 0;
}

.mission-vision .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-vision .mission,
.mission-vision .vision {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.2rem;
    box-shadow: 0 4px 20px rgba(55, 92, 86, 0.12);
    border-left: 5px solid var(--color-375c56);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-vision .mission:hover,
.mission-vision .vision:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(55, 92, 86, 0.2);
}

.mission-vision h3 {
    font-size: 1.2rem;
    color: var(--color-375c56);
    margin-bottom: 0.8rem;
}

.mission-vision p {
    color: var(--color-41322c);
    line-height: 1.75;
}

.history {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.history h2 {
    font-size: 2rem;
    color: var(--color-375c56);
    margin-bottom: 1.2rem;
}

.history h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-9a442b);
    border-radius: 2px;
    margin: 10px auto 0;
}

.history p {
    font-size: 1.05rem;
    color: var(--color-41322c);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.achievements {
    background: var(--color-375c56);
    padding: 80px 0;
    text-align: center;
}

.achievements h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2.5rem;
}

.achievements h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-6cd5bf);
    border-radius: 2px;
    margin: 10px auto 0;
}

.achievements .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.achievements .stats>div {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 1rem;
    backdrop-filter: blur(6px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.achievements .stats>div:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.achievements .stats h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-6cd5bf);
    margin-bottom: 0.4rem;
}

.achievements .stats p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.values {
    background: var(--color-a4cecd);
    padding: 80px 0;
    text-align: center;
}

.values h2 {
    font-size: 2rem;
    color: var(--color-41322c);
    margin-bottom: 2rem;
}

.values h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-c35308);
    border-radius: 2px;
    margin: 10px auto 0;
}

.values ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.values ul li {
    background: #fff;
    color: var(--color-41322c);
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--color-41322c);
    transition: all 0.25s ease;
    cursor: default;
}

.values ul li:hover {
    background: var(--color-41322c);
    color: #fff;
}

.leadership {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.leadership h2 {
    font-size: 2rem;
    color: var(--color-375c56);
    margin-bottom: 2.5rem;
}

.leadership h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-4a84ca);
    border-radius: 2px;
    margin: 10px auto 0;
}

.leadership .team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.leadership .member {
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid var(--color-a4cecd);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    background: #fafafa;
}

.leadership .member:hover {
    box-shadow: 0 8px 28px rgba(74, 132, 202, 0.18);
    transform: translateY(-4px);
}

.leadership .member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-a4cecd);
    margin-bottom: 1rem;
    background: var(--color-a4cecd);
}

.leadership .member h3 {
    font-size: 1.1rem;
    color: var(--color-375c56);
    margin-bottom: 0.3rem;
}

.leadership .member p {
    font-size: 0.9rem;
    color: var(--color-817b2e);
    font-weight: 500;
}

.cta {
    background: var(--color-375c56);
    padding: 90px 0;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta .btn {
    display: inline-block;
    background: #fff;
    color: var(--color-375c56);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.cta .btn:hover {
    background: var(--color-41322c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
    .mission-vision .grid {
        grid-template-columns: 1fr;
    }

    .achievements .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership .team {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .achievements .stats {
        grid-template-columns: 1fr 1fr;
    }

    .leadership .team {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .linksContainer {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }

    .navLinks {
        flex-wrap: wrap;
        justify-content: center;
    }

    .admissionbtn {
        width: 100%;
    }
}