@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap");

* {
    /* border: 1px solid green; */
    font-family: "DM Serif Text", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.no-scroll {
    overflow: hidden;
}

body {
    --primary-text: #474747;
    overflow-x: hidden;
    --menu-text: rgb(32, 32, 32);
    --background-color: rgb(236, 237, 235);
    --social-menu-color: rgb(4, 85, 207);
}

.highlight {
    color: var(--social-menu-color);
    font-size: 3rem;
    font-weight: 700;
}

.login-btn {
    cursor: pointer;
    color: var(--social-menu-color);
    background: transparent;
    padding: 10px 29px;
    border: 2px solid var(--social-menu-color);
    border-radius: 1.5rem;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: all 0.1s ease-in-out;
}

.login a {
    text-decoration: none;
}

.login-btn:hover {
    display: inline-block;
    box-shadow: 4px 7px 12px -4px #0101c2;
    transform: translate(-1px, -3px);
    transition: all 0.15s ease-in-out;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

/* navbar Started */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background-color: rgba(226, 226, 226, 0.5);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    transition: all 0.3s ease;
    background-color: rgba(226, 226, 226, 0.5);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .logo-img {
    height: 60px;
    transition: all 0.3s ease;
}

.logo-img {
    height: 75px;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.navbar-menu ul,
.sidebar-menu ul,
.footer-menu ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    justify-content: space-between;
    gap: 1.8rem;
    letter-spacing: 1.2px;
}

.navbar-menu ul a,
.sidebar-menu ul a,
.footer-menu ul a {
    text-decoration: none;
    color: var(--menu-text);
    position: relative;
    transition: 0.15s ease-in-out;
}

.navbar-menu ul a::after,
.sidebar-menu ul a::after,
.footer-menu ul a::after {
    content: "";
    position: absolute;
    bottom: -2;
    left: 0;
    width: 0;
    height: 1.6px;
    background-color: var(--menu-text);
    transition: 0.15s ease-in-out;
}

.navbar-menu ul a:hover::after,
.footer-menu ul a:hover::after {
    width: 100%;
}

.social-menu i,
.sidebar-social-menu i {
    color: var(--menu-text);
    margin: 0 0.8rem;
}

.social-menu i:hover,
.sidebar-social-menu i:hover {
    color: var(--social-menu-color);
    transform: scale(1.2);
}

.login-admin a {
    text-decoration: none;
    color: #000;
}

.navbar-container .open-menu,
.login-admin {
    display: none;
    z-index: 4;
    font-size: 1.5rem;
    margin: 0.2rem;
    /* margin-right: 1.2rem; */
}

.navbar-container .open-menu,
.login-admin {
    cursor: pointer;
}

/* Sidebar Started */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    z-index: 888;
    width: 80%;
    height: 100vh;
    backdrop-filter: blur(20px);
    background-color: rgba(236, 237, 235, 0.666);
    transition: all 0.2s ease-in-out;
}

.sidebar-menu ul {
    display: flex;
    flex-direction: column;
}

/* Hero Section Started */
.hero-section {
    position: relative;
    height: 100vh;
    max-width: 100vw;
    background-color: rgba(0, 0, 0, 0.3);
    margin-bottom: 6rem;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("images/hero-image.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(0.5px); /* Blurs only the background image */
    z-index: -1; /* Places the pseudo-element behind the content */
}

.hero-container {
    height: 100%;
    width: 100%;
}

.hero-content {
    color: var(--background-color);
    height: 100%;
    width: 100%;
    align-content: center;
    padding: 0.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 400;
    text-shadow: 3px 3px 11px black;
    text-transform: uppercase;
}

.hero-content h3 {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 3px 3px 11px black;
}

.hero-button {
    cursor: pointer;
    border-width: 1px;
    border-color: #d8d4cf;
    border-style: solid;
    color: #000;
    background: #d8d4cf;
    border-radius: 7px;
    min-width: 10rem;
    height: 3.8rem;
    padding: 0;
    font-family: inherit;
    font-size: 1.2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.hero-button:hover {
    display: inline-block;
    transform: translate(-1px, -3px);
    transition: all 0.2s ease-in-out;
    box-shadow: 10px 12px 0px -2px #888484;
}

/* Landing Content Started */

.landing-content-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.landing-content-paragraph {
    display: flex;
    gap: 4rem;
    justify-content: space-around;
    text-align: justify;
    margin-bottom: 6rem;
}

.landing-content-paragraph-one,
.landing-content-paragraph-two {
    color: var(--primary-text);
}

.learn-more-about-us {
    margin-top: 4rem;
}

.learn-more-about-us a {
    text-decoration: none;
    color: black;
    position: relative;
}

.learn-more-about-us a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1.5px;
    width: 0;
    background-color: #000;
    transition: 0.15s ease-in-out;
}

.learn-more-about-us a:hover::after {
    width: 100%;
}

/* Horizontal line started */
.horizontal-line {
    margin-bottom: 6rem;
}

/* Achievement numbers */

.achievement-numbers {
    margin-bottom: 6rem;
}

.achievement-numbers .number {
    padding: 1rem;
}

.achievement-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.number {
    text-align: center;
}

.number h1 {
    color: rgb(3, 3, 134);
    font-size: 3rem;
}

.number p {
    color: var(--primary-text);
}

/* Landing Video Started */
.landing-video {
    margin-top: 26rem;
    margin-bottom: 6rem;
    background-color: var(--background-color);
}

.landing-video-wrapper {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
}

.landing-video-wrapper iframe {
    /* height: 70vh; */
    width: 65vw;
    aspect-ratio: 16/9;
    border-radius: 0.4rem;
    position: absolute;
    top: -320px;
    z-index: 2;
}

.landing-video-motto {
    position: absolute;
    bottom: 2rem;
}

.landing-video-motto h1 {
    color: rgb(0, 141, 12);
    font-size: 2.5rem;
}

.landing-video-motto p {
    font-size: 2rem;
    color: var(--text-color);
    font-style: italic;
}

.motto-text {
    margin: 1.2rem 8vw; /*look once*/
    text-align: justify;
}

/* Landing Curriculum Started */

.landing-curriculum {
    margin-bottom: 6rem;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.content-wrapper {
    margin: 2rem;
}

.content-wrapper .title {
    font-size: 1.7rem;
    width: 50%;
}

.content-wrapper .description {
    text-align: justify;
    width: 50%;
    color: var(--primary-text);
}

.card-section-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.individual-card {
    width: 18rem;
    margin: 2rem;
}

.individual-card > * {
    padding: 0.4rem;
}

.individual-card p {
    text-align: justify;
    color: var(--primary-text);
}

.individual-card-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden; /* Ensures the image does not overflow the container */
}

.individual-card-image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.3rem;
}

/* Activity section started */

.activity {
    margin-bottom: 8rem;
}

.activity-container {
    display: flex;
}

.activity-image-wrapper {
    padding: 2rem;
    width: 50%;
}

.activity-content {
    width: 50%;
    padding: 2.5rem;
}

.activity-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 0.2rem;
    object-fit: cover;
    box-shadow: 159px -78px 0px -25px rgba(13, 36, 14, 0.8);
    -webkit-box-shadow: -55px 62px 0px -23px rgba(209, 209, 209, 0.8);
}

