@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
    background:#080808;
    color:white;
    overflow-x:hidden;
}

.navbar{
position:fixed;
top:15px;
left:50%;
transform:translateX(-50%);
width:92%;
max-width:1400px;

display:flex;
justify-content:space-between;
align-items:center;

padding:16px 35px;

background:rgba(20,20,20,.55);
backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);
border-radius:18px;

z-index:1000;
transition:.4s;
}


.nav-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.nav-brand img{
    height:40px;
    width:auto;
}

.nav-brand span{
    font-size:30px;
    font-weight:700;
    color:#18b4a8;
    letter-spacing:1px;
}

.navbar ul{
display:flex;
list-style:none;
gap:40px;
}

.navbar a{
text-decoration:none;
color:white;
font-weight:500;
font-size:17px;
transition:.3s;
}

.navbar a:hover{
color:#18b4a8;
}

.hero{

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:100px 20px 40px;

    background:#080808;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.logo{
    width:130px;
    margin-top:0;
    margin-bottom:20px;
}

.hero h2{
font-size:18px;
letter-spacing:8px;
text-transform:uppercase;
color:#18b4a8;
margin-top:10px;
}

.hero h1{
font-size:72px;
font-weight:700;
letter-spacing:2px;
margin:15px 0;
}

.hero h3{
font-size:34px;
font-weight:600;
margin-top:10px;
margin-bottom:18px;
color:white;
}

.hero p{
font-size:20px;
color:#bdbdbd;
max-width:700px;
line-height:1.8;
}

.btn{
margin-top:45px;
padding:16px 38px;
background:#18b4a8;
color:white;
text-decoration:none;
border-radius:50px;
font-weight:600;
font-size:17px;
transition:.35s;
box-shadow:0 10px 30px rgba(24,180,168,.35);
}

.btn:hover{
transform:translateY(-6px);
background:#20c7ba;
box-shadow:0 18px 45px rgba(24,180,168,.45);
}

.story{
padding:120px 12%;
background:#080808;
}

.story h2{
font-size:45px;
margin-bottom:25px;
color:#18b4a8;
}

.story p{
font-size:20px;
line-height:1.8;
max-width:900px;
}

.story-container{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    align-items:center;
}

.story h3{
    font-size:30px;
    color:white;
    margin-bottom:25px;
    line-height:1.4;
}

.story-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:40px;
    text-align:center;
}

.story-card h4{
    color:#18b4a8;
    font-size:28px;
    margin-bottom:20px;
}

.story-card p{
    color:white;
    font-size:24px;
    font-weight:600;
}

/* VISION */

.vision{
    padding:70px 10% 100px;
    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.vision h2{
    color:#18b4a8;
    font-size:52px;
    margin-bottom:35px;
    letter-spacing:4px;
    font-weight:700;
}

.vision-box{
    width:100%;
    max-width:850px;

    margin:0 auto;

    padding:55px;

    border-radius:24px;

    background:rgba(24,180,168,.08);
    border:1px solid rgba(24,180,168,.25);

    box-shadow:0 0 70px rgba(24,180,168,.12);
}

.vision-box h3{
    font-size:36px;
    color:white;
}

.vision-box h1{
    font-size:70px;
    color:#18b4a8;
    margin:20px 0;
}

.vision-box p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:20px;
    margin:30px 0;
}

.vision-box span{
    color:white;
    font-size:28px;
    font-weight:700;
}

#vision{
    scroll-margin-top:120px;
}

