*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',Arial;
}

body{
background:#eef2f7;
color:#333;
line-height:1.6;
}

/* REMOVE LINK STYLE */

a{
text-decoration:none;
color:inherit;
}

/* CONTAINER */

.container{
width:92%;
max-width:1250px;
margin:auto;
}

/* TOP BAR */

.topbar{
background:#243447;
color:white;
text-align:center;
padding:6px;
font-size:13px;
}

/* HEADER */

.header{
background:white;
padding:18px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}


/* =========================
   SLIDER
========================= */

/* SLIDER FIX */

.slider{
width:100%;
height:360px;
position:relative;
overflow:hidden;
margin-top:15px;
border-radius:6px;
}

.slide{
width:100%;
height:360px;
object-fit:cover;
display:none;
position:absolute;
top:0;
left:0;
}

/* TITLES */

h2{
margin-top:40px;
margin-bottom:15px;
font-size:22px;
font-weight:600;
}

/* =========================
   STATS
========================= */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin-top:25px;
}

.stat{
background:#2f7be7;
color:white;
padding:25px;
border-radius:6px;
text-align:center;
font-size:18px;
font-weight:600;
}

/* =========================
   SERVICES
========================= */

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:8px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:.3s;
}

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

/* =========================
   NOTICE
========================= */

.notice-board{
background:white;
padding:20px;
border-left:6px solid #1e63c3;
border-radius:6px;
}

.notice-board li{
padding:8px 0;
border-bottom:1px solid #eee;
}

/* =========================
   OFFICERS
========================= */

.officer-grid{
display:flex;
gap:30px;
flex-wrap:wrap;
}

.officer{
background:white;
padding:15px;
border-radius:8px;
text-align:center;
}

.officer img{
width:220px;
height:230px;
object-fit:cover;
border-radius:6px;
}

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

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

.gallery-grid img{
width:100%;
border-radius:6px;
}

/* =========================
   FAQ
========================= */

details{
background:white;
padding:12px;
margin-top:10px;
border-radius:6px;
}



/* =========================
   CONTACT PAGE
========================= */

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

.contact-info,
.contact-form{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:6px;
margin-bottom:15px;
}

.contact-form button{
background:#1e63c3;
color:white;
padding:12px 20px;
border:none;
border-radius:6px;
cursor:pointer;
}

/* =========================
   DEPARTMENTS
========================= */

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

.department-card{
background:white;
padding:35px;
border-radius:12px;
text-align:center;
font-size:20px;
font-weight:600;
color:#333;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
display:flex;
align-items:center;
justify-content:center;
transition:0.3s;
}

.department-card:hover{
background:#1e63c3;
color:white;
transform:translateY(-6px);
}

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

@media(max-width:768px){

.stats{
grid-template-columns:repeat(2,1fr);
}

.services-grid{
grid-template-columns:repeat(2,1fr);
}

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

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.slider{
height:250px;
}

.slide{
height:250px;
}

}