@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');
:root {
    --orange: #f9ba60;
    --pink: #e9768f;
    --black: #1d1c1c;
    --white: #fff;
    --light-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
}

.moving-text {
    width: 100%;
    color: var(--black);
    text-align: center;
    padding: 140px 0 0 0;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1001;
    /* Ensure it's above other elements */
    animation: move-text 25s linear infinite;
}

@keyframes move-text {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Adjust the header position to not overlap with the moving text */

.header {
    top: 40px;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

.heading {
    font-size: 45px;
    color: #0bf5af;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    padding: 3rem 7%;
}


/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    background: var(--white);
    box-shadow: var(--box-shadow);
}


/* heaing work ms starts */

.school_img {
    width: 100px;
    vertical-align: middle;
}

.school_name {
    display: inline;
    font-size: 2.25rem;
    vertical-align: middle;
}


/* heading work ms ends */

.header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
}

.header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
}

.header .navbar a:hover,
.header .icons div:hover {
    color: var(--orange);
    font-size: 30px;
}

.header .icons div {
    font-size: 2.5rem;
    margin-left: 1.7rem;
    color: var(--black);
    cursor: pointer;
}

#menu-btn {
    display: none;
}


/* header ends */


/* home */

.home {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    position: relative;
}

.home .content {
    flex: 1 1 40rem;
    padding-top: 6.5rem;
}

.home .content h3 {
    font-size: 6rem;
    color: var(--black);
}

.home .content h3 {
    color: var(--orange);
}

.home .content p {
    font-size: 1.7rem;
    color: var(--light-color);
    line-height: 1.8;
    padding: 1rem 0;
}

.home .image {
    flex: 1 1 40rem;
}

.home .image img {
    width: 100%;
    padding: 4rem;
}

.custom-shape-divider-bottom-1684324473 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1684324473 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 107px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1684324473 .shape-fill {
    fill: var(--pink);
}


/* end */


/* about us */

.about {
    background: var(--pink);
}

.about .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.about .row .image {
    flex: 1 1 50rem;
}

.about .row .image img {
    width: 100%;
    height: 100%;
}

.about .row .content {
    flex: 1 1 40rem;
}

.about .row .content h3 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.5;
}

.about .row .content p {
    font-size: 1.4rem;
    color: var(--white);
    padding: 1rem 0;
    line-height: 2;
}


/* end */


/* activity starts */

.ac {
    text-align: center;
    font-family: "Lovely Home";
    color: #000000;
    font-size: 40px;
}

.act {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container100 {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping */
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    padding: 20px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.headd {
    text-align: center;
    font-size: 45px;
    font-weight: 500px;
}

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 20px;
}

.card h3 {
    margin: 0 0 10px;
}

.card p {
    margin: 0;
}

.card:hover {
    transform: translateY(-10px);
}

@media (max-width: 1200px) {
    .card {
        flex: 1 1 calc(33.33% - 40px);
        /* Adjust width for 3 cards per row */
    }
}

@media (max-width: 900px) {
    .card {
        flex: 1 1 calc(50% - 40px);
        /* Adjust width for 2 cards per row */
    }
}

@media (max-width: 600px) {
    .card {
        flex: 1 1 100%;
        /* Full width for each card */
    }
}


/* activities end */


/* contact */

.contact .icons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.contact .icons-container .icons {
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border-radius: 2rem;
    text-align: center;
    outline: .1rem solid rgba(0, 0, 0, .1);
    outline-offset: -1rem;
}

.contact .icons-container .icons i {
    font-size: 2.5rem;
    height: 6rem;
    width: 6rem;
    color: var(--white);
    line-height: 6rem;
    border-radius: 50%;
    background: var(--orange);
}

.contact .icons-container .icons h3 {
    font-size: 2.2rem;
    padding: 1rem 0;
    color: var(--black);
}

.contact .icons-container .icons p {
    font-size: 1.5rem;
    line-height: 2;
    color: var(--light-color);
}

.contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 4rem;
}

.contact .row .image {
    flex: 1 1 20rem;
}

.contact .row .image img {
    width: 100%;
}

.contact .row form {
    flex: 1 1 50rem;
    padding: 2rem;
    border: 0.1rem solid rgba(0, 0, 0, .4);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
}

.contact .row form h3 {
    font-size: 3rem;
    padding-bottom: 1rem;
    color: var(--black);
}

.contact .row form .inputBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact .row form .inputBox input {
    width: 49%;
}

.contact .row form .inputBox input,
.contact .row form textarea {
    font-size: 1.6rem;
    border: 0.1rem solid rgba(0, 0, 0, .3);
    border-radius: 0.5rem;
    padding: 1rem 1.2rem;
    color: var(--black);
    margin: .7rem 0;
}

.contact .row form .inputBox input:focus,
.contact .row form textarea:focus {
    border: 0.1rem solid var(--orange);
}

.contact .row form textarea {
    height: 15rem;
    width: 100%;
    resize: none;
}


/* end */


/* media query */

@media (max-width:991px) {
    html {
        font-size: 55%;
    }
    .header {
        padding: 2rem 3rem;
    }
    section {
        padding: 3rem;
    }
}

@media (max-width:768px) {
    #menu-btn {
        display: inline-block;
    }
    .header .navbar {
        position: absolute;
        top: 110%;
        right: -110%;
        width: 30rem;
        box-shadow: var(--box-shadow);
        border-radius: .5rem;
        background: var(--white);
    }
    .header .navbar.active {
        right: 2rem;
        transition: .4s linear;
    }
    .header .navbar a {
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }
    .home .content h3 {
        font-size: 4.5rem;
    }
    .moving-text {
        width: 100%;
        background-color: var();
        color: var(--black);
        text-align: center;
        padding: 140px 0 0;
        font-size: 2rem;
        font-weight: bold;
        position: relative;
        top: 0;
        left: 0;
        animation: move-text 25s linear infinite;
    }
}

@media (max-width:450px) {
    .school_name {
        display: inline;
        font-size: 1.50rem;
        vertical-align: middle;
    }
    .school_img {
        width: 50px;
        vertical-align: middle;
    }
    html {
        font-size: 50%;
    }
    .home .content h3 {
        font-size: 3.5rem;
    }
}


/* -----------footer--------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container8 {
    max-width: 1170px;
    margin: auto;
}

ul {
    list-style: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.footer {
    background-color: #24162b;
    padding: 70px 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul i:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFFFFF;
    padding-left: 8px;
}

.footer-col .social-links i {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #00dde5;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #000000;
    transition: all0.5s ease;
}

.footer-col .social-links i:hover {
    color: #24262b;
    background-color: #4da8d2;
}

@media (max-width:700px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
        margin: 30px;
    }
}