

body{
    font-family: 'Poppins', sans-serif;
}


/* HERO SECTION */


.hero{

background:#111;

padding:170px 0 100px;

position:relative;

overflow:hidden;

}



/* Heading */

.hero h1{

font-size:72px;

font-weight:800;

line-height:1.1;

color:#fff;

margin-top:20px;

}


.hero h1 span{

color:#FFD43B;

}


.hero p{

color:#ddd;

font-size:18px;

line-height:1.8;

margin:30px 0;

max-width:550px;

}



/* Tag */

.hero-tag{

display:inline-block;

background:#FFD43B;

color:#111;

padding:12px 25px;

border-radius:50px;

font-weight:700;

}



/* Buttons */

.hero-buttons{

display:flex;

gap:20px;

margin-top:35px;

flex-wrap:wrap;

}


.btn-primary{

background:#FFD43B;

color:#111;

padding:15px 35px;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}


.btn-primary:hover{

transform:translateY(-6px);

}


.btn-outline{

border:2px solid #FFD43B;

color:#FFD43B;

padding:15px 35px;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}


.btn-outline:hover{

background:#FFD43B;

color:#111;

}



/* Stats */

.hero-info{

display:flex;

gap:50px;

margin-top:50px;

}


.hero-info h3{

color:#FFD43B;

font-size:40px;

font-weight:800;

margin-bottom:5px;

}


.hero-info span{

color:#aaa;

}



/* VIDEO */

.video-wrapper{

position:relative;

height:550px;

display:flex;

justify-content:center;

align-items:center;

}


.video-wrapper video{

width:90%;

height:100%;

object-fit:cover;

border-radius:40px;

border:8px solid #FFD43B;

position:relative;

z-index:2;

box-shadow:

0 25px 60px rgba(255,212,59,.25);

}



/* Animated Yellow Blob */

.blob{

position:absolute;

width:380px;

height:380px;

background:#FFD43B;

border-radius:50%;

filter:blur(60px);

animation:blobMove 8s ease-in-out infinite;

opacity:.35;

z-index:1;

}


@keyframes blobMove{

0%{

transform:translate(0,0);

}

50%{

transform:translate(40px,-30px);

}

100%{

transform:translate(0,0);

}

}



/* SVG Shapes */

.star{

position:absolute;

width:40px;

height:40px;

fill:#FFD43B;

opacity:.8;

animation:float 5s ease-in-out infinite;

}


.star1{

top:100px;

right:150px;

}



.circle{

position:absolute;

fill:#FFD43B;

opacity:.4;

animation:float 4s ease-in-out infinite;

}


.circle1{

width:25px;

height:25px;

left:7%;

top:40%;

}


.circle2{

width:18px;

height:18px;

right:10%;

bottom:20%;

}



@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

}



/* Responsive */

@media(max-width:991px){

.hero{

text-align:center;

padding-top:140px;

}


.hero h1{

font-size:48px;

}


.hero-buttons{

justify-content:center;

}


.hero-info{

justify-content:center;

flex-wrap:wrap;

}


.video-wrapper{

height:350px;

}


.video-wrapper video{

width:100%;

}

}

.video-wrapper{

    position:relative;

    height:550px;

    display:flex;

    justify-content:center;

    align-items:center;

}


/* Youtube Container */

.youtube-video{

    width:90%;

    height:100%;

    border:8px solid #FFD43B;

    border-radius:40px;

    overflow:hidden;

    position:relative;

    z-index:2;

    box-shadow:
    0 25px 60px rgba(255,212,59,.25);

}


.youtube-video iframe{

    width:100%;

    height:100%;

}


/* Animated Yellow Blob */

.blob{

    position:absolute;

    width:400px;

    height:200px;

    background:#FFD43B;

    border-radius:50%;

    filter:blur(70px);

    opacity:.25;

    z-index:1;

    animation:blobMove 8s ease-in-out infinite;

}


@keyframes blobMove{

    0%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(40px,-30px);

    }

    100%{

        transform:translate(0,0);

    }

}



/* Mobile */

@media(max-width:991px){

    .video-wrapper{

        height:350px;

    }

    .youtube-video{

        width:100%;

    }

}

/* INTRO SECTION */

