* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #002147;
    color: white;
    padding: 5px;
    font-size: 14px;
}

/* HEADER */
.header {
    background: white;
    padding: 15px;
    border-bottom: 2px solid #ddd;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    width: 60px;
    margin-right: 10px;
}

/* NAVBAR */
.navbar {
    background: #0059b3;
    position: sticky;
    top: 0;
}
.navbar {
    position: relative;
    z-index: 1000;
}
.menu {
    list-style: none;
    display: flex;
}

.menu li {
    position: relative;
}

.menu a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
}

.menu a:hover {
    background: #003366;
}

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    background: #0059b3;
    min-width: 200px;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* HERO */
/* SLIDER */
.hero {
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 600px;
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    width: 100%;
    height: 600px;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* BUTTONS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: #0059b3;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 5px;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #0059b3;
}

/* RESPONSIVE */
@media(max-width:768px){
    .slider, .slide {
        height: 200px;
    }
}

.hero {
    height: 300px;
    background: url('../images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h2 {
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
}

/* CONTAINER */
/* CONTAINER */
.container {
    display: flex;
    gap: 20px;
    padding: 30px;
}

/* CARD STYLE */
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* NOTICE */
.notice {
    width: 30%;
    border-left: 5px solid #0059b3;
}

.notice ul {
    margin: 15px 0;
    padding-left: 15px;
}

.notice li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
}

/* CONTENT */
.content {
    width: 70%;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #0059b3;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #003366;
}

/* HIGHLIGHTS */
.highlights {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.highlight-card {
    flex: 1;
    background: linear-gradient(135deg, #0059b3, #003366);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.highlight-card:hover {
    transform: scale(1.05);
}

.highlight-card h4 {
    margin: 10px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .container {
        flex-direction: column;
    }

    .notice, .content {
        width: 100%;
    }

    .highlights {
        flex-direction: column;
    }
}

/* CONTENT */
.content {
    width: 70%;
}

/* FOOTER */
/* FOOTER */
.footer {
    background: #002147;
    color: white;
    margin-top: 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    flex-wrap: wrap;
}

.footer-col {
    width: 30%;
}

.footer-col h3 {
    margin-bottom: 15px;
    border-bottom: 2px solid #0059b3;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #00c3ff;
    padding-left: 5px;
}

/* FOOTER CONTAINER */
.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    flex-wrap: wrap;
}

/* NOW 4 COLUMNS */
.footer-col {
    width: 23%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-col {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .footer-col {
        width: 100%;
    }
}

/* SOCIAL */
.social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.social a:hover {
    transform: scale(1.2);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 10px;
    background: #001530;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-col {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-container {
        flex-direction: column;
    }
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 25px;
    color: white;
    padding: 10px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .menu {
        flex-direction: column;
        display: none;
    }

    .menu.active {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .container {
        flex-direction: column;
    }

    .notice, .content {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
    }
}

.glance-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
}

.glance-table th, 
.glance-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.glance-table th {
    background-color: #2c3e50;
    color: white;
}

.glance-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.glance-table tr:hover {
    background-color: #e6f2ff;
}


.faculty {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.faculty-card {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.faculty-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.faculty-card ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.faculty-card li {
    margin-bottom: 5px;
}


.scholarship-list {
    margin-top: 15px;
    padding-left: 20px;
}

.scholarship-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}





/* SLIDER */
.gallery-wrapper{
    width:100%;
    overflow:hidden;
}

.gallery-track{
    display:flex;
    transition: transform 0.6s ease-in-out;
}

.gallery-track img{
    width:300px;
    height:200px;
    object-fit:cover;
    margin-right:10px;
    flex-shrink:0;
    border-radius:8px;
    cursor:pointer;
}

/* LIGHTBOX */
#lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

#closeBtn{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:white;
    cursor:pointer;
}



/*Principal MSSG*/
.principal-box {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.principal-box img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #ccc;
}

.principal-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
}

/*Location & Google MAp*/

.reach-container{
display:flex;
gap:30px;
flex-wrap:wrap;
}

.reach-text{
flex:1;
min-width:300px;
}

.reach-map{
flex:1;
min-width:500px;
}

.map-btn{
display:inline-block;
background:#003366;
color:white;
padding:10px 15px;
border-radius:5px;
text-decoration:none;
margin-top:10px;
}

.map-btn:hover{
background:#0055aa;
}



/*Mission*/
.mission-list{
line-height:1.8;
padding-left:20px;
}

.mission-list li{
margin-bottom:8px;
}