.scroll-indicator{
    margin-top:70px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.scroll-indicator span{
    color:#8fa3a2;
    font-size:13px;
    letter-spacing:4px;
}

.mouse{
    width:28px;
    height:48px;
    border:2px solid #18b4a8;
    border-radius:20px;
    display:flex;
    justify-content:center;
    padding-top:8px;
}

.wheel{
    width:5px;
    height:10px;
    background:#18b4a8;
    border-radius:20px;
    animation:scroll 1.8s infinite;
}

@keyframes scroll{

    0%{
        opacity:1;
        transform:translateY(0);
    }

    100%{
        opacity:0;
        transform:translateY(15px);
    }

}

.numbers{
    padding:120px 8%;
    text-align:center;
}

.numbers h2{
    font-size:52px;
    color:#18b4a8;
    margin-bottom:70px;
    letter-spacing:4px;
}

.numbers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.number-card{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:45px 20px;

    transition:.4s;

    opacity:0;

    transform:translateY(50px);

}

.number-card.show{

    opacity:1;

    transform:translateY(0);

}

.number-card:hover{

    transform:translateY(-12px) scale(1.04);

    border-color:#18b4a8;

    box-shadow:
    0 0 25px rgba(24,180,168,.35),
    0 0 60px rgba(24,180,168,.15);

}

.icon{

    font-size:48px;

    margin-bottom:18px;

    transition:.4s;

}

.number-card:hover .icon{

    transform:scale(1.2) rotate(8deg);

}

.number-card h3{

    font-size:64px;

    color:#18b4a8;

    text-shadow:0 0 18px rgba(24,180,168,.45);

    margin-bottom:8px;

}

.number-card p{

    margin-top:10px;

    font-size:20px;

    color:#d6d6d6;

}

/* ==========================
   LOADER
========================== */

#loader{

    position:fixed;
    inset:0;

    background:#050505;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:99999;

    transition:opacity .8s ease,
               visibility .8s ease;

}

#loader.hide{

    opacity:0;
    visibility:hidden;

}

.loader-content{

    text-align:center;

}

.loader-logo{

    width:110px;

    margin-bottom:25px;

    animation:float 2s ease-in-out infinite;

}

.loader-content h3{

    color:#18b4a8;

    letter-spacing:6px;

    margin-bottom:15px;

}

.loader-content h1{

    font-size:60px;

    margin-bottom:20px;

}

.loader-content p{

    color:#bdbdbd;

    font-size:22px;

    line-height:1.7;

    margin-bottom:35px;

}

.loading-bar{

    width:260px;

    height:6px;

    background:#222;

    border-radius:20px;

    overflow:hidden;

    margin:auto;

}

.loading-fill{

    height:100%;

    width:0;

    background:#18b4a8;

    animation:loading 2.4s linear forwards;

}

.loader-content span{

    display:block;

    margin-top:18px;

    color:#888;

    letter-spacing:3px;

}

@keyframes loading{

    from{

        width:0;

    }

    to{

        width:100%;

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

.loader-text{
    margin-top:20px;
    height:30px;
}

#loaderMessage{
    color:#18b4a8;
    font-size:18px;
    letter-spacing:2px;
    transition:opacity .3s ease;
}

.quote-box{

    margin-top:35px;

    padding:25px;

    background:rgba(255,255,255,.05);

    border-left:5px solid #18b4a8;

    border-radius:18px;

}

.quote-box h3{

    color:#18b4a8;

    margin-bottom:15px;

}

.quote{

    font-size:20px;

    line-height:1.8;

    font-style:italic;

    color:#f5f5f5;

}

.featured-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 35px rgba(24,180,168,.25),
    0 0 70px rgba(24,180,168,.12);

}

.featured-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 35px rgba(24,180,168,.25),
    0 0 70px rgba(24,180,168,.12);

}

/* ==========================
   STUDENTS
========================== */

.students{
    padding:120px 8%;
}

.featured-title{
    text-align:center;
    margin-bottom:70px;
}

.featured-title h2{
    font-size:52px;
    color:#18b4a8;
    margin-bottom:15px;
}

.students-subtitle{
    color:#bdbdbd;
    font-size:22px;
}

