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

/*=========================================
RESET
=========================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=========================================
COMMON
=========================================*/

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:80px 0;
}

h1,h2,h3,h4{
    font-weight:700;
}

p{
    color:#666;
}

/*=========================================
TOP BAR
=========================================*/

.top-bar{
    background:#0056b3;
    color:#fff;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-left a{
    color:#fff;
    transition:.3s;
}

.top-left a:hover{
    color:#ffc107;
}

.top-left i,
.top-right i{
    margin-right:6px;
}

.top-right span{
    font-weight:600;
    color:#ffc107;
}

/*=========================================
HEADER
=========================================*/

header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

/*=========================================
LOGO
=========================================*/

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:65px;
    height:65px;
    object-fit:contain;
}

.logo h2{
    color:#0056b3;
    font-size:28px;
    font-weight:700;
    line-height:1;
}

.logo p{
    font-size:13px;
    color:#888;
    margin-top:4px;
}

/*=========================================
MENU
=========================================*/

nav ul{
    display:flex;
    align-items:center;
    gap:30px;
}

nav ul li a{
    color:#222;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    position:relative;
}

nav ul li a:hover{
    color:#0056b3;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#ffc107;
    transition:.3s;
}

nav ul li a:hover::after{
    width:100%;
}

/*=========================================
MENU BUTTON
=========================================*/

.menu-btn{
    display:none;
    font-size:28px;
    color:#0056b3;
    cursor:pointer;
}
	/*=========================================
HERO SECTION
=========================================*/

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
}

/*=========================================
OVERLAY
=========================================*/

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(0,40,80,.65),
        rgba(0,20,40,.75)
    );
    z-index:1;
}

/*=========================================
HERO CONTENT
=========================================*/

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    height:100%;
    margin:auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-content .tag{
    display:inline-block;
    background:#ffc107;
    color:#000;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.hero-content p{
    color:#f1f1f1;
    font-size:20px;
    max-width:700px;
    margin-bottom:35px;
}

/*=========================================
BUTTONS
=========================================*/