.intro{

background:#111;

padding:120px 0;

position:relative;

overflow:hidden;

}


.section-tag{

background:#FFD43B;

color:#111;

padding:10px 22px;

border-radius:50px;

font-weight:700;

display:inline-block;

margin-bottom:25px;

}


.intro h2{

font-size:55px;

font-weight:800;

color:white;

line-height:1.2;

margin-bottom:25px;

}


.intro h2 span{

color:#FFD43B;

}


.intro p{

color:#ccc;

font-size:17px;

line-height:1.8;

}



/* Features */

.features{

margin-top:40px;

display:flex;

flex-direction:column;

gap:20px;

}


.feature-card{

display:flex;

align-items:center;

gap:20px;

background:#1d1d1d;

padding:25px;

border-radius:25px;

border:1px solid rgba(255,255,255,.05);

transition:.3s;

}


.feature-card:hover{

transform:translateY(-6px);

}


.icon{

width:70px;

height:70px;

background:#FFD43B;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

}


.feature-card h5{

color:white;

margin-bottom:5px;

}


.feature-card p{

margin:0;

color:#aaa;

}



/* FEES TABLE */

.fees-card{

background:#FFD43B;

padding:40px;

border-radius:35px;

box-shadow:

0 20px 50px rgba(255,212,59,.25);

}


.fees-card h3{

font-size:32px;

font-weight:800;

margin-bottom:30px;

color:#111;

}


table{

width:100%;

border-collapse:collapse;

}


thead{

background:#111;

color:white;

}


th{

padding:18px;

font-size:18px;

}


td{

padding:18px;

border-bottom:1px solid rgba(0,0,0,.1);

font-weight:600;

color:#111;

}


tbody tr:hover{

background:rgba(255,255,255,.4);

}



/* Floating SVG */

.star{

position:absolute;

width:35px;

height:35px;

fill:#FFD43B;

opacity:.8;

animation:float 5s ease-in-out infinite;

}


.star1{

top:100px;

right:8%;

}



.circle{

position:absolute;

width:20px;

height:20px;

fill:#FFD43B;

opacity:.5;

animation:float 4s ease-in-out infinite;

}


.circle1{

left:5%;

bottom:80px;

}



@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

}



/* Responsive */

@media(max-width:991px){

.intro{

text-align:center;

}


.intro h2{

font-size:40px;

}


.feature-card{

text-align:left;

}


.fees-card{

padding:25px;

overflow-x:auto;

}


table{

min-width:550px;

}

}


.intro{

    background:#111;

    position:relative;

    overflow:hidden;

}


.bird{

    position:absolute;

    z-index:0;

}



/* Large Bird */

.bird1{

    width:90px;

    top:80px;

    left:-120px;

    animation:flyBird 18s linear infinite;

}



/* Small Bird */

.bird2{

    width:60px;

    top:180px;

    left:-100px;

    opacity:.7;

    animation:flyBird2 12s linear infinite;

}



@keyframes flyBird{

    0%{

        left:-120px;

        transform:

        translateY(0)

        rotate(5deg);

    }


    25%{

        transform:

        translateY(-25px)

        rotate(-3deg);

    }


    50%{

        transform:

        translateY(15px)

        rotate(4deg);

    }


    75%{

        transform:

        translateY(-15px)

        rotate(-2deg);

    }


    100%{

        left:110%;

        transform:

        translateY(0)

        rotate(5deg);

    }

}



@keyframes flyBird2{

    0%{

        left:-100px;

        transform:translateY(0);

    }


    50%{

        transform:translateY(-30px);

    }


    100%{

        left:110%;

        transform:translateY(0);

    }

}


/* CERTIFICATION */


.certification{

background:#111;

padding:120px 0;

position:relative;

overflow:hidden;

}



/* Tag */

.section-tag{

display:inline-block;

background:#FFD43B;

color:#111;

padding:12px 25px;

border-radius:50px;

font-weight:700;

}



/* Heading */

.cert-title{

font-size:60px;

font-weight:800;

color:white;

margin-top:25px;

}


.cert-title span{

color:#FFD43B;

}


.cert-subtitle{

max-width:650px;

margin:auto;

margin-top:20px;

color:#bbb;

font-size:18px;

line-height:1.8;

}