.featured-card{

    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;

    align-items:center;

    max-width:1150px;

    margin:auto;

    padding:40px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.featured-image{

    display:flex;

    justify-content:center;

}

.featured-image img{

    width:320px;

    height:480px;

    object-fit:cover;

    border-radius:24px;

    transition:.4s;

}

.featured-card:hover .featured-image img{

    transform:scale(1.03);

    box-shadow:0 0 35px rgba(24,180,168,.35);

}

.featured-info h1{

    font-size:56px;

    margin-bottom:20px;

}

.badges{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;

}

.badges span{

    background:#18b4a8;

    color:white;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.intro{

    color:#d6d6d6;

    line-height:1.8;

    margin-bottom:30px;

}

.info-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.info-box{

    background:rgba(255,255,255,.05);

    padding:20px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    min-height:130px;

}

.info-box h3{

    color:#18b4a8;

    margin-bottom:10px;

}

.student-divider{

    border:none;

    height:1px;

    margin:90px auto;

    width:90%;

    background:linear-gradient(
        to right,
        transparent,
        rgba(24,180,168,.45),
        transparent
    );

}

.story,
.vision,
.numbers,
.students,
.gallery,
.teachers,
.footer{

    background:#080808;

    border-top:1px solid rgba(255,255,255,.05);

}

/* ==========================
   TEACHERS
========================== */

.teachers{

    padding:120px 8%;
    background:#080808;
    text-align:center;

}

.teachers-title span{

    color:#18b4a8;
    letter-spacing:4px;
    font-size:22px;
    font-weight:600;

}

.teachers-title h2{

    font-size:50px;
    margin:18px 0;

}

.teachers-title p{

    color:#bdbdbd;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:18px;

}

.teacher-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    transition:.35s;

}

.teacher-card:hover{

    transform:translateY(-10px);

    border-color:#18b4a8;

    box-shadow:0 0 30px rgba(24,180,168,.25);

}

.teacher-logo{

    width:90px;

    margin-bottom:25px;

}

.teacher-card h3{

    font-size:22px;

    margin-bottom:10px;

}

.teacher-card h4{

    color:#18b4a8;

    letter-spacing:3px;

    margin-bottom:25px;

}

.teacher-line{

    width:70px;

    height:2px;

    background:#18b4a8;

    margin:25px auto;

}

.teacher-quote{

    font-style:italic;

    line-height:1.7;

    color:#e6e6e6;

}

.teacher-message{

    color:#bdbdbd;

    line-height:1.8;

}

.teacher-profile{

    margin-top:70px;

}

.teacher-profile .featured-image img{

    width:180px;
    height:180px;

    object-fit:contain;

    border-radius:0;

    box-shadow:none;

}

.teacher-profile .featured-card:hover .featured-image img{

    transform:scale(1.05);

}

/* ==========================
   TEACHER PROFILE
========================== */

.teacher-profile{
    display: grid !important;
    grid-template-columns: 220px 1fr !important;
    align-items: center;
    gap: 50px;
    max-width: 1150px;
    margin: 70px auto;
}

.teacher-profile .featured-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.teacher-profile .featured-image img{
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.teacher-profile .featured-info{
    width: 100%;
    text-align: left;
}

.teacher-profile .featured-info h1{
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 15px;
    word-break: normal;
}

.teacher-profile .badges{
    justify-content: flex-start;
}

.teacher-profile{

    display:grid;

    grid-template-columns:220px 1fr;

    align-items:center;

    gap:50px;

    max-width:1150px;

    margin:70px auto;

}

.teacher-profile .featured-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.teacher-profile .featured-image img{

    width:170px;

    height:170px;

    object-fit:contain;

}

.teacher-profile .featured-info{

    text-align:left;

}

.teacher-profile .featured-info h1{

    font-size:48px;

    line-height:1.2;

    margin-bottom:15px;

}

.teacher-profile .badges{

    justify-content:flex-start;

}

.teacher-profile .featured-info h1{
    font-size: 38px;
    white-space: nowrap;
}

/*==========================
        GALLERY
==========================*/

.gallery{

    padding:120px 10%;

    background:#080808;

}

.gallery-title{

    text-align:center;

    margin-bottom:70px;

}

.gallery-title span{

    color:#18b4a8;

    font-weight:600;

    letter-spacing:3px;

}

.gallery-title h2{

    font-size:50px;

    margin:15px 0;

}

.gallery-title p{

    max-width:700px;

    margin:auto;

    color:#bfc4cf;

    line-height:1.8;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.gallery-card{

    background:#151515;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.gallery-card img{

    width:100%;

    height:340px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.gallery-content{

    padding:28px;

}

.gallery-content h3{

    font-size:30px;

    margin-bottom:15px;

}

.gallery-content p{

    color:#bfc4cf;

    line-height:1.8;

}

.line{

    width:70px;

    height:4px;

    background:#18b4a8;

    border-radius:20px;

    margin-bottom:20px;

}

.gallery-card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 35px rgba(24,180,168,.20);

}

.gallery-card:hover img{

    transform:scale(1.05);

}

/*==========================
      GALLERY LIGHTBOX
==========================*/

.gallery-card img{

    cursor:pointer;

}

.gallery-lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.93);

    display:flex;

    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.gallery-lightbox.show{

    opacity:1;
    visibility:visible;

}

.gallery-lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:15px;

    box-shadow:0 0 40px rgba(0,0,0,.6);

    animation:zoomImage .35s ease;

}

.close-lightbox{

    position:absolute;

    top:25px;

    right:40px;

    color:white;

    font-size:55px;

    cursor:pointer;

    transition:.3s;

}

.close-lightbox:hover{

    color:#18b4a8;

}

@keyframes zoomImage{

    from{

        transform:scale(.8);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.resources-section{

    padding:120px 8%;

}

.resources-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:60px;

}

.resource-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    text-decoration:none;

    color:#fff;

    transition:.35s;

    backdrop-filter:blur(20px);

}

.resource-card:hover{

    transform:translateY(-10px);

    border-color:#18b4a8;

    box-shadow:0 15px 35px rgba(24,180,168,.25);

}

.resource-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#18b4a8;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.resource-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.resource-card p{

    color:#bdbdbd;

    line-height:1.8;

    margin-bottom:25px;

}

