

body{
    font-family: 'Poppins', sans-serif;
    background-color: #003366 !important;
}


/* HERO SECTION */


.hero{

background:#003366;

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:#003366;

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:#003366;

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:#003366;

}



/* 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:#003366;

padding:120px 0;

position:relative;

overflow:hidden;

}


.section-tag{

background:#FFD43B;

color:#003366;

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:#003366;

}


table{

width:100%;

border-collapse:collapse;

}


thead{

background:#003366;

color:white;

}


th{

padding:18px;

font-size:18px;

}


td{

padding:18px;

border-bottom:1px solid rgba(0,0,0,.1);

font-weight:600;

color:#003366;

}


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:#003366;

    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:#003366;

padding:120px 0;

position:relative;

overflow:hidden;

}



/* Tag */

.section-tag{

display:inline-block;

background:#FFD43B;

color:#003366;

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:#003366;

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:#003366;

padding:120px 0;

position:relative;

overflow:hidden;

}


.tag{

display:inline-block;

background:#FFD43B;

color:#003366;

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:#003366;

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:#003366;

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:relative;

top:0;

left:0;

width:100%;

background:#003366;

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:#003366;

}


/* BUTTON */

.btn-enroll{

background:#FFD43B;

color:#003366 !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:#003366;

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-us{

padding:120px 0;

background:#082567;

position:relative;

overflow:hidden;

}



/* Decorations */

.circle-shape{

position:absolute;

width:350px;

height:350px;

background:

rgba(255,255,255,.05);

border-radius:50%;

top:-100px;

right:-100px;

}



.dot-shape{

position:absolute;

width:250px;

height:250px;

background:

rgba(45,127,249,.15);

border-radius:50%;

bottom:-80px;

left:-80px;

}



/* Section Tag */

.section-tag{

display:inline-block;

padding:12px 28px;

background:

rgba(255,255,255,.1);

border:

1px solid rgba(255,255,255,.15);

border-radius:40px;

color:#fff;

font-weight:700;

margin-bottom:30px;

}



/* Heading */

.about-us h2{

font-size:58px;

font-weight:800;

line-height:1.2;

color:#fff;

margin-bottom:30px;

}



.about-us h2 span{

color:#8EC5FF;

}



/* Text */

.about-us p{

font-size:18px;

line-height:1.9;

color:

rgba(255,255,255,.8);

}



/* Image */

.about-image img{

border-radius:35px;

box-shadow:

0 30px 80px

rgba(0,0,0,.25);

}



/* Feature Cards */

.about-box{

background:

rgba(255,255,255,.07);

padding:30px;

border-radius:25px;

backdrop-filter:

blur(10px);

height:100%;

transition:.3s;

}



.about-box:hover{

transform:

translateY(-10px);

background:

rgba(255,255,255,.12);

}



.about-box .icon{

font-size:40px;

margin-bottom:20px;

}



.about-box h5{

color:#fff;

font-weight:700;

margin-bottom:10px;

}



.about-box p{

font-size:15px;

margin:0;

}



/* Responsive */

@media(max-width:991px){

.about-us{

text-align:center;

}



.about-us h2{

font-size:42px;

}

}


/* SERVICE SECTION */

.services{

padding:120px 0;

background:#082567;

position:relative;

overflow:hidden;

}



/* Decorations */

.service-circle{

position:absolute;

width:350px;

height:350px;

border-radius:50%;

background:

rgba(255,255,255,.05);

top:-100px;

left:-100px;

}



.service-circle2{

position:absolute;

width:250px;

height:250px;

border-radius:50%;

background:

rgba(45,127,249,.15);

bottom:-80px;

right:-80px;

}



/* Heading */

.services h2{

font-size:58px;

font-weight:800;

color:#fff;

margin:20px 0;

}



.services h2 span{

color:#8EC5FF;

}



.services p{

color:

rgba(255,255,255,.8);

font-size:18px;

line-height:1.8;

}



/* Cards */

.service-card{

background:

rgba(255,255,255,.07);

padding:45px 35px;

border-radius:30px;

backdrop-filter:

blur(10px);

height:100%;

text-align:center;

transition:.4s;

border:

1px solid

rgba(255,255,255,.08);

}



.service-card:hover{

transform:

translateY(-12px);

background:

rgba(255,255,255,.12);

box-shadow:

0 20px 50px

rgba(0,0,0,.2);

}



/* Icon */

.service-card .icon{

font-size:60px;

margin-bottom:25px;

}



.service-card h4{

color:#fff;

font-size:28px;

font-weight:700;

margin-bottom:20px;

}



.service-card p{

font-size:16px;

margin:0;

}



/* Responsive */

@media(max-width:991px){

.services{

text-align:center;

}



.services h2{

font-size:42px;

}

}

/* WHY CHOOSE US */
.why-us{

padding:120px 0;

background:#082567;

position:relative;

overflow:hidden;

}



/* Background */

.shape-one{

position:absolute;

top:-100px;

left:-100px;

width:350px;

height:350px;

background:

rgba(255,255,255,.05);

border-radius:50%;

}



.shape-two{

position:absolute;

bottom:-100px;

right:-100px;

width:280px;

height:280px;

background:

rgba(45,127,249,.18);

border-radius:50%;

}



/* Heading */

.why-us h2{

font-size:58px;

font-weight:800;

line-height:1.2;

color:#fff;

margin:20px 0;

}



.why-us h2 span{

color:#8EC5FF;

}



.why-us p{

font-size:18px;

line-height:1.9;

color:

rgba(255,255,255,.82);

}



/* Items */

.why-list{

margin-top:50px;

}



.why-item{

display:flex;

align-items:flex-start;

gap:25px;

margin-bottom:35px;

}



.why-item .icon{

min-width:75px;

height:75px;

background:

rgba(255,255,255,.08);

border:

1px solid

rgba(255,255,255,.12);

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

transition:.3s;

}



.why-item:hover .icon{

transform:

translateY(-8px);

background:

rgba(255,255,255,.15);

}



.why-item h5{

color:#fff;

font-size:24px;

font-weight:700;

margin-bottom:10px;

}



.why-item p{

margin:0;

font-size:16px;

}



/* Image */

.why-image img{

border-radius:35px;

box-shadow:

0 30px 80px

rgba(0,0,0,.25);

}



/* Responsive */

@media(max-width:991px){

.why-us{

text-align:center;

}



.why-us h2{

font-size:42px;

}



.why-item{

flex-direction:column;

align-items:center;

}

}

/* HOW WE WORK */

.process{

padding:120px 0;

background:#082567;

}



.process h2{

font-size:58px;

font-weight:800;

color:#fff;

}



.process h2 span{

color:#8EC5FF;

}



.process p{

color:

rgba(255,255,255,.8);

}



/* Card */

.process-card{

padding:40px 25px;

background:

rgba(255,255,255,.07);

border:

1px solid

rgba(255,255,255,.08);

border-radius:30px;

text-align:center;

backdrop-filter:

blur(10px);

height:100%;

transition:.4s;

}



.process-card:hover{

transform:

translateY(-15px);

background:

rgba(255,255,255,.12);

}



.icon{

font-size:55px;

margin-bottom:20px;

}



.process-card h4{

color:#fff;

font-size:28px;

font-weight:700;

margin-bottom:15px;

}



.process-card p{

font-size:16px;

margin:0;

}



/* Arrow */

.curve-arrow{

position:absolute;

width:180px;

height:80px;

}



.arrow1{

left:23%;

top:55%;

}



.arrow2{

left:48%;

top:55%;

}



.arrow3{

left:73%;

top:55%;

}



.curve-arrow svg{

width:100%;

}



.arrow-path{

fill:none;

stroke:#8EC5FF;

stroke-width:4;

stroke-dasharray:12;

animation:

dashMove 1.5s linear infinite;

}



.arrow-head{

fill:#8EC5FF;

animation:

arrowMove 1.5s ease infinite;

}



@keyframes dashMove{

from{

stroke-dashoffset:40;

}

to{

stroke-dashoffset:0;

}

}



@keyframes arrowMove{

0%{

transform:

translateX(0);

}

50%{

transform:

translateX(8px);

}

100%{

transform:

translateX(0);

}

}



@media(max-width:991px){

.curve-arrow{

display:none;

}



.process-card{

margin-bottom:25px;

}



.process h2{

font-size:42px;

}

}

/* PRICING PLAN */


.pricing{

padding:120px 0;

background:#082567;

}



.pricing h2{

font-size:58px;

font-weight:800;

color:#fff;

}



.pricing h2 span{

color:#8EC5FF;

}



.pricing p{

color:

rgba(255,255,255,.8);

}



/* CARD */

.pricing-card{

background:

rgba(255,255,255,.07);

padding:50px 40px;

border-radius:35px;

text-align:center;

backdrop-filter:

blur(12px);

border:

1px solid

rgba(255,255,255,.08);

height:100%;

position:relative;

transition:.4s;

}



.pricing-card:hover{

transform:

translateY(-15px);

background:

rgba(255,255,255,.12);

}



.pricing-card h4{

font-size:32px;

font-weight:700;

color:#fff;

}



.price{

font-size:58px;

font-weight:800;

color:#8EC5FF;

margin:25px 0;

}



.pricing-card ul{

padding:0;

margin:35px 0;

list-style:none;

}



.pricing-card ul li{

color:#fff;

margin-bottom:18px;

font-size:17px;

}



.price-btn{

display:inline-block;

padding:16px 40px;

background:#fff;

color:#082567;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}



.price-btn:hover{

background:#8EC5FF;

color:#082567;

}



/* FEATURED CARD */

.featured{

transform:scale(1.05);

border:

2px solid #8EC5FF;

}



.featured:hover{

transform:

scale(1.05)

translateY(-15px);

}



.popular{

position:absolute;

top:-15px;

left:50%;

transform:

translateX(-50%);

background:#8EC5FF;

color:#082567;

padding:

10px 25px;

border-radius:50px;

font-size:14px;

font-weight:700;

}

/* FAQ SECTION */

.faq-section{

padding:120px 0;

background:#082567;

}



.faq-section h2{

font-size:58px;

font-weight:800;

color:#fff;

}



.faq-section h2 span{

color:#8EC5FF;

}



.faq-section p{

color:

rgba(255,255,255,.8);

}



/* Accordion */

.accordion-item{

background:

rgba(255,255,255,.07);

border:

1px solid

rgba(255,255,255,.08);

margin-bottom:20px;

border-radius:20px !important;

overflow:hidden;

backdrop-filter:

blur(10px);

}



.accordion-button{

background:transparent !important;

color:#fff !important;

font-size:20px;

font-weight:600;

padding:25px;

box-shadow:none !important;

}



.accordion-button:not(.collapsed){

background:

rgba(255,255,255,.05)!important;

}



.accordion-button::after{

filter:

brightness(0)

invert(1);

}



.accordion-body{

background:transparent;

color:

rgba(255,255,255,.8);

font-size:17px;

line-height:1.8;

padding:25px;

}



.accordion-button:focus{

box-shadow:none;

}



@media(max-width:768px){

.faq-section h2{

font-size:42px;

}

}


/* PORTFOLIO */
.portfolio{

padding:120px 0;

background:#082567;

}



.portfolio h2{

font-size:58px;

font-weight:800;

color:#fff;

}



.portfolio h2 span{

color:#8EC5FF;

}



.portfolio p{

color:

rgba(255,255,255,.8);

}



/* Card */

.portfolio-card{

position:relative;

overflow:hidden;

border-radius:30px;

cursor:pointer;

}



.portfolio-card img{

width:100%;

height:350px;

object-fit:cover;

transition:.6s;

}



/* Overlay */

.portfolio-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:

linear-gradient(

to top,

rgba(0,0,0,.85),

rgba(0,0,0,.15)

);

display:flex;

flex-direction:column;

justify-content:flex-end;

padding:35px;

opacity:0;

transition:.5s;

}



.portfolio-card:hover img{

transform:scale(1.1);

}



.portfolio-card:hover .portfolio-overlay{

opacity:1;

}



.portfolio-overlay h4{

color:#fff;

font-size:28px;

font-weight:700;

}



.portfolio-overlay p{

color:#8EC5FF;

margin-bottom:20px;

}



.portfolio-overlay a{

display:inline-block;

width:max-content;

padding:12px 30px;

background:#fff;

color:#082567;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}



.portfolio-overlay a:hover{

background:#8EC5FF;

}



@media(max-width:768px){

.portfolio h2{

font-size:42px;

}



.portfolio-card img{

height:280px;

}

}

/* RROGRAMM */


.programs{

background:#003366;

padding:120px 0;

position:relative;

overflow:hidden;

}



/* Heading */

.program-tag{

display:inline-block;

background:#FFD43B;

color:#003366;

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:#003366;

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:#003366;

padding:120px 0;

overflow:hidden;

}



/* Heading */

.gallery-tag{

display:inline-block;

background:#FFD43B;

color:#003366;

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{
    padding:120px 0;
    background:#082567;
}

.contact-section h2{
    color:#fff;
    font-size:60px;
    font-weight:800;
}

.contact-section h2 span{
    color:#8EC5FF;
}

.contact-section p{
    color:rgba(255,255,255,.8);
}

.contact-info-card,
.contact-form-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border-radius:30px;
    padding:45px;
    height:100%;
}

.contact-info-card h3{
    color:#fff;
    margin-bottom:35px;
}

.info-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#8EC5FF;
    color:#082567;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.info-item h5{
    color:#fff;
    margin-bottom:5px;
}

.info-item p{
    margin:0;
}

.form-control{
    height:60px;
    border:none;
    border-radius:15px;
    background:rgba(255,255,255,.08);
    color:#fff;
    padding:15px 20px;
}

textarea.form-control{
    height:auto;
}

.form-control:focus{
    background:rgba(255,255,255,.12);
    color:#fff;
    box-shadow:none;
}

.form-control::placeholder{
    color:rgba(255,255,255,.6);
}

.contact-btn{
    background:#8EC5FF;
    color:#082567;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.contact-btn:hover{
    transform:translateY(-5px);
    background:#fff;
}

@media(max-width:768px){

.contact-section h2{
    font-size:42px;
}

.contact-info-card,
.contact-form-card{
    padding:30px;
}

}
/* Call */

.call-btn{

background:#FFD43B;

color:#003366;

animation:pulseCall 2s infinite;

}



/* Whatsapp */

.whatsapp-btn{

background:#25D366;

color:#fff;

animation:pulseWhatsapp 2s infinite;

}




/* 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:#003366;

padding:120px 0;

position:relative;

overflow:hidden;

}



/* Tag */

.admission-tag{

display:inline-block;

background:#FFD43B;

color:#003366;

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:#003366;

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:#003366;

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;

}

}