/* Card */

.cert-card{

background:#1a1a1a;

border-radius:30px;

padding:25px;

position:relative;

overflow:hidden;

height:100%;

border:2px solid rgba(255,212,59,.1);

transition:.4s;

}


.cert-card:hover{

transform:translateY(-15px);

border-color:#FFD43B;

box-shadow:

0 20px 50px rgba(255,212,59,.15);

}



/* Ribbon */

.ribbon{

position:absolute;

top:22px;

right:-38px;

background:#FFD43B;

color:#111;

padding:8px 45px;

font-size:14px;

font-weight:700;

transform:rotate(45deg);

z-index:10;

}



/* Image */

.cert-img{

height:250px;

border-radius:20px;

overflow:hidden;

border:4px solid #FFD43B;

margin-bottom:25px;

}


.cert-img img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}


.cert-card:hover img{

transform:scale(1.08);

}



/* Text */

.cert-card h4{

color:#FFD43B;

font-size:28px;

font-weight:700;

margin-bottom:15px;

}


.cert-card p{

color:#ccc;

line-height:1.8;

}



/* Flying Bird */

.cert-bird{

position:absolute;

width:90px;

z-index:0;

}


.cert-bird1{

top:90px;

left:-120px;

animation:birdFly 18s linear infinite;

}



/* Star */

.cert-star{

position:absolute;

width:35px;

fill:#FFD43B;

right:8%;

top:120px;

animation:twinkle 2s infinite;

}



/* Cloud */

.cert-cloud{

position:absolute;

width:140px;

fill:#fff;

opacity:.08;

bottom:60px;

right:8%;

animation:floatCloud 6s ease-in-out infinite;

}



/* Animations */

@keyframes birdFly{

0%{

left:-120px;

transform:

translateY(0)

rotate(5deg);

}


50%{

transform:

translateY(-25px)

rotate(-5deg);

}


100%{

left:110%;

transform:

translateY(0)

rotate(5deg);

}

}



@keyframes floatCloud{

0%,100%{

transform:translateY(0);

}


50%{

transform:translateY(-20px);

}

}



@keyframes twinkle{

0%,100%{

opacity:.4;

transform:scale(1);

}


50%{

opacity:1;

transform:scale(1.3);

}

}



/* Responsive */

@media(max-width:991px){

.cert-title{

font-size:42px;

}


.cert-subtitle{

font-size:16px;

}


.cert-img{

height:200px;

}

}

/* testimonial */


.testimonials{

background:#111;

padding:120px 0;

position:relative;

overflow:hidden;

}


.tag{

display:inline-block;

background:#FFD43B;

color:#111;

padding:10px 25px;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}


.testimonials h2{

font-size:60px;

font-weight:800;

color:#fff;

}


.testimonials h2 span{

color:#FFD43B;

}


.testimonials p{

color:#ccc;

font-size:18px;

max-width:700px;

margin:auto;

line-height:1.8;

}



/* Slider */

.testimonialSwiper{

margin-top:60px;

padding-bottom:70px;

}


.swiper-slide{

height:auto;

}



/* Card */

.video-card{

background:#1c1c1c;

border-radius:30px;

overflow:hidden;

border:2px solid rgba(255,212,59,.1);

transition:.4s;

height:100%;

}


.video-card:hover{

transform:translateY(-10px);

border-color:#FFD43B;

box-shadow:

0 20px 50px rgba(255,212,59,.15);

}



/* Youtube */

.video-box{

height:240px;

overflow:hidden;

}


.video-box iframe{

width:100%;

height:100%;

border:none;

}



/* Content */

.content{

padding:25px;

}


.content h4{

color:#FFD43B;

font-size:28px;

font-weight:700;

margin-bottom:15px;

}


.content p{

font-size:16px;

color:#ccc;

line-height:1.8;

margin:0;

}



/* Swiper */

.swiper-pagination-bullet{

background:#FFD43B;

opacity:1;

}


.swiper-pagination-bullet-active{

width:25px;

border-radius:30px;

}



.swiper-button-next,

.swiper-button-prev{

color:#FFD43B;

}



/* Bird */

