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

body{
  background:#f4f6f9;
  
}

/* ===== 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/jharschool.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 */



/* karma start */

/* ===== Festival Section Style ===== */

.festival-section{
  padding: 160px 20px;
  background: linear-gradient(135deg,#f7fdf9,#eef7f2);
}

.festival-container{
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Image */
.festival-img img{
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* Content */
.festival-content h2{
  font-size: 30px;
  margin-bottom: 12px;
  color: #0b3d2e;
}

.festival-content p{
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #333;
}

.festival-content ul{
  margin-top: 10px;
  margin-bottom: 15px;
  padding-left: 18px;
}

.festival-content li{
  margin-bottom: 6px;
}

.festival-btn{
  display: inline-block;
  padding: 10px 18px;
  background: #0b3d2e;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.festival-btn:hover{
  background: #145c43;
}

/* ===== Responsive ===== */

@media(max-width:900px){
  .festival-container{
    flex-direction: column;
    text-align: center;
  }

  .festival-content ul{
    text-align: left;
  }
}
/* karma ends  */


/* ===== pholshopy Subsection Style ===== */

.festival-subsection{
  margin-top: 25px;
  padding: 18px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.festival-subsection h3{
  margin-bottom: 10px;
  color: #0b3d2e;
  font-size: 22px;
}

.festival-subsection p{
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #333;
}

/* Mobile Responsive */
@media(max-width:600px){
  .festival-subsection{
    padding: 15px;
  }

  .festival-subsection h3{
    font-size: 20px;
  }
}

/* <!-- ===== Karama Philosophy End ===== --> */


/* karma refrences  */


/* ===== Festival Reference Section ===== */

.festival-ref-section{
  padding: 60px 20px;
  background: linear-gradient(135deg,#f3f7ff,#eef3fb);
}

.festival-ref-container{
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.festival-ref-container h2{
  font-size: 30px;
  margin-bottom: 30px;
  color: #0b3d2e;
}

/* Boxes */
.ref-box{
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  text-align: left;
}

.ref-box h3{
  margin-bottom: 10px;
  color: #0b3d2e;
}

.ref-box ul{
  padding-left: 18px;
}

.ref-box li{
  margin-bottom: 6px;
  line-height: 1.6;
}

/* Responsive */
@media(min-width:768px){
  .festival-ref-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    text-align: left;
  }

  .festival-ref-container h2{
    grid-column: span 3;
    text-align: center;
  }
}





/* karma refrences ends here */


/* karam song links */

/* ===== Scrollable Song Box ===== */

.song-scroll-box{
  max-height: 210px;   /* 👉 fixed height (change if needed) */
  overflow-y: auto;
  padding: 8px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

/* Song Item */
.song-scroll-box a{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
  text-decoration: none;
  color: #0b3d2e;
  background: #ffffff;
  border-radius: 6px;
  transition: 0.25s;
  font-size: 15px;
}

.song-scroll-box a:hover{
  background: #e6f4ec;
}

/* Number */
.song-num{
  font-weight: 600;
  min-width: 22px;
}

/* Title */
.song-title{
  flex: 1;
}

/* Icon */
.song-icon{
  font-size: 16px;
}

/* Scrollbar Style */
.song-scroll-box::-webkit-scrollbar{
  width: 6px;
}

.song-scroll-box::-webkit-scrollbar-thumb{
  background: #b7d7c6;
  border-radius: 10px;
}

/* ===== Responsive ===== */

@media(max-width:600px){

  .song-scroll-box{
    max-height: 170px;
    padding: 6px;
  }

  .song-scroll-box a{
    font-size: 14px;
    padding: 7px;
  }

  .song-icon{
    font-size: 14px;
  }

}

/* karam songs link  */



/* ===== Research Section ===== */

.festival-research-section{
  padding: 60px 20px;
  background: linear-gradient(135deg,#f7faff,#eef4fb);
}

.festival-research-container{
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.festival-research-container h2{
  font-size: 30px;
  margin-bottom: 25px;
  color: #0b3d2e;
}

/* Card */

.research-card{
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  text-align: left;
}

.research-card h3{
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b3d2e;
}

.research-card h3 span{
  font-weight: normal;
}

.research-meta{
  font-size: 14px;
  margin-bottom: 12px;
  color: #555;
}

.research-card p{
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Button */

.research-btn{
  display: inline-block;
  padding: 9px 16px;
  background: #0b3d2e;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.research-btn:hover{
  background: #145c43;
}

/* Mobile */

@media(max-width:600px){

  .festival-research-container h2{
    font-size: 24px;
  }

  .research-card{
    padding: 16px;
  }

}

/*  research section  ends  */