.hero-btn{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.btn{
    display:inline-block;
    padding:16px 36px;
    border-radius:50px;
    background:#0056b3;
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.35s ease;
    border:2px solid #0056b3;
}

.btn:hover{
    background:#003d80;
    border-color:#003d80;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#0056b3;
}

/*=========================================
SCROLL DOWN
=========================================*/

.scroll-down{
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
    z-index:2;
}

.scroll-down a{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0056b3;
    font-size:24px;
    animation:bounce 2s infinite;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}

@keyframes bounce{
    0%,20%,50%,80%,100%{
        transform:translateY(0);
    }
    40%{
        transform:translateY(-12px);
    }
    60%{
        transform:translateY(-6px);
    }
}

/*=========================================
TEXT ANIMATION
=========================================*/

.hero-content .tag,
.hero-content h1,
.hero-content p,
.hero-btn{
    animation:fadeUp 1s ease forwards;
}

.hero-content h1{
    animation-delay:.2s;
}

.hero-content p{
    animation-delay:.4s;
}

.hero-btn{
    animation-delay:.6s;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
	/*=========================================
TABLET (992px)
=========================================*/

@media (max-width:992px){

.container{
    width:94%;
}

.logo img{
    width:55px;
    height:55px;
}

.logo h2{
    font-size:24px;
}

.hero-content h1{
    font-size:46px;
}

.hero-content p{
    font-size:18px;
}

}

/*=========================================
MOBILE MENU
=========================================*/

@media (max-width:768px){

.top-bar{
    display:none;
}

.header{
    padding:15px 0;
}

.menu-btn{
    display:block;
    z-index:1001;
}

nav{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#0056b3;
    transition:.4s;
    box-shadow:-5px 0 25px rgba(0,0,0,.25);
    padding-top:90px;
}

nav.active{
    right:0;
}

nav ul{
    flex-direction:column;
    gap:0;
}

nav ul li{
    width:100%;
}

nav ul li a{
    display:block;
    color:#fff;
    padding:18px 25px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

nav ul li a:hover{
    background:rgba(255,255,255,.12);
    color:#fff;
}

nav ul li a::after{
    display:none;
}

/* HERO */

.hero{
    height:90vh;
}

.hero-content{
    padding:20px;
}

.hero-content .tag{
    font-size:12px;
    padding:8px 16px;
}

.hero-content h1{
    font-size:34px;
    line-height:1.3;
}

.hero-content p{
    font-size:16px;
    margin-bottom:30px;
}

.hero-btn{
    flex-direction:column;
    width:100%;
    align-items:center;
}

.btn{
    width:240px;
    text-align:center;
}

.scroll-down{
    display:none;
}

}

/*=========================================
SMALL MOBILE
=========================================*/

@media (max-width:480px){

.logo img{
    width:45px;
    height:45px;
}

.logo h2{
    font-size:20px;
}

.logo p{
    font-size:11px;
}

.hero{
    height:85vh;
}

.hero-content h1{
    font-size:28px;
}

.hero-content p{
    font-size:15px;
}

.btn{
    width:210px;
    padding:14px 20px;
    font-size:15px;
}

}

/*=========================================
UTILITY CLASSES
=========================================*/

.text-center{
    text-align:center;
}

.mt-30{
    margin-top:30px;
}

.mt-50{
    margin-top:50px;
}

.mb-30{
    margin-bottom:30px;
}

.mb-50{
    margin-bottom:50px;
}

.shadow{
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.rounded{
    border-radius:12px;
}
/*=========================================
SECTION TITLE
=========================================*/

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-title h5{
    color:#0056b3;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:20px;
}

.section-title p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

/*=========================================
ABOUT SECTION
=========================================*/

.about{
    background:#fff;
}

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

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}

.about-content h3{
    font-size:34px;
    color:#222;
    margin-bottom:20px;
}

.about-content p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
}

.about-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:35px;
}

.about-list div{
    background:#f8f9fa;
    padding:14px 18px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.about-list div:hover{
    background:#0056b3;
    color:#fff;
    transform:translateY(-4px);
}

.about-list i{
    color:#28a745;
    margin-right:8px;
}

/*=========================================
PRINCIPAL SECTION
=========================================*/

.principal{
    background:#f5f8fc;
}

.principal-box{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:60px;
    align-items:center;
}

.principal-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.principal-content h5{
    color:#0056b3;
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.principal-content h2{
    font-size:40px;
    margin-bottom:25px;
    color:#222;
}

.principal-content p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.principal-content h4{
    margin-top:30px;
    font-size:24px;
    color:#0056b3;
}

.principal-content span{
    color:#888;
    font-weight:600;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.about-grid,
.principal-box{
    grid-template-columns:1fr;
}

.principal-image{
    max-width:350px;
    margin:auto;
}

.about-list{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:34px;
}

.about-content h3,
.principal-content h2{
    font-size:30px;
}

}

@media(max-width:576px){

.section-title h2{
    font-size:28px;
}

.about-content h3,
.principal-content h2{
    font-size:26px;
}

.about-content p,
.principal-content p{
    font-size:16px;
}

}
/*=========================================
ACADEMICS
=========================================*/

.academics{
    background:#ffffff;
}

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

.academic-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.academic-card:hover{
    transform:translateY(-12px);
    background:#0056b3;
}

.academic-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    transition:.3s;
}

.academic-icon i{
    font-size:36px;
    color:#0056b3;
}

.academic-card:hover .academic-icon{
    background:#fff;
}

.academic-card:hover h3,
.academic-card:hover p{
    color:#fff;
}

.academic-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.academic-card p{
    line-height:1.8;
}
/*=========================================
FACILITIES
=========================================*/

.facilities{
    background:#f8fbff;
}

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

.facility-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border-top:5px solid transparent;
}

.facility-card:hover{
    transform:translateY(-10px);
    border-color:#0056b3;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.facility-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#0056b3;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.facility-icon i{
    color:#fff;
    font-size:34px;
}

.facility-card h3{
    margin-bottom:15px;
    font-size:24px;
    color:#222;
}

.facility-card p{
    color:#666;
    line-height:1.8;
}

.facility-card:hover .facility-icon{
    background:#ffc107;
}

.facility-card:hover .facility-icon i{
    color:#222;
}
/*=========================================
ACHIEVEMENT
=========================================*/

.achievement{
    background:linear-gradient(rgba(0,86,179,.92),rgba(0,86,179,.92)),
    url(images/campus.jpg) center/cover;
    color:#fff;
}

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

.counter-box{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    border-radius:18px;
    padding:40px 20px;
    text-align:center;
    transition:.35s;
}

.counter-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.15);
}