.bird{

position:absolute;

top:80px;

left:-100px;

width:90px;

animation:fly 18s linear infinite;

}



@keyframes fly{

0%{

left:-100px;

transform:translateY(0);

}


50%{

transform:translateY(-25px);

}


100%{

left:110%;

transform:translateY(0);

}

}



/* Responsive */

@media(max-width:991px){

.testimonials h2{

font-size:42px;

}


.video-box{

height:220px;

}

}


/* FOOTER */


.footer-wave svg{

display:block;

width:100%;

height:100px;

margin-bottom:-2px;

}


.footer{

background:#111;

color:#fff;

padding:80px 0 20px;

position:relative;

}


.footer-logo{

font-size:38px;

font-weight:700;

color:#FFD43B;

}

.footer-logo span{

color:#fff;

}


.footer-text{

color:#ccc;

line-height:1.8;

margin-top:20px;

}


.footer h4{

color:#FFD43B;

margin-bottom:25px;

font-weight:700;

}


.footer ul{

padding:0;

list-style:none;

}


.footer ul li{

margin-bottom:14px;

}


.footer ul li a{

text-decoration:none;

color:#ddd;

transition:.3s;

}


.footer ul li a:hover{

color:#FFD43B;

padding-left:8px;

}


.footer-social{

display:flex;

gap:15px;

margin-top:30px;

}


.footer-social a{

width:45px;

height:45px;

background:#FFD43B;

color:#111;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:18px;

text-decoration:none;

transition:.3s;

}


.footer-social a:hover{

transform:translateY(-8px);

background:white;

}


.newsletter{

display:flex;

margin-top:25px;

overflow:hidden;

border-radius:50px;

}


.newsletter input{

width:100%;

border:none;

padding:14px 20px;

outline:none;

}


.newsletter button{

border:none;

background:#FFD43B;

padding:0 25px;

font-weight:600;

cursor:pointer;

}


.footer-bottom{

border-top:1px solid rgba(255,255,255,.1);

margin-top:60px;

padding-top:20px;

text-align:center;

color:#aaa;

}













/* manu css */
    

*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

font-family:'Nunito',sans-serif;

}


/* HEADER */

.header{

position:fixed;

top:0;

left:0;

width:100%;

background:#111;

z-index:999;

padding:15px 0;

box-shadow:0 10px 30px rgba(0,0,0,.1);

overflow:hidden;

}


/* NAVBAR */

.navbar{

display:flex;

justify-content:space-between;

align-items:center;

}


.logo{

font-size:34px;

font-weight:800;

text-decoration:none;

color:#FFD43B;

position:relative;

z-index:2;

}


.logo span{

color:#fff;

}


/* MENU */

.nav-links{

display:flex;

align-items:center;

gap:15px;

list-style:none;

}


.nav-links li a{

text-decoration:none;

color:#fff;

padding:12px 22px;

border-radius:50px;

font-weight:700;

transition:.3s;

}


.nav-links li a:hover{

background:#FFD43B;

color:#111;

}


/* BUTTON */

.btn-enroll{

background:#FFD43B;

color:#111 !important;

box-shadow:0 8px 20px rgba(255,212,59,.4);

animation:pulse 2s infinite;

}


.btn-enroll:hover{

transform:translateY(-4px);

}


/* MOBILE MENU */

.menu-btn{

display:none;

cursor:pointer;

z-index:999;

}


.menu-btn span{

display:block;

width:30px;

height:3px;

background:#FFD43B;

margin:6px;

border-radius:20px;

transition:.3s;

}


/* SVG Decorations */

.star{

position:absolute;

width:30px;

height:30px;

fill:#FFD43B;

animation:float 4s ease-in-out infinite;

opacity:.7;

}


.star1{

top:20px;

right:80px;

}


.circle{

position:absolute;

width:20px;

height:20px;

fill:#FFD43B;

animation:float 5s ease-in-out infinite;

opacity:.5;

}


.circle1{

left:200px;

top:15px;

}



/* ANIMATION */

@keyframes float{

0%,100%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

}


@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(255,212,59,.7);

}

70%{

box-shadow:0 0 0 15px rgba(255,212,59,0);

}

100%{

box-shadow:0 0 0 0 rgba(255,212,59,0);

}

}



