/****** Under-Construction ****/
.whitebgcolor {
    background-color: #fff;
}

#highmanage_body {
    padding: 0rem 0 250px;
    margin: 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background-image: url(../images/patternBackground.png);
    background-repeat: no-repeat;
    background-position: center 0px;
    animation: moveBackground 10s ease-in infinite alternate;
    min-height: 80vh;
    position: relative;
}

@keyframes moveBackground {
    0% {
        background-position: center 0px;
    }

    25% {
        background-position: center 15px;
    }

    50% {
        background-position: center 5px;
    }

    75% {
        background-position: center 20px;
    }

    100% {
        background-position: center 0px;
    }
}

.container {
    width: 90%;
    max-width: var(--container-width);
    background: url('../images/main_border.png') top center no-repeat;
    margin: 0rem auto;
    padding: 0rem 0;
    position: relative;
}

#highmanage_body::after {
    content: '';
    display: block;
    width: 90%;
    max-width: 813px;
    height: 214px;
    background: url('../images/university_pattern.png') bottom center no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 5;
}

@keyframes bodyPattern {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

h2.main-title {
    display: block;
    width: 277px;
    background-color: #1b8354;
    position: absolute;
    top: -28px;
    right: 0;
    left: 0;
    margin: 0 auto;
    filter: drop-shadow(4px 0px 24px #1b835463);
    color: #fff;
    padding: 0.7rem 1rem;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 8px;
    text-align: center;
}

.manager {
    background: url('../images/manager_border.png') top center no-repeat;
    position: relative;
    width: 90%;
    max-width: 775px;
    height: auto;
    margin: 3rem auto 0rem;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0px 0px 0px #226b4428);
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(2px 4px 16px #2f9a6199);
    }
}

.manager .thum {
    display: block;
    width: 80%;
    max-width: 344px;
    margin: 1rem auto 0;
    animation: breathing 5s ease-in-out infinite;
}

    .manager .thum img {
        width: 100%;
    }

.manager h2 {
    text-align: center;
    color: var(--main-text);
    font-weight: 700;
    font-size: 1.3rem;
}

.manager h3 {
    text-align: center;
    color: var(--second-text);
    font-weight: 600;
    font-size: 1.2rem;
}

.under-dev {
    display: block;
    margin: 0 auto;
    width: 471px;
    animation: float 6s ease-in-out infinite;
}

.underdev_text {
    display: block;
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
}

    .underdev_text h2 {
        background-color: #1b8354;
        color: #fff;
        display: inline-block;
        padding: 0.5rem 2rem;
        margin: 0 auto 1rem;
        font-weight: 500;
        font-size: 1.5rem;
        border-radius: 150px;
    }

    .underdev_text p {
        font-size: 1rem;
        color: #222a26;
        font-weight: 700;
        overflow: hidden; /* Ensures the text is hidden until the animation reveals it */
        border-right: 0.15em solid orange; /* The typwriter cursor */
        white-space: nowrap; /* Keeps the content on a single line */
        letter-spacing: 0.15em; /* Adjust as needed */
        animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end;
        padding-right: 10px;
        text-align: center;
    }

/* The typing effect */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }

    50% {
        border-color: orange;
    }
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

/*****************************/