.counter-box i{
    font-size:50px;
    color:#ffc107;
    margin-bottom:20px;
}

.counter-box h2{
    font-size:48px;
    color:#fff;
    margin-bottom:10px;
}

.counter-box p{
    color:#fff;
    font-size:18px;
    font-weight:500;
}

.achievement .section-title h5,
.achievement .section-title h2,
.achievement .section-title p{
    color:#fff;
}
/*=========================================
GALLERY
=========================================*/

.gallery{
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item::after{
    content:"\f00e";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    inset:0;
    background:rgba(0,86,179,.45);
    color:#fff;
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.35s;
}

.gallery-item:hover::after{
    opacity:1;
}
/*=========================================
ADMISSION BANNER
=========================================*/

.admission-banner{
    background:#0056b3;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.admission-banner h2{
    font-size:42px;
    margin-bottom:20px;
}

.admission-banner p{
    max-width:750px;
    margin:0 auto 35px;
    color:#f5f5f5;
    font-size:18px;
    line-height:1.8;
}

.admission-banner .btn{
    background:#ffc107;
    color:#222;
    border-color:#ffc107;
}

.admission-banner .btn:hover{
    background:#fff;
    border-color:#fff;
}
/* CONTACT */

.contact{
background:#f8fbff;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.info-box{
display:flex;
gap:20px;
margin-bottom:30px;
}

.info-box i{
width:60px;
height:60px;
background:#0056b3;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:24px;
}

.contact-form input,
.contact-form textarea{

width:100%;
padding:15px;
margin-bottom:20px;
border:1px solid #ddd;
border-radius:10px;
font-family:Poppins;
}

.contact-form textarea{
resize:none;
}

/* FOOTER */

footer{
background:#012d5a;
color:#fff;
text-align:center;
padding:60px 20px;
}

footer h2{
margin-bottom:15px;
}

footer p{
color:#ddd;
}

.footer-social{
margin:30px 0;
}

.footer-social a{

width:45px;
height:45px;
display:inline-flex;
justify-content:center;
align-items:center;
background:#0056b3;
color:#fff;
border-radius:50%;
margin:5px;
transition:.3s;
}

.footer-social a:hover{
background:#ffc107;
color:#222;
}

/* WHATSAPP */

.whatsapp{

position:fixed;
right:25px;
bottom:25px;

width:60px;
height:60px;

background:#25D366;

color:#fff;

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

border-radius:50%;

font-size:30px;

z-index:999;

box-shadow:0 8px 20px rgba(0,0,0,.2);

}

/* TOP BUTTON */

.top-btn{

position:fixed;

left:25px;
bottom:25px;

width:55px;
height:55px;

background:#0056b3;

color:#fff;

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

border-radius:50%;

font-size:22px;

text-decoration:none;

}

@media(max-width:768px){

.contact-grid{

grid-template-columns:1fr;

}

}
/*=========================
FOOTER
==========================*/

.footer{
background:#0b1f3a;
color:#fff;
padding:70px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:40px;
}

.footer-logo{
width:70px;
margin-bottom:15px;
}

.footer h3{
margin-bottom:20px;
font-size:22px;
color:#fff;
}

.footer p{
color:#ccc;
line-height:1.8;
}

.footer ul{
list-style:none;
padding:0;
}

.footer ul li{
margin-bottom:12px;
}

.footer ul li a{
color:#ddd;
text-decoration:none;
transition:.3s;
}

.footer ul li a:hover{
color:#ffc107;
padding-left:5px;
}

.footer-social{
margin-top:20px;
}

.footer-social a{
display:inline-flex;
width:42px;
height:42px;
justify-content:center;
align-items:center;
background:#0056b3;
color:#fff;
border-radius:50%;
margin-right:10px;
transition:.3s;
}

.footer-social a:hover{
background:#ffc107;
color:#222;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.15);
margin-top:40px;
padding-top:20px;
text-align:center;
color:#bbb;
}

.footer-bottom strong{
color:#ffc107;
}
.modal{
display:none;
position:fixed;
z-index:9999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.7);
}