/* RESPONSIVE */

@media(max-width:991px){


.menu-btn{

display:block;

}


.nav-links{

position:fixed;

top:85px;

left:-100%;

width:100%;

height:calc(100vh - 85px);

background:#111;

flex-direction:column;

padding-top:50px;

transition:.4s;

gap:20px;

}


.nav-links.active{

left:0;

}


.nav-links li a{

font-size:20px;

display:block;

}


}




/* ABOUT page */



.about-school{

background:#111;

padding:120px 0;

position:relative;

overflow:hidden;

}



/* TAG */

.about-tag{

display:inline-block;

background:#FFD43B;

color:#111;

padding:12px 25px;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}



/* HEADING */

.about-school h2{

font-size:60px;

font-weight:800;

color:#fff;

margin-bottom:25px;

}


.about-school h2 span{

color:#FFD43B;

}



/* TEXT */

.about-text{

color:#ccc;

font-size:18px;

line-height:1.9;

margin-bottom:40px;

}



/* IMAGE */

.about-image{

position:relative;

padding:15px;

background:#FFD43B;

border-radius:40px;

box-shadow:

0 25px 60px rgba(255,212,59,.25);

}


.about-image img{

width:100%;

border-radius:30px;

display:block;

}



/* Rainbow */

.rainbow{

position:absolute;

top:-35px;

right:-35px;

width:120px;

height:120px;

border-radius:50%;

border-top:12px solid #ff595e;

border-right:12px solid #ffca3a;

border-bottom:12px solid #8ac926;

border-left:12px solid #1982c4;

transform:rotate(-45deg);

animation:spin 12s linear infinite;

opacity:.9;

}


@keyframes spin{

100%{

transform:rotate(315deg);

}

}



/* Principal */

.principal-card{

background:#FFD43B;

padding:35px;

border-radius:30px;

margin-bottom:35px;

}


.principal-card h4{

font-size:32px;

font-weight:800;

color:#111;

margin-bottom:20px;

}


.principal-card p{

color:#333;

font-size:18px;

line-height:1.9;

}


.principal-name{

margin-top:25px;

font-size:22px;

font-weight:700;

color:#111;

}


.principal-name span{

display:block;

font-size:16px;

font-weight:500;

margin-top:5px;

}



/* Mission Vision */

.mission-card{

background:#1b1b1b;

padding:35px;

border-radius:30px;

height:100%;

border:1px solid rgba(255,212,59,.1);

transition:.4s;

position:relative;

overflow:hidden;

}


.mission-card::before{

content:'';

position:absolute;

width:150px;

height:150px;

background:#FFD43B;

border-radius:50%;

top:-80px;

right:-80px;

opacity:.08;

}


.mission-card:hover{

transform:translateY(-10px);

border-color:#FFD43B;

box-shadow:

0 20px 50px rgba(255,212,59,.15);

}



.mission-icon{

width:75px;

height:75px;

background:#FFD43B;

color:#111;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-bottom:25px;

}



.mission-card h4{

color:#FFD43B;

font-size:28px;

font-weight:700;

margin-bottom:20px;

}


.mission-card p{

color:#ccc;

line-height:1.9;

margin:0;

}



/* Flying Bird */

.about-bird{

position:absolute;

width:90px;

top:80px;

left:-100px;

animation:birdFly 18s linear infinite;

}



/* Star */

.about-star{

position:absolute;

width:35px;

fill:#FFD43B;

right:8%;

top:120px;

animation:twinkle 2s infinite;

}



/* Cloud */

.about-cloud{

position:absolute;

width:140px;

fill:#fff;

opacity:.08;

bottom:70px;

right:8%;

animation:floatCloud 6s ease-in-out infinite;

}



/* Animations */

@keyframes birdFly{

0%{

left:-100px;

transform:translateY(0);

}


50%{

transform:translateY(-25px);

}


100%{

left:110%;

transform:translateY(0);

}

}


@keyframes twinkle{

0%,100%{

opacity:.4;

transform:scale(1);

}


50%{

opacity:1;

transform:scale(1.3);

}

}


@keyframes floatCloud{

0%,100%{

transform:translateY(0);

}


50%{

transform:translateY(-20px);

}

}