.resource-card span{

    color:#18b4a8;

    font-weight:600;

    letter-spacing:1px;

}

.resources-heading{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    color:#18b4a8;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.resources-heading h2{

    font-size:58px;

    font-weight:800;

    color:#fff;

    margin-bottom:20px;

}

.heading-line{

    width:90px;

    height:4px;

    background:#18b4a8;

    border-radius:20px;

    margin:0 auto 25px;

}

.resources-heading p{

    font-size:20px;

    line-height:1.8;

    color:#bcbcbc;

    max-width:700px;

    margin:auto;

}

.exam-section{

    padding:120px 8%;

}

.exam-container{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:45px;

    align-items:center;

    max-width:1300px;

    margin:auto;

}

.exam-info{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:45px;

}

.exam-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#18b4a8;

    color:#fff;

    font-weight:700;

    margin-bottom:25px;

}

.exam-info h3{

    font-size:38px;

    margin-bottom:20px;

}

.exam-info p{

    color:#bcbcbc;

    line-height:1.8;

}

.exam-details{

    margin-top:35px;

    display:grid;

    gap:25px;

}

.exam-details h4{

    color:#18b4a8;

    margin-bottom:8px;

}

.exam-image{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.08);

}

.exam-image img{

    width:100%;

    display:block;

    transition:.4s;

}

.exam-image:hover img{

    transform:scale(1.03);

}

.exam-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.55);

    color:#fff;

    font-size:22px;

    font-weight:700;

    opacity:0;

    transition:.3s;

}

.exam-image:hover .exam-overlay{

    opacity:1;

}

@media(max-width:950px){

.exam-container{

    grid-template-columns:1fr;

}

}

.thank-section{

    padding:140px 8%;

}

.thank-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px 60px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

}

.thank-card h2{

    font-size:58px;

    margin:25px 0;

}

.thank-message{

    color:#c4c4c4;

    font-size:20px;

    line-height:2;

    margin:25px 0;

}

blockquote{

    margin:50px auto;

    color:#18b4a8;

    font-size:42px;

    font-weight:700;

    line-height:1.5;

    font-style:italic;

}

.signature{

    margin-top:50px;

}

.signature h3{

    font-size:34px;

}

.signature span{

    color:#18b4a8;

    letter-spacing:2px;

}

footer{

    padding:60px 8%;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-content h3{

    font-size:34px;

    margin-bottom:15px;

}

.footer-content p{

    color:#bcbcbc;

    margin:10px 0;

}

.footer-line{

    width:100px;

    height:3px;

    background:#18b4a8;

    margin:30px auto;

}

footer small{

    color:#888;

    line-height:1.8;

}

#topBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#18b4a8;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.3s;

}

#topBtn:hover{

    transform:translateY(-5px);

}