/*==========================================
        SHEISA TECHNOLOGIES ABOUT COMPANY
==========================================*/

.st-company-about{
    padding:100px 0;
    background:#f8fbff;
    overflow:hidden;
}

.st-company-tag{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.st-company-title{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:#082567;
    margin-bottom:25px;
}

.st-company-title span{
    color:#0d6efd;
}

.st-company-text{
    color:#555;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

/* Image */

.st-company-image{
    position:relative;
}

.st-company-image img{
    width:100%;
    border-radius:25px;
    transition:.4s ease;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.st-company-image:hover img{
    transform:scale(1.03);
}

/* Floating Experience Card */

.st-company-card{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    text-align:center;
    width:180px;
}

.st-company-card h3{
    font-size:42px;
    color:#0d6efd;
    font-weight:800;
    margin-bottom:5px;
}

.st-company-card p{
    margin:0;
    color:#555;
    font-weight:600;
}

/* Feature Boxes */

.st-company-feature{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:15px;
    padding:16px 18px;
    font-weight:600;
    color:#082567;
    transition:.35s ease;
    height:100%;
}

.st-company-feature:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(13,110,253,.25);
}

/* Button */

.st-company-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 35px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.35s ease;
}

.st-company-btn:hover{
    background:#082567;
    color:#fff;
    transform:translateY(-4px);
}

/* Responsive */

@media (max-width:991px){

.st-company-title{
    font-size:40px;
}

.st-company-card{
    position:relative;
    right:0;
    bottom:0;
    margin-top:20px;
}

}

@media (max-width:767px){

.st-company-about{
    padding:70px 0;
}

.st-company-title{
    font-size:32px;
}

.st-company-text{
    font-size:16px;
}

.st-company-feature{
    margin-bottom:15px;
}

}







/*=================================
    TECHNOLOGY SECTION
=================================*/

.technology-section{
    padding:100px 0;
    background:#fff;
}

.technology-tag{
    display:inline-block;
    padding:8px 22px;
    background:#FFD43B;
    color:#003366;
    border-radius:50px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.technology-section h2{
    font-size:52px;
    font-weight:800;
    color:#003366;
    margin-bottom:20px;
}

.technology-section h2 span{
    color:#0d6efd;
}

.technology-section p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.technology-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.technology-card:hover{
    transform:translateY(-8px);
    border-color:#FFD43B;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.technology-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:20px;
}

.technology-card h5{
    margin:0;
    font-size:18px;
    color:#003366;
    font-weight:700;
}

@media(max-width:768px){

.technology-section{
    padding:70px 0;
}

.technology-section h2{
    font-size:36px;
}

.technology-card{
    padding:25px 15px;
}

.technology-card img{
    width:55px;
    height:55px;
}

}








/*====================================
        SERVICES SECTION
====================================*/

.st-services{
    padding:110px 0;
    background:#003366;
    position:relative;
    overflow:hidden;
}

.st-services::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,212,59,.05);
    border-radius:50%;
    top:-180px;
    right:-150px;
}