.modal-content{
background:#fff;
width:90%;
max-width:700px;
margin:5% auto;
padding:30px;
border-radius:12px;
max-height:80vh;
overflow:auto;
}

.close{
float:right;
font-size:30px;
cursor:pointer;
font-weight:bold;
}
/*=========================
NOTICE BOARD
=========================*/

.notice-board{
padding:80px 0;
background:#f8fbff;
}

.notice-wrapper{
max-width:850px;
margin:auto;
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.notice-header{
background:#0056b3;
color:#fff;
padding:18px 25px;
font-size:22px;
font-weight:600;
}

.notice-body{
padding:20px;
}

.notice-item{
padding:20px;
margin-bottom:15px;
border-left:5px solid #ffc107;
background:#fafafa;
border-radius:8px;
transition:.3s;
}

.notice-item:hover{
background:#eef6ff;
transform:translateX(5px);
}

.notice-date{
display:inline-block;
background:#ffc107;
color:#222;
padding:5px 12px;
border-radius:20px;
font-size:13px;
font-weight:600;
margin-bottom:10px;
}

.notice-item h4{
margin:8px 0;
color:#0056b3;
}

.notice-item p{
margin:0;
color:#555;
line-height:1.7;
}
/*=========================
TEAM SECTIONS
=========================*/

.management,
.teachers,
.toppers{
padding:90px 0;
background:#fff;
}

.teachers{
background:#f8fbff;
}

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

.team-card{
background:#fff;
border-radius:15px;
overflow:hidden;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.35s;
position:relative;
}

.team-card:hover{
transform:translateY(-10px);
}

.team-card img{
width:100%;
height:280px;
object-fit:cover;
}

.team-card h3{
margin:18px 0 8px;
color:#0056b3;
}

.team-card span{
display:block;
font-weight:600;
color:#ff9800;
margin-bottom:10px;
}

.team-card p{
padding:0 20px 20px;
color:#666;
line-height:1.7;
}

.team-card h4{
font-size:28px;
color:#28a745;
margin:15px 0 25px;
}

.badge{
position:absolute;
top:15px;
right:15px;
background:#ffc107;
padding:8px 15px;
border-radius:30px;
font-weight:700;
font-size:14px;
color:#222;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

@media(max-width:768px){

.team-card img{
height:240px;
}

}
.section{
padding:90px 0;
}

.history-grid,
.vision-grid,
.award-grid,
.staff-grid{
display:grid;
gap:30px;
}

.history-grid{
grid-template-columns:1fr 1fr;
align-items:center;
}

.history-image img{
width:100%;
border-radius:15px;
}

.timeline-item{
display:flex;
margin-bottom:25px;
}

.year{
width:80px;
height:80px;
background:#0056b3;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
margin-right:20px;
}

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

.vision-card,
.award-card,
.staff-card{
background:#fff;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.vision-card:hover,
.award-card:hover,
.staff-card:hover{
transform:translateY(-8px);
}

.vision-card i,
.award-card i{
font-size:45px;
color:#0056b3;
margin-bottom:20px;
}

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

.staff-grid{
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}

.staff-card img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
margin-bottom:20px;
}

.cbse-table{
width:100%;
border-collapse:collapse;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.cbse-table th,
.cbse-table td{
padding:15px;
border:1px solid #eee;
}

.cbse-table th{
background:#0056b3;
color:#fff;
text-align:left;
width:220px;
}

@media(max-width:768px){

.history-grid{
grid-template-columns:1fr;
}

.timeline-item{
flex-direction:column;
align-items:flex-start;
}

.year{
margin-bottom:15px;
}

.cbse-table{
display:block;
overflow-x:auto;
}

}
/*=========================
ADMISSION PROCESS
=========================*/

.admission-process{
padding:90px 0;
background:#f8fbff;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.process-card{
position:relative;
background:#fff;
padding:40px 25px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.process-card:hover{
transform:translateY(-8px);
}

.process-card i{
font-size:50px;
color:#0056b3;
margin-bottom:20px;
}

.step{
position:absolute;
top:15px;
right:15px;
width:45px;
height:45px;
background:#ff9800;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
}

.process-card h3{
margin:15px 0;
color:#0056b3;
}

.process-card p{
color:#666;
line-height:1.7;
}

.admission-btn{
margin-top:45px;
text-align:center;
}

.admission-btn .btn{
display:inline-block;
padding:15px 35px;
background:#0056b3;
color:#fff;
text-decoration:none;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.admission-btn .btn:hover{
background:#003d82;
}
/*=========================
DOWNLOAD CENTRE
=========================*/

.download-center{
padding:90px 0;
background:#fff;
}

.download-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.download-card{
background:#fff;
padding:35px 25px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
border-top:4px solid #0056b3;
}

.download-card:hover{
transform:translateY(-8px);
}

.download-card i{
font-size:55px;
color:#0056b3;
margin-bottom:20px;
}

.download-card h3{
margin-bottom:10px;
color:#222;
}

.download-card p{
color:#666;
margin-bottom:25px;
line-height:1.7;
}

.download-btn{
display:inline-block;
padding:12px 28px;
background:#0056b3;
color:#fff;
text-decoration:none;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.download-btn:hover{
background:#ff9800;
}
/*=========================
TRANSPORT
=========================*/

.transport{
padding:90px 0;
background:#f8fbff;
}

.transport-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.transport-image img{
width:100%;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.transport-item{
display:flex;
align-items:flex-start;
margin-bottom:30px;
}

.transport-item i{
width:70px;
height:70px;
background:#0056b3;
color:#fff;
font-size:28px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-right:20px;
}

.transport-item h3{
margin-bottom:8px;
color:#0056b3;
}

.transport-item p{
color:#666;
line-height:1.7;
}

@media(max-width:768px){

.transport-grid{
grid-template-columns:1fr;
}

.transport-item{
flex-direction:column;
text-align:center;
}

.transport-item i{
margin:0 auto 15px;
}

}
/*=========================
HEALTH & SAFETY
=========================*/

.health-safety{
padding:90px 0;
background:#fff;
}

.health-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.health-card{
background:#fff;
padding:35px 25px;
text-align:center;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
border-top:4px solid #0056b3;
}

.health-card:hover{
transform:translateY(-8px);
}

.health-card i{
font-size:55px;
color:#0056b3;
margin-bottom:20px;
}

.health-card h3{
margin-bottom:12px;
color:#0056b3;
}

.health-card p{
color:#666;
line-height:1.8;
}/*=========================
SPORTS SECTION
=========================*/

.sports{
padding:90px 0;
background:#f8fbff;
}

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

.sports-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
}

.sports-card:hover{
transform:translateY(-10px);
}

.sports-card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.sports-content{
padding:25px;
text-align:center;
}

.sports-content i{
font-size:50px;
color:#ff9800;
margin-bottom:18px;
}

.sports-content h3{
margin-bottom:12px;
font-size:22px;
color:#0056b3;
}

.sports-content p{
font-size:16px;
line-height:1.8;
color:#666;
}

@media(max-width:768px){

.sports{
padding:70px 0;
}

.sports-grid{
grid-template-columns:1fr;
}

.sports-card img{
height:200px;
}

}
/*=========================
CLUBS & ACTIVITIES
=========================*/

.clubs{
    padding:90px 0;
    background:#f8fbff;
}

.clubs .section-title{
    text-align:center;
    margin-bottom:50px;
}

.clubs .section-title span{
    display:inline-block;
    color:#ff9800;
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.clubs .section-title h2{
    font-size:40px;
    color:#0056b3;
    margin-bottom:15px;
}

.clubs .section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

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

.club-card{
    background:#fff;
    padding:40px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
    border-top:4px solid #0056b3;
}

.club-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(0,86,179,.08),transparent);
    transition:.6s;
}

.club-card:hover::before{
    left:100%;
}

.club-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.club-card i{
    width:90px;
    height:90px;
    line-height:90px;
    font-size:40px;
    border-radius:50%;
    background:#0056b3;
    color:#fff;
    margin-bottom:25px;
    transition:.3s;
}

.club-card:hover i{
    background:#ff9800;
    transform:rotate(10deg) scale(1.1);
}

.club-card h3{
    font-size:24px;
    color:#0056b3;
    margin-bottom:15px;
}

.club-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* Mobile */

@media(max-width:991px){

.clubs{
    padding:70px 0;
}

.clubs .section-title h2{
    font-size:34px;
}

}

@media(max-width:768px){

.clubs-grid{
    grid-template-columns:1fr;
}

.club-card{
    padding:35px 20px;
}

.club-card i{
    width:80px;
    height:80px;
    line-height:80px;
    font-size:34px;
}

.clubs .section-title h2{
    font-size:30px;
}

}

@media(max-width:480px){

.club-card h3{
    font-size:22px;
}

.club-card p{
    font-size:15px;
}

}
/*=========================
GREEN CAMPUS
=========================*/

.green-campus{
    padding:90px 0;
    background:#f8fbff;
}

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

.green-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.green-card:hover{
    transform:translateY(-10px);
}

.green-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.green-content{
    padding:25px;
    text-align:center;
}

.green-content i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#28a745;
    color:#fff;
    font-size:36px;
    margin-bottom:20px;
}

.green-content h3{
    color:#0056b3;
    margin-bottom:12px;
}

.green-content p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

.green-campus{
    padding:70px 0;
}

.green-grid{
    grid-template-columns:1fr;
}

.green-card img{
    height:200px;
}

}
/*=========================
SMART TRANSPORT
=========================*/

.transport{
    padding:90px 0;
    background:#f8fbff;
}

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

.transport-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.transport-card:hover{
    transform:translateY(-10px);
}

.transport-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.transport-content{
    padding:25px;
    text-align:center;
}

.transport-content i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

.transport-content h3{
    color:#0056b3;
    margin-bottom:12px;
    font-size:24px;
}

.transport-content p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

.transport{
    padding:70px 0;
}

.transport-grid{
    grid-template-columns:1fr;
}

.transport-card img{
    height:200px;
}

}
/*=========================
VIDEO GALLERY
=========================*/

.video-gallery{
    padding:90px 0;
    background:#f8fbff;
}

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

.video-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.video-card:hover{
    transform:translateY(-10px);
}

.video-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.video-content{
    padding:25px;
    text-align:center;
}

.play-btn{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    display:inline-block;
    background:#e53935;
    color:#fff;
    font-size:30px;
    margin-top:-65px;
    margin-bottom:20px;
    position:relative;
    border:5px solid #fff;
    transition:.3s;
}

.play-btn:hover{
    background:#0056b3;
    transform:scale(1.1);
}

.video-content h3{
    color:#0056b3;
    margin-bottom:12px;
    font-size:24px;
}

.video-content p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

.video-gallery{
    padding:70px 0;
}

.video-grid{
    grid-template-columns:1fr;
}

.video-card img{
    height:200px;
}

.play-btn{
    width:65px;
    height:65px;
    line-height:65px;
    font-size:24px;
}

}