.activity-content-description ul li {
    font-size: large;
    list-style-type: circle;
}

.activity-content-description ul p {
    text-align: justify;
    color: var(--primary-text);
}

.bullet-points {
    margin: 1.3rem;
}

/* Footer section started */

.footer {
    z-index: 3;
    background-color: var(--background-color);
}

.footer-one {
    margin-top: 3rem;
}

.footer-one-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.description1 {
    padding: 0.3rem;
    width: 50%;
}

.description2 {
    padding: 0.3rem;
    width: 25%;
}

.description3 {
    width: 25%;
}

.description1 h3,
.description2 h3,
.description3 h3 {
    font-size: 30px;
    margin: 1rem 0;
}

.description1 p,
.description2 p,
.description3 p {
    color: var(--primary-text);
    font-size: 15px;
}

.footer-two {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-three {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.copyright {
    display: flex;
    justify-content: center;
}

.copyright p {
    color: var(--primary-text);
    font-size: small;
}

/* Iphone 14pro max  */
@media (max-width: 390px) {
    .hero-section,
    .landing-content-paragraph,
    .achievement-numbers,
    .horizontal-line,
    .landing-video,
    .activity,
    .landing-curriculum {
        margin-bottom: 3rem;
    }

    .navbar .logo-img {
        height: 40px;
        transition: all 0.3s ease;
    }

    .navbar.scrolled .logo-img {
        height: 34px;
        transition: all 0.3s ease;
    }

    .navbar-menu,
    .social-menu {
        display: none;
    }

    .login-btn {
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-container .open-menu {
        display: initial;
    }

    .login-admin {
        display: initial;
    }

    .sidebar {
        width: 100vw;
    }

    .landing-content-paragraph {
        display: flex;
        flex-wrap: wrap;
    }

    .landing-curriculum-container .content-wrapper {
        flex-direction: column;
    }

    .landing-curriculum-container .content-wrapper .title {
        width: 100%;
    }

    .landing-curriculum-container .content-wrapper .description {
        width: 100%;
    }

    .achievement-numbers .number h1 {
        font-size: 2.5rem;
    }

    .landing-video {
        margin-top: 10rem;
    }

    .landing-video-wrapper {
        position: relative;
        height: 50vh;
    }

    .landing-video-wrapper iframe {
        width: 90vw;
        position: absolute;
        top: -6rem;
    }

    .landing-video-motto p {
        font-size: 1.4rem;
    }

    .individual-card {
        width: 15rem;
        margin: 2rem;
    }

    .activity-container {
        flex-direction: column;
    }

    .activity-image-wrapper {
        width: 100%;
    }

    .activity-content {
        width: 100%;
    }

    .footer-one-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-one-content .description-two-three {
        flex-direction: column;
    }

    .description1,
    .description2,
    .description3 {
        width: 100%;
        text-align: center;
    }

    .footer-two .social-menu,
    .footer-menu {
        display: none;
    }

    .footer-two {
        display: flex;
        justify-content: center;
    }

    .footer-two,
    .footer-three {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .footer-two .logo-img {
        height: 100px;
    }
}

/* large phone  */
@media (min-width: 391px) and (max-width: 576px) {
    .hero-section,
    .landing-content-paragraph,
    .achievement-numbers,
    .horizontal-line,
    .landing-video,
    .activity,
    .landing-curriculum {
        margin-bottom: 3rem;
    }

    .navbar-menu,
    .social-menu {
        display: none;
    }

    .navbar .logo-img {
        height: 40px;
        transition: all 0.3s ease;
    }

    .navbar.scrolled .logo-img {
        height: 34px;
        transition: all 0.3s ease;
    }

    .navbar-container .open-menu {
        display: initial;
    }

    .login-admin {
        display: initial;
    }

    .sidebar {
        width: 80vw;
    }

    .landing-content {
        padding: 0.4rem;
    }

    .landing-content-paragraph {
        display: flex;
        flex-wrap: wrap;
    }

    .landing-curriculum-container .content-wrapper {
        flex-direction: column;
    }

    .landing-curriculum-container .content-wrapper .title {
        width: 100%;
    }

    .landing-curriculum-container .content-wrapper .description {
        width: 100%;
    }

    .achievement-numbers .number h1 {
        font-size: 2.5rem;
    }

    .landing-video {
        margin-top: 11rem;
    }

    .landing-video-wrapper {
        position: relative;
        height: 50vh;
    }

    .landing-video-wrapper iframe {
        width: 90vw;
        position: absolute;
        top: -7rem;
    }

    .landing-video-motto p {
        font-size: 1.4rem;
    }

    .individual-card {
        width: 18rem;
        margin: 2rem;
    }

    .activity-container {
        flex-direction: column;
    }

    .activity-image-wrapper {
        width: 100%;
    }

    .activity-content {
        width: 100%;
    }

    .footer-one-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-one-content .description-two-three {
        flex-direction: column;
    }

    .description1,
    .description2,
    .description3 {
        width: 100%;
        text-align: center;
    }

    .footer-two .social-menu,
    .footer-menu {
        display: none;
    }

    .footer-two {
        display: flex;
        justify-content: center;
    }

    .footer-two,
    .footer-three {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .footer-two .logo-img {
        height: 100px;
    }
}

/* tablet */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-section,
    .landing-content-paragraph,
    .achievement-numbers,
    .horizontal-line,
    .landing-video,
    .activity,
    .landing-curriculum {
        margin-bottom: 3rem;
    }

    .navbar-container .open-menu {
        display: initial;
    }

    .login-admin {
        display: initial;
    }

    .navbar .logo-img {
        height: 40px;
        transition: all 0.3s ease;
    }

    .navbar.scrolled .logo-img {
        height: 34px;
        transition: all 0.3s ease;
    }

    .navbar-menu,
    .social-menu {
        display: none;
    }

    .sidebar {
        width: 65vw;
    }

    .landing-content {
        padding: 0.4rem;
    }

    .landing-content-paragraph {
        display: flex;
        flex-wrap: wrap;
    }

    .landing-curriculum-container .content-wrapper {
        flex-direction: column;
    }

    .landing-curriculum-container .content-wrapper .title {
        width: 100%;
    }

    .landing-curriculum-container .content-wrapper .description {
        width: 100%;
    }

    .achievement-numbers .number h1 {
        font-size: 2.5rem;
    }

    .landing-video {
        margin-top: 18rem;
    }

    .landing-video-wrapper {
        position: relative;
        height: 50vh;
    }

    .landing-video-wrapper iframe {
        width: 80vw;
        position: absolute;
        top: -12rem;
    }

    .landing-video-motto p {
        font-size: 1.8rem;
    }

    .individual-card {
        width: 18rem;
        margin: 2rem;
    }

    .activity-container {
        flex-direction: column;
    }

    .activity-image-wrapper {
        width: 100%;
    }

    .activity-content {
        width: 100%;
    }

    .footer-one-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-one-content .description-two-three {
        flex-direction: column;
    }

    .description1,
    .description2,
    .description3 {
        width: 100%;
        text-align: center;
    }

    .footer-two .social-menu,
    .footer-menu {
        display: none;
    }

    .footer-two {
        display: flex;
        justify-content: center;
    }

    .footer-two,
    .footer-three {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .footer-two .logo-img {
        height: 100px;
    }
}

/* large tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    /* html {
        font-size: 25px;
    } */

    .hero-section,
    .landing-content-paragraph,
    .achievement-numbers,
    .horizontal-line,
    .landing-video,
    .activity,
    .landing-curriculum {
        margin-bottom: 3rem;
    }

    .navbar-container .open-menu {
        display: initial;
    }

    .login-admin {
        display: initial;
    }

    .navbar .logo-img {
        height: 40px;
        transition: all 0.3s ease;
    }

    .navbar.scrolled .logo-img {
        height: 34px;
        transition: all 0.3s ease;
    }

    .navbar-menu,
    .social-menu {
        display: none;
    }

    .sidebar {
        width: 50vw;
    }

    .landing-content {
        padding: 0.4rem;
    }

    .landing-content-paragraph {
        display: flex;
        flex-wrap: wrap;
    }

    .landing-curriculum-container .content-wrapper {
        flex-direction: column;
    }

    .landing-curriculum-container .content-wrapper .title {
        width: 100%;
    }

    .landing-curriculum-container .content-wrapper .description {
        width: 100%;
    }

    .achievement-numbers .number h1 {
        font-size: 2.5rem;
    }

    .landing-video {
        margin-top: 15rem;
    }

    .landing-video-wrapper {
        position: relative;
        height: 60vh;
    }

    .landing-video-wrapper iframe {
        width: 70vw;
        position: absolute;
        top: -12rem;
    }

    .landing-video-motto p {
        font-size: 2rem;
    }

    .individual-card {
        width: 18rem;
        margin: 2rem;
    }

    .activity-container {
        flex-direction: column;
    }

    .activity-image-wrapper {
        width: 100%;
    }

    .activity-content {
        width: 100%;
    }

    .footer-one-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-one-content .description-two-three {
        flex-direction: column;
    }

    .description1,
    .description2,
    .description3 {
        width: 100%;
        text-align: center;
    }

    .footer-two .social-menu,
    .footer-menu {
        display: none;
    }

    .footer-two {
        display: flex;
        justify-content: center;
    }

    .footer-two,
    .footer-three {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .footer-two .logo-img {
        height: 100px;
    }
}
