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



/* ===== NAVBAR ===== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height: 100px;
    background:#0f172a;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    z-index:1000;
    transition:all 0.3s ease;
}

/* Sticky Effect */
.navbar.scrolled{
    background:#0b1220;
    padding:8px 40px;
    box-shadow:0 6px 20px rgba(0,0,0,0.25);
}

/* Logo */
.logo-section{
    display:flex;
    flex-direction:column;
}

.logo-img{
    height:50px;
    width:auto;
    border-radius: 100px;
}

.motto{
    font-size:12px;
    color:#cbd5e1;
}

/* Navigation Links */
.nav-links{
    display:flex;
    gap:25px;
    align-items:center;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:15px;
    transition:0.3s;
}

.nav-links a:hover{
    color:#38bdf8;
}

/* Confidential */
.confidential{
    border-left:1px solid #334155;
    padding-left:20px;
    margin-left:10px;
    display:flex;
    gap:20px;
}

/* Menu Buttons */
.menu-btn{
    display:none;
    font-size:24px;
    cursor:pointer;
}

.close-btn{
    display:none;
}

/* MOBILE */
@media(max-width:768px){

    .navbar{
        justify-content:center;
        padding:15px 20px;
    }

    .logo-section{
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        align-items:center;
        text-align:center;
    }

    .logo-img{
        height:40px;
    }

    .menu-btn{
        display:block;
        position:absolute;
        right:20px;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:100%;
        height:100vh;
        background:#0f172a;
        flex-direction:column;
        align-items:flex-start;
        padding:30px;
        transition:0.4s;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links a{
        width:100%;
        padding:15px 0;
        border-bottom:1px solid #1e293b;
        font-size:16px;
    }

    .confidential{
        border:none;
        padding-left:0;
        margin-left:0;
        flex-direction:column;
        width:100%;
    }

    .close-btn{
        display:block;
        font-size:28px;
        align-self:flex-end;
        margin-bottom:20px;
        cursor:pointer;
    }
}

/* Content */
.content{
    padding-top:120px;
    text-align:center;
}
/* NAVBAR */


/* MOBILE */

@media(max-width:768px){

  nav{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero h2{
    font-size:28px;
  }

}





/* footer  */

.footer{
background-image:url("/home_images/jharschool4.png");
background-size:cover;
background-position:center;
color:rgb(255, 221, 221);
padding:50px 20px;
position:relative;
}

.footer::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
}

.footer *{
position:relative;
z-index:2;
}


.footer-top{
padding:50px 20px;
max-width:1200px;
margin:auto;
}

.footer-brand{
text-align:center;
margin-bottom:40px;
}

.footer-brand h2{
font-size:30px;
color:#38bdf8;
margin-bottom:10px;
}

.footer-brand p{
color:#cbd5f5;
max-width:600px;
margin:auto;
}

.footer-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.footer-col h3{
margin-bottom:15px;
font-size:18px;
border-bottom:2px solid #38bdf8;
display:inline-block;
padding-bottom:5px;
}

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

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

.footer-col a{
text-decoration:none;
color:#cbd5f5;
font-size:14px;
transition:0.3s;
}

.footer-col a:hover{
color:#38bdf8;
padding-left:5px;
}

.footer-col p{
font-size:14px;
color:#cbd5f5;
}

.social{
margin-top:10px;
}

.social a{
margin-right:10px;
font-size:20px;
text-decoration:none;
color:white;
}

.footer-bottom{
border-top:1px solid #1e293b;
padding:15px;
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
}

.footer-bottom p{
font-size:14px;
color:#94a3b8;
}

#topBtn{
background:#38bdf8;
border:none;
padding:8px 12px;
cursor:pointer;
border-radius:5px;
font-size:16px;
}

@media (max-width:768px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-bottom{
flex-direction:column;
gap:10px;
}

.footer-col h3{
border:none;
}

}

/* footer ends here */



body {
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.containerT {
    max-width: 800px;
    margin: auto;
    margin-top: 120px;
}

.main-heading {
    text-align: center;
    margin-bottom: 15px;
}

/* Scrollable Box */
.scroll-box {
    height: 400px;   /* fixed height */
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ddd;
}

/* Item style */
.item {
    padding: 8px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .scroll-box {
        height: 300px;
    }
    .item {
        font-size: 14px;
    }
}





.munda-section {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Image */
.munda-image {
    flex: 1;
}

.munda-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Credit */
.credit {
    font-size: 12px;
    text-align: center;
    color: #666;
    margin-top: 5px;
}

/* Text */
.munda-text {
    flex: 1;
}

.munda-text h2 {
    margin-bottom: 10px;
}

.munda-text p {
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .munda-section {
        flex-direction: column;
    }
}



body {
    margin: 0;
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
    background: #f5f7fa;
}

.admin-section {
    padding: 50px 20px;
}

.admin-container {
    max-width: 1100px;
    margin: auto;
}

.title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.intro {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Card */
.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

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

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: #666;
}

/* Extra Text */
.extra {
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 22px;
       
    }
}





.dharma-section {
    padding: 50px 20px;
}

.container {
    max-width: 900px;
    margin: auto;
}

.title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
}

/* Card */
.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    line-height: 1.8;
    font-size: 17px;
    color: #333;
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 22px;
    }

    .card {
        padding: 18px;
        font-size: 15px;
    }
}