nav {
    background-color: var(--boxBG) !important;
    z-index: 1000 !important;
    position: relative;
}

/* STATUS SECTION */
.statCont {
    padding: 15px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.statBox {
    background: var(--boxBG);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    width: 200px;
    transition: 0.5s;
}
.statBox:hover {
    transform: translateY(-7px);
}
.statIco {
    font-size: 40px;
    color: var(--hColor);
    margin-bottom: 20px;
}
.statAmt {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}
.statWork {
    font-size: 14px;
    color: #d0d0f0;
}
/* /STATUS SECTION */


.AboutSect {
    padding: 10px;
    background-color: var(--boxBG);
}
/* ABOUT SECTION */
.aboutImgCont {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6%;
    flex-wrap: wrap;
    gap: 100px;
    height: 100vh;
}
.aboutImgCont img {
    height: 250px;
}
.about {
    height: max-content;

    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 5%;
    text-align: center;
}
.about h1 {
    text-align: center;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Akira';
}
.about p {
    font-size: 22px;
}
/* /ABOUT SECTION */


/* TEACHERS SECTION */
.teachers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.teachers h1 {
    font-family: 'Akira';
    text-align: center;
}
.teachers img {
    padding: 20px;
    height: 350px;
    border-radius: 12px;
}
.teachers .teachersCont {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 50px;
}
.teachers .teachersCont div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
}
.teachers .teachersCont div img {
    border-radius: 12px !important;
}
/* TEACHERS SECTION */


/* TIC MESSAGE */
.message {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
    background: transparent;
    border: 2px solid white;
    border-radius: 12px;
}
.message .image-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    opacity: 0.9;
}
.message .text-container {
    flex: 1;
}
.message .text-container p {
    font-size: 20px;
    line-height: 1.6;
    color: white;
}
.message .text-container h2 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 800;
    color: #000;
}
.message .text-container h3 {
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}
/* /TIC MESSAGE */


/* BOARD */
.levelChart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 1px;
    margin-top: 100px;
}
.levelChart h1 {
    text-transform: uppercase;
    font-family: 'Akira';
    text-align: center;
}
.level {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.level.level-2 {
    gap: 400px;
    margin-top: -350px;
}
.box {
    background-color: var(--boxBG);
    color: #fff;
    /* border: 1px solid var(--hColor); */
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 150px;
    /* box-shadow: 0px 0px 5px 1px var(--hColor); */
}
.level img {
    width: 260px;
    border-radius: 12px;
}
/* /BOARD */


/* RESPONSIVE */
@media (max-width: 1024px) {
    .level.level-2 {
        gap: 32px;
        margin-top: 0px;
    }
}
@media (max-width: 768px) {
    .image-container img {
        max-width: 100px;
    }
}
@media (max-width: 425px) {
    .aboutImgCont {
        margin-bottom: 100px;
        padding: 0;
    }
    .aboutImgCont img {
        height: 200px;
        padding: 0;

    }
}