*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f4f4f4;
}

html{
    scroll-behavior: smooth;
}

header {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header h1 {
    margin: 0;
}

.header-nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px;
    height: 80px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    color: #2f2f2f;
    background: linear-gradient(#00ff887d, #00ffc86f);
    backdrop-filter: blur(3px);
}

.header-nav .fa-bars{
    display: none;
}

.header-nav h1, .prog-details-nav h1{
    max-width: 50%;
    width: 300px;
    font-size: 25px;
}


.header-nav nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
.header-nav nav ul li {
    display: inline;
}
nav ul li a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: bold;
    transition: color 0.3s;
}
.header-nav nav ul li a:hover {
    color: #005a42;
}

.hero {

    overflow: hidden;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
}
.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.slide {
    width: 100vw;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.slide img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.slide .desc{
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
}

.slide .desc p{
    max-width: 100%;
    width: 600px;
    text-align: center;
}

.slide h2 {
    font-size: 3rem;
    
}

.navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.navigation span {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.navigation span.active {
    background: linear-gradient(#00ff88, #00ffc8);
}
.hero .cta {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 150px;
    transform: translateX(-50%);
    background: linear-gradient(#00ff88, #00ffc8);
    color: #000000;
    padding: 15px;
    text-align: center;
    border-radius: 3px;
    text-decoration: none;
    transition: all 1s ease;
}
.hero .cta:hover {
    filter: hue-rotate(360deg);
}


.mobile-menu{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(#00ff88a0, #00ffc8a1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform: translateX(-100%);
    transition: all 1s ease-in-out;
}

.mobile-menu.active{
    transform: translateX(0);
}

.mobile-menu i{
    font-size: 30px;
    position: absolute;
    right: 3%;
    top: 3%;
    color: #1d1d1d;
}

.mobile-menu nav{
    width: 80%;
}

.mobile-menu nav ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu nav ul li a{
    text-decoration: none;
    color: #000;
}


.main-ctas{
    width: 150px;
    padding: 15px;
    text-decoration: none;
    border-radius: 3px;
    background: linear-gradient(#00ff88, #00ffc8);
    color: #fff;
    text-align: center;
    color: #000;
    transition: all 1s ease;
    z-index: 2;
}

.main-ctas:hover{
    filter: hue-rotate(360deg);
}


.section {
    padding: 50px 10%;
    text-align: center;
    margin: 100px 0;
    border-radius: 10px;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

.section-headers{
    text-align: center;
    margin: 50px 0;
}

.section h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    color:#005a42;
}
.section p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.about {
    background: #e9f5e9;
}

.about div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.about img {
    max-width: 100%;
    width: 1000px;
    height: 400px;
    object-fit: cover;
    transform: rotateX(-10deg) rotateY(5deg);
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.5);
}


#programs{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.admissions, .about-page{
    height: 600px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
}


.admissions img, .about-page img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.admissions h2, .admissions p, .about-page p{
    z-index: 1;
}

.admissions ul, .about-page ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    z-index: 1;
}
.admissions ul li, .about-page ul li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.admissions ul li::before, .about-page ul li::before {
    content: '\2713';
    color: #004d00;
    margin-right: 10px;
}

.testimonials{
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.testimonial-slider {
    max-width: 95%;
    width: 1000px;
    margin: 50px auto;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: grab;
}

.swiper{
    height: 400px;
}

.swiper-slide {
    text-align: center;
    padding: 20px;
}

.swiper-slide h3, .swiper-slide p{
    margin-top: 20px;
}
.swiper-slide img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: 50% 25%;
}
.swiper-slide h3 {
    font-size: 1.2rem;
    color: #000000;
}
.swiper-slide p {
    font-size: 0.9rem;
    color: #000000;
}

.swiper-pagination{
    position: absolute;
    bottom: -30px;
}

.swiper-pagination-bullet {
    background-color: #00FFFF;
}


.wcu-stmts{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


.wcu-stmts img{
    max-width: 95%;
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.wcu-stmts div{
    max-width: 95%;
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wcu-stmts div ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    text-align: left;
}

.wcu-stmts div ul li strong{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wcu-stmts div ul li i{
    color: #00ffc8;
    font-size: 30px;
}


.values-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
    margin-top: 50px;
}

.values-section .values-els{
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

.values-section .values-els div{
    max-width: 100%;
    width: 350px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #77ffbf;;
    border-radius:20px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}


.values-section .values-els div h3, .values-section .values-els div p{
    z-index: 3;
}

.values-section .values-els div::before{
    content: "";
    position: absolute;
    right: -50%;
    top: -200%;
    width: 200%;
    height:200%;
    border-radius: 50%;
    background-color: #b9ffde;
    transition: all 1s ease-in-out;
}

.values-section .values-els div:hover::before{
    top: -150%;
    animation: spin 5s infinite linear forwards;
}

@keyframes spin {
    from{
        rotate: 0deg;
    }

    to{
        rotate: 360deg;
    }
}

.contact{
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%) blur(1px);
    z-index: -1;
}

.contact form {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 800px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: flex-start;
    background: transparent;
    backdrop-filter: blur(2px);
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 1px solid rgba(103, 103, 103, 0.5);
}

.contact form  label{
    margin-bottom: 10px;
}

.contact h3, .contact p{
    z-index: 2;
}

.contact form input, .contact form textarea, .contact form button {
    width: 90%;
    margin-bottom: 15px;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid rgba(103, 103, 103, 0.5);
    background-color: transparent;
    border-radius: 3px;
    color: #fff;
}


.error{
    color: rgb(255, 0, 0);
    font-size: 13px;
}


.location{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
    flex-wrap: wrap;
    padding: 50px 10px;
    margin: 100px 0;
}

.location div{
    max-width: 100%;
    width: 450px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/*CONTACT FORM BUTTONS*/

.contact form button, .contact-page form button {
    width: 60%;
    background: linear-gradient(#00ff88, #00ffc8);
    color: #000000;
    border: none;
    cursor: pointer;
    transition: all 1s ease;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact form button:hover, .contact-page form button:hover {
    background: linear-gradient(0.25turn, #00ff88, #00ffc8);
    filter: hue-rotate(360deg);
}

.programs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.program-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 100%;
    width: 300px;
    text-decoration: none;
    color: #000;
}
.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.program-card h4 {
    margin: 10px 0;
    font-size: 16px;
    color: #005a42;
}
.program-card p {
    padding: 0 15px 15px;
    font-size: 14px;
    line-height: 1.5;
}
.program-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}




/*ADMISSION FORM PAGE*/


.admission-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 800px;
    margin: 150px auto;
}
.admission-form h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #00ac87;
    text-align: center;
}


.admission-form input, .admission-form textarea, .admission-form select, .admission-form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-top: 10px;
}
.admission-form button {
    background: linear-gradient(0.25turn, #00ff88, #00ffc8);
    color: #000000;
    border: none;
    cursor: pointer;
    transition: all 1s ease;
}
.admission-form button:hover {
    filter: hue-rotate(360deg);
}


/*HOME GALLERY SECTION*/

.home-gallery{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
}


/*ABOUT PAGE GALLERY*/

.gallery{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 100px 10px;
}


.gallery .gallery-item{
    max-width: 100%;
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #77ffbf;
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.gallery .gallery-item i{
    font-size: 25px;
    position: absolute;
    left: 2%;
    top: 2%;
    color: #00ff88;
}

.gallery .gallery-item .see-more-div{
    width: 100%;
    text-align: right;
    padding: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(transparent, #77ffbf 50%);
    transition: all 1s ease;
}

.gallery .gallery-item .see-more-div:hover{
    background: linear-gradient(transparent, #3cffa4 50%);
}

.gallery .gallery-item img, .gallery .gallery-item video{
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 50% 25%;
}

.gallery .gallery-item p{
    padding: 10px;
}


.media-full-view{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(3px);
    z-index: 11;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease;
}

.media-full-view.active{
    opacity: 1;
    visibility: visible;
}

.media-full-view::-webkit-scrollbar{
    appearance: none;
    -webkit-appearance: none;
    width: 5px;
    background-color: #00c368;
}


.media-full-view::-webkit-scrollbar-thumb{
    appearance: none;
    background-color: #fff;
}

.media-full-view p{
    max-width: 100%;
    width: 800px;
}

.media-full-view img, .media-full-view video{
    width: 90%;
    height: 80%;
    object-fit: contain;
}


.media-full-view i{
    position: absolute;
    right: 0%;
    top: 0%;
    font-size: 30px;
    cursor: pointer;
    background-color: #00c368;
    padding: 15px;
    z-index: 5;
}


/*INDIVIDUAL PROGRAMS PAGE*/

.program-details{
    margin: 150px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

.program-details img {
    max-width: 100%;
    width: 800px;
    height: 400px;
    object-fit: cover;
    margin: 20px auto;
    border-radius: 5px;
}

.program-details h3{
    max-width: 100%;
    width: 800px;
    margin: auto;
    font-size: 35px;
}

.program-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 100%;
    width: 800px;
}

.location-n-cta{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    margin: 100px 0;
}

.location-n-cta div{
    max-width: 95%;
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/*TEAM PAGE*/
.team{
    width: 100%;
    margin: 100px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    padding: 50px 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.team h2{
    text-align: left;
    max-width: 95%;
    width: 1000px;
}

.team .top{
    max-width: 95%;
    width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team .top img{
    max-width: 95%;
    width: 900px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}


.team .founders{
    max-width: 100%;
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team .founders div{
    max-width: 95%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team .founders div img{
    width: 95%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    object-position: 50% 25%;
}

.team ul{
    list-style:square;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 95%;
    width: 1000px;
    padding-left: 20px;
}


.quote{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.quote img{
    max-width: 95%;
    width: 500px;
    height: 500px;
    object-fit: cover;
    object-position: 50% 25%;
    border-radius: 10px;
}

.quote div{
    max-width: 95%;
    width: 450px;
    height: auto;
    background-color: #b9ffde;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    padding: 30px 10px;
}

/*CONTACT PAGE*/

.contact-page{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
    padding: 10px;
}

.contact-page form{
    max-width: 100%;
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 30px 10px;
}

.contact-page form input, .contact-page form textarea{
    width: 90%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.contact-page form input:focus, .contact-page form textarea:focus{
    outline: none;
}


.minor-loader{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    animation: spinning .3s infinite linear forwards;
}

@keyframes spinning{
    from{
        rotate: 0deg;
    }
    to{
        rotate: 360deg;
    }
}


.contact-page .details{
    max-width: 100%;
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 14px;
}

.contact-page .details h4{
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.contact-page .details p{
    text-align: left;
}

.contact-page .details .fa-circle-check{
    font-size: 15px;
}



/*CONFIRMATIONS*/

.message-confirmation{
    position:fixed;
    left:3%;
    top:150px;
    width:200px;
    background-color: #00ff009e;
    border: 1px solid #004d00;
    border-radius: 3px;
    padding: 20px 10px;
    z-index: 9;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform .4s opacity .4s ease-in;
}

.message-confirmation.active{
    transform: translateX(0);
    opacity: 1;
}

/*FOOTER*/

.school-footer {
    background: linear-gradient(#00c368, #00ac87);
    color: #000000;
    padding: 80px 20px;
    font-family: Poppins;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}

.footer-container div {
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
}

.footer-about p, .footer-contact p, .footer-links ul {
    margin: 10px 0;
    font-size: 0.9rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #00ff5e; /* Light blue */
}

.footer-contact a {
    text-decoration: none;
    color: #000000;
}

.footer-contact a:hover {
    color: #00ff5e;
}

.social-icons a, .location-socials a {
    margin-right: 10px;
    display: inline-block;
    text-decoration: none;
    font-size: 25px;
}

.social-icons a:nth-child(1), .location-socials a:nth-child(1){
    color: #0073ff;
}

.social-icons a:nth-child(2), .location-socials a:nth-child(2){
    color: #000000;
}

.social-icons a:nth-child(3), .location-socials a:nth-child(3){
    color: #ff007b;
}

.social-icons a:nth-child(4), .location-socials a:nth-child(4){
    color: #0077ff;
}

.footer-social .social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-social .social-icons img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}


@media screen and (max-width: 900px) {
    .hero{
        height: 600px;
    }
    .header-nav nav{
        display: none;
    }
    .header-nav .fa-bars{
        font-size: 30px;
        display: block;
        color: #1d1d1d;
    }
    .media-full-view img, .media-full-view video{
        width: 100%;
        height: 50%;
    }
    .admissions{
        margin-top: 200px;
    }
    .about-page{
        margin: 300px 0;
    }
    
}