/* Responsive */

@media(max-width:991px){

.about-school{

text-align:center;

}


.about-school h2{

font-size:42px;

}


.rainbow{

display:none;

}

}

/* RROGRAMM */


.programs{

background:#111;

padding:120px 0;

position:relative;

overflow:hidden;

}



/* Heading */

.program-tag{

display:inline-block;

background:#FFD43B;

color:#111;

padding:12px 25px;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}



.programs h2{

font-size:60px;

font-weight:800;

color:#fff;

margin-bottom:20px;

}


.programs h2 span{

color:#FFD43B;

}


.programs p{

max-width:650px;

margin:auto;

color:#bbb;

font-size:18px;

line-height:1.8;

}



/* Card */

.program-card{

background:#1b1b1b;

padding:40px 30px;

border-radius:35px;

height:100%;

text-align:center;

border:1px solid rgba(255,212,59,.1);

transition:.4s;

position:relative;

overflow:hidden;

}


.program-card::before{

content:'';

position:absolute;

width:180px;

height:180px;

background:#FFD43B;

border-radius:50%;

top:-90px;

right:-90px;

opacity:.06;

transition:.4s;

}


.program-card:hover{

transform:translateY(-15px);

border-color:#FFD43B;

box-shadow:

0 20px 50px rgba(255,212,59,.15);

}


.program-card:hover::before{

transform:scale(1.3);

}



/* Icon */

.program-icon{

width:90px;

height:90px;

background:#FFD43B;

color:#111;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:40px;

margin:auto;

margin-bottom:30px;

box-shadow:

0 10px 25px rgba(255,212,59,.25);

}



/* Text */

.program-card h3{

color:#FFD43B;

font-size:32px;

font-weight:700;

margin-bottom:30px;

}


.info{

background:#222;

padding:15px;

border-radius:18px;

margin-bottom:18px;

}


.info span{

display:block;

font-size:14px;

color:#aaa;

margin-bottom:8px;

}


.info strong{

color:#fff;

font-size:18px;

}



/* Responsive */

@media(max-width:991px){

.programs h2{

font-size:42px;

}


.program-card{

padding:35px 25px;

}

}



/* GALLERY */


.gallery{

background:#111;

padding:120px 0;

overflow:hidden;

}



/* Heading */

.gallery-tag{

display:inline-block;

background:#FFD43B;

color:#111;

padding:12px 25px;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}



.gallery h2{

font-size:60px;

font-weight:800;

color:#fff;

margin-bottom:20px;

}


.gallery h2 span{

color:#FFD43B;

}


.gallery p{

max-width:650px;

margin:auto;

color:#bbb;

font-size:18px;

line-height:1.8;

}



/* Grid */

.gallery-grid{

display:grid;

grid-template-columns:

repeat(3,1fr);

gap:25px;

}



/* Image */

.gallery-item{

overflow:hidden;

border-radius:30px;

cursor:pointer;

position:relative;

}


.gallery-item img{

width:100%;

height:320px;

object-fit:cover;

transition:.5s;

display:block;

}



.gallery-item::before{

content:'🔍';

position:absolute;

top:50%;

left:50%;

transform:

translate(-50%,-50%);

width:70px;

height:70px;

background:#FFD43B;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

opacity:0;

transition:.4s;

z-index:2;

}


.gallery-item::after{

content:'';

position:absolute;

inset:0;

background:

rgba(0,0,0,.5);

opacity:0;

transition:.4s;

}



.gallery-item:hover img{

transform:scale(1.1);

}


.gallery-item:hover::before,

.gallery-item:hover::after{

opacity:1;

}



/* Modal */

.gallery-modal{

position:fixed;

inset:0;

background:

rgba(0,0,0,.92);

display:flex;

justify-content:center;

align-items:center;

z-index:9999;

opacity:0;

visibility:hidden;

transition:.4s;

padding:20px;

}


.gallery-modal.active{

opacity:1;

visibility:visible;

}



.modal-img{

max-width:90%;

max-height:90vh;

border-radius:20px;

border:5px solid #FFD43B;

animation:zoom .3s ease;

}



@keyframes zoom{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}



/* Close */

.close-modal{

position:absolute;

top:30px;

right:40px;

font-size:50px;

color:#FFD43B;

cursor:pointer;

}



.close-modal:hover{

transform:rotate(90deg);

transition:.3s;

}



/* Responsive */

@media(max-width:991px){

.gallery-grid{

grid-template-columns:

repeat(2,1fr);

}


.gallery h2{

font-size:42px;

}

}



@media(max-width:576px){

.gallery-grid{

grid-template-columns:1fr;

}


.gallery-item img{

height:250px;

}

}






.contact-section{

background:#111;

padding:120px 0;

position:relative;

overflow:hidden;

}



/* Heading */

.contact-tag{

display:inline-block;

background:#FFD43B;

color:#111;

padding:12px 25px;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}


.contact-section h2{

font-size:60px;

font-weight:800;

color:#fff;

margin-bottom:20px;

}


.contact-section h2 span{

color:#FFD43B;

}


.contact-section p{

color:#bbb;

font-size:18px;

line-height:1.8;

}



/* Left */

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

}


.info-box{

display:flex;

gap:20px;

background:#1b1b1b;

padding:25px;

border-radius:25px;

border:1px solid rgba(255,212,59,.1);

transition:.4s;

}


.info-box:hover{

transform:translateY(-8px);

border-color:#FFD43B;

}



.icon{

width:70px;

height:70px;

background:#FFD43B;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

flex-shrink:0;

}


.info-box h5{

color:#FFD43B;

font-size:24px;

font-weight:700;

margin-bottom:10px;

}


.info-box p{

margin:0;

color:#ccc;

}



/* Form */

.contact-form-box{

background:#1b1b1b;

padding:40px;

border-radius:35px;

border:1px solid rgba(255,212,59,.1);

}


.contact-form-box input,

.contact-form-box textarea{

width:100%;

background:#222;

border:none;

padding:18px 25px;

border-radius:20px;

margin-bottom:20px;

color:#fff;

outline:none;

}


.contact-form-box input:focus,

.contact-form-box textarea:focus{

border:2px solid #FFD43B;

}



.contact-form-box button{

background:#FFD43B;

border:none;

padding:18px 40px;

border-radius:50px;

font-weight:700;

font-size:18px;

transition:.3s;

}


.contact-form-box button:hover{

transform:translateY(-5px);

box-shadow:

0 15px 35px rgba(255,212,59,.3);

}



/* Map */

.map-box{

overflow:hidden;

border-radius:35px;

border:5px solid #FFD43B;

}


.map-box iframe{

width:100%;

height:450px;

border:none;

}



/* Bird */

.contact-bird{

position:absolute;

top:90px;

left:-100px;

width:90px;

animation:birdFly 18s linear infinite;

}



@keyframes birdFly{

0%{

left:-100px;

transform:translateY(0);

}


50%{

transform:translateY(-25px);

}


100%{

left:110%;

transform:translateY(0);

}

}



/* Responsive */

@media(max-width:991px){

.contact-section h2{

font-size:42px;

}


.contact-form-box{

padding:30px;

}

}


/* Floting button */


.floating-contact{

position:fixed;

right:25px;

bottom:25px;

display:flex;

flex-direction:column;

gap:15px;

z-index:9999;

}



/* Common */

.floating-contact a{

width:65px;

height:65px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

text-decoration:none;

box-shadow:

0 10px 30px rgba(0,0,0,.25);

transition:.3s;

position:relative;

}



/* Call */

.call-btn{

background:#FFD43B;

color:#111;

animation:pulseCall 2s infinite;

}



/* Whatsapp */

.whatsapp-btn{

background:#25D366;

color:#fff;

animation:pulseWhatsapp 2s infinite;

}



/* Hover */

.floating-contact a:hover{

transform:

translateY(-8px)

scale(1.08);

}



/* Pulse */

@keyframes pulseCall{

0%{

box-shadow:

0 0 0 0 rgba(255,212,59,.7);

}


70%{

box-shadow:

0 0 0 18px rgba(255,212,59,0);

}


100%{

box-shadow:

0 0 0 0 rgba(255,212,59,0);

}

}



@keyframes pulseWhatsapp{

0%{

box-shadow:

0 0 0 0 rgba(37,211,102,.7);

}


70%{

box-shadow:

0 0 0 18px rgba(37,211,102,0);

}


100%{

box-shadow:

0 0 0 0 rgba(37,211,102,0);

}

}



/* Mobile */

@media(max-width:576px){

.floating-contact{

right:15px;

bottom:20px;

}


.floating-contact a{

width:58px;

height:58px;

font-size:24px;

}

}


/* admision css */


.admission{

background:#111;

padding:120px 0;

position:relative;

overflow:hidden;

}



/* Tag */

.admission-tag{

display:inline-block;

background:#FFD43B;

color:#111;

padding:12px 25px;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}



/* Heading */

.admission h2{

font-size:60px;

font-weight:800;

color:#fff;

margin-bottom:20px;

}


.admission h2 span{

color:#FFD43B;

}



.admission p{

color:#bbb;

font-size:18px;

line-height:1.8;

margin-bottom:40px;

}



/* Image */

.admission-image{

position:relative;

animation:floatImage 4s ease-in-out infinite;

}


.admission-image img{

width:100%;

}



/* Form */

.admission-form{

background:#1b1b1b;

padding:40px;

border-radius:35px;

border:1px solid rgba(255,212,59,.1);

}



.admission-form input,

.admission-form textarea,

.admission-form select{

width:100%;

background:#222;

border:none;

outline:none;

padding:18px 25px;

border-radius:18px;

margin-bottom:20px;

color:#fff;

}



.admission-form input:focus,

.admission-form textarea:focus,

.admission-form select:focus{

border:2px solid #FFD43B;

}



.admission-form button{

background:#FFD43B;

color:#111;

border:none;

padding:18px 45px;

border-radius:50px;

font-size:18px;

font-weight:700;

transition:.3s;

}



.admission-form button:hover{

transform:translateY(-5px);

box-shadow:

0 15px 40px rgba(255,212,59,.3);

}



/* Floating Star */

.star{

position:absolute;

font-size:40px;

animation:twinkle 2s infinite;

}


.star1{

top:100px;

right:8%;

}



/* Balloon */

.balloon{

position:absolute;

font-size:60px;

animation:floatBalloon 6s ease-in-out infinite;

}


.balloon1{

left:5%;

bottom:80px;

}



/* Animation */

@keyframes floatImage{

0%,100%{

transform:translateY(0);

}


50%{

transform:translateY(-15px);

}

}



@keyframes twinkle{

0%,100%{

opacity:.5;

transform:scale(1);

}


50%{

opacity:1;

transform:scale(1.3);

}

}



@keyframes floatBalloon{

0%,100%{

transform:translateY(0);

}


50%{

transform:translateY(-30px);

}

}



/* Responsive */

@media(max-width:991px){

.admission{

text-align:center;

}


.admission h2{

font-size:42px;

}


.admission-form{

padding:30px;

}

}


/* features intro */

.school-features{

display:grid;

grid-template-columns:

repeat(2,1fr);

gap:20px;

margin:40px 0;

}



.feature-item{

display:flex;

align-items:center;

gap:18px;

padding:18px 22px;

background:

rgba(255,255,255,.04);

border:

1px solid rgba(255,212,59,.12);

border-radius:20px;

transition:.35s;

}



.feature-item:hover{

transform:translateY(-8px);

border-color:#FFD43B;

box-shadow:

0 20px 40px

rgba(255,212,59,.15);

}



.feature-icon{

width:58px;

height:58px;

min-width:58px;

background:#FFD43B;

color:#111;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

animation:pulseIcon 2s infinite;

}



.feature-item span{

color:#fff;

font-size:17px;

font-weight:600;

line-height:1.5;

}



@keyframes pulseIcon{

0%{

transform:scale(1);

}


50%{

transform:scale(1.1);

}


100%{

transform:scale(1);

}

}



@media(max-width:768px){

.school-features{

grid-template-columns:1fr;

}

}

/* header logo */

.logo{

display:flex;

align-items:center;

}


.logo img{

height:100px;

width:auto;

max-width:100%;

transition:.3s;

}


.logo img:hover{

transform:scale(1.05);

}


@media(max-width:768px){

.logo img{

height:50px;

}

}