.st-services::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    bottom:-120px;
    left:-120px;
}

.st-services-tag{
    display:inline-block;
    background:#FFD43B;
    color:#003366;
    padding:10px 24px;
    border-radius:50px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.st-services h2{
    color:#fff;
    font-size:58px;
    font-weight:800;
}

.st-services h2 span{
    color:#FFD43B;
}

.st-services p{
    color:rgba(255,255,255,.82);
    font-size:18px;
    max-width:760px;
    margin:20px auto 0;
}

.st-service-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:35px 30px;
    height:100%;
    transition:.35s;
}

.st-service-card:hover{
    background:#FFD43B;
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(255,212,59,.25);
}

.st-service-icon{
    width:75px;
    height:75px;
    border-radius:18px;
    background:#FFD43B;
    color:#003366;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin-bottom:25px;
}

.st-service-card:hover .st-service-icon{
    background:#003366;
    color:#FFD43B;
}

.st-service-card h4{
    color:#fff;
    font-weight:700;
    margin-bottom:15px;
}

.st-service-card:hover h4{
    color:#003366;
}

.st-service-card p{
    color:rgba(255,255,255,.82);
    margin:0 0 20px;
    font-size:16px;
}

.st-service-card:hover p{
    color:#003366;
}

.st-service-card a{
    color:#FFD43B;
    font-weight:700;
    text-decoration:none;
}

.st-service-card:hover a{
    color:#003366;
}

@media(max-width:768px){

.st-services{
    padding:80px 0;
}

.st-services h2{
    font-size:36px;
}

}