
html,
body{
    width:100%;
    height:100%;
    overflow-x:hidden;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#fff;
}

/* Header */

header{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 60px;
    background:rgba(0,0,0,.55);
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
    margin-right:12px;
}

.logo h2{
    color:white;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

nav ul li a:hover,
.active{
    color:#FFD700;
}

/* Home Page */

.home{
    width:100vw;
    height:100vh;

    background-image:url("../images/clgpic.png");
    background-repeat:no-repeat;
    background-position:center center;
    background-size:100% 100%;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
}

/* Dark Overlay */

.overlay{

    width:100%;

    height:100%;

    background:rgba(0,0,0,.75);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.overlay h1{

    font-size:35px;

}

.overlay h2{

    font-size:55px;

    margin:20px 0;

}

.overlay p{

    font-size:22px;

    width:70%;

    line-height:1.6;

}

.btn{

    margin-top:35px;

    padding:14px 35px;

    background:#ff9800;

    color:white;

    text-decoration:none;

    border-radius:5px;

    font-size:20px;

    transition:.4s;

}

.btn:hover{

    background:#e65100;

}

footer{

    position:fixed;

    bottom:0;

    width:100%;

    text-align:center;

    background:rgba(0,0,0,.55);

    color:white;

    padding:10px;

}
.page-banner{
    margin-top:90px;
    background:#4b0082;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.page-banner h1{
    font-size:42px;
}

.about-section{
    width:90%;
    max-width:1200px;
    margin:50px auto;
}

.about-section h2{
    text-align:center;
    color:#4b0082;
    margin-bottom:25px;
}

.about-section p{
    font-size:18px;
    line-height:1.8;
    text-align:justify;
}

.about-box{
    margin-top:30px;
    background:#ffffff;
    padding:25px;
    border-left:6px solid orange;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.about-box h3{
    color:#4b0082;
    margin-bottom:15px;
}

.about-box ul{
    padding-left:20px;
}

.about-box li{
    margin:12px 0;
    font-size:18px;
}
/* Courses */

.courses{

width:90%;

margin:50px auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.course-card{

background:white;

padding:30px;

border-radius:12px;

box-shadow:0 10px 20px rgba(0,0,0,.15);

transition:.4s;

}

.course-card:hover{

transform:translateY(-8px);

}

.course-card h2{

color:#4B0082;

margin-bottom:10px;

}

.course-card h3{

color:#ff9800;

margin-bottom:20px;

}

.course-card ul{

padding-left:20px;

}

.course-card li{

margin-bottom:10px;

line-height:1.6;

}

.training{

width:90%;

margin:50px auto;

background:#fff;

padding:35px;

border-radius:10px;

box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.training h1{

color:#4B0082;

margin-bottom:20px;

}

.training ul{

padding-left:20px;

}

.training li{

margin-bottom:12px;

font-size:18px;

}
/* Gallery */

.gallery-title{

text-align:center;

font-size:35px;

margin:50px 0 30px;

color:#4B0082;

}

.gallery-grid{

width:90%;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

padding-bottom:40px;

}

.gallery-grid img{

width:100%;

height:250px;

object-fit:cover;

border-radius:10px;

box-shadow:0 5px 15px rgba(0,0,0,.2);

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}

.video-grid{

width:90%;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

padding-bottom:60px;

}

.video-grid video{

width:100%;

border-radius:10px;

box-shadow:0 5px 15px rgba(0,0,0,.2);

}
/* Admissions */

.admission-container{

width:90%;

margin:50px auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.admission-card{

background:#fff;

padding:30px;

border-radius:10px;

box-shadow:0 5px 20px rgba(0,0,0,.15);

border-top:5px solid #ff9800;

transition:.3s;

}

.admission-card:hover{

transform:translateY(-8px);

}

.admission-card h2{

color:#4B0082;

margin-bottom:20px;

}

.admission-card ul,
.admission-card ol{

padding-left:22px;

}

.admission-card li{

margin-bottom:12px;

line-height:1.7;

}

.apply-section{

width:90%;

margin:60px auto;

padding:50px;

background:#4B0082;

color:#fff;

text-align:center;

border-radius:12px;

}

.apply-section h2{

font-size:36px;

margin-bottom:20px;

}

.apply-section p{

font-size:20px;

margin-bottom:30px;

}
/* Contact */

.contact-container{

width:90%;

margin:50px auto;

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

}

.contact-info{

background:#ffffff;

padding:35px;

border-radius:10px;

box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.contact-info h2{

color:#4B0082;

margin-bottom:15px;

}

.contact-info p{

margin-bottom:10px;

font-size:18px;

}

.contact-form{

background:#ffffff;

padding:35px;

border-radius:10px;

box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.contact-form h2{

color:#4B0082;

margin-bottom:20px;

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ccc;

border-radius:6px;

font-size:16px;

}

.contact-form button{

border:none;

cursor:pointer;

}

.map-section{

width:90%;

margin:50px auto;

}

.map-section h2{

text-align:center;

margin-bottom:20px;

color:#4B0082;

}
.sticky{

background:#4B0082;

transition:.4s;

box-shadow:0 5px 15px rgba(0,0,0,.3);

}
.popup{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.9);

display:flex;

justify-content:center;

align-items:center;

z-index:9999;

}

.popup img{

max-width:90%;

max-height:90%;

border-radius:10px;

}

.close{

position:absolute;

top:20px;

right:40px;

font-size:45px;

color:white;

cursor:pointer;

}
.counter-section{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

padding:60px;

background:#4B0082;

color:white;

text-align:center;

}

.counter-section h1{

font-size:45px;

margin-bottom:10px;

}
.fade{

animation:fade 1.5s;

}

@keyframes fade{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.zoom:hover{

transform:scale(1.05);

transition:.4s;

}

.btn:hover{

transform:scale(1.05);

transition:.3s;

}