

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* default font, and others color */


.top_section{
    /* background-image: url(../img/School.jpeg); */
    height: 100vh;
    width: 100%;
    background-size: cover;
    position: relative;
    z-index: 0;
}
/* Header Section */

header{
    padding: 0% 10%;
    align-items: center;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.382);
    backdrop-filter: blur(5px);
}


header .logo_section img{
    height: 50px;

}
ul{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    
}
nav ul li{
    list-style: none;
}
ul li a{
    text-decoration: none;
    color: white;
    padding: 10px;
    border-radius: 5px;
    transition: 0.8s;
}
ul li a:hover{
    color: rgb(255, 255, 255);
    background-color: rgb(2, 156, 33);
}
ul li a:active{
    transition: 0.1s;
    color: rgb(251, 63, 69);
    
}

/* Mobile Navigation */
.nave_display{
    display: none;
}
.nav_icon{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nav_icon .nave_line_section{
    border-radius: 10px;
    width: 40px;
    height: 3px;
    background-color: rgb(255, 255, 255);
}

.nave_bar_content {
    display: none;
    position: fixed;
    top: 60px; /* Adjust based on your header height */
    background-color: rgba(0, 0, 0, 0.382);
    width: 100%;
    text-align: center;
    z-index: 1;
    gap: 20px;
}


.mobile_nave ul{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
    
}

.mobile_nave{
    padding: 20px 0px;
}
ul li{
    list-style: none;
}
ul li a{
    text-decoration: none;
    color: white;
    padding: 10px;
    border-radius: 5px;
    transition: 0.8s;
}
ul li a:hover{
    color: rgb(255, 255, 255);
    background-color: rgb(2, 156, 33);
}
ul li a:active{
    transition: 0.1s;
    color: rgb(251, 63, 69);
    
}




/* Navebar Active */
.nave_bar_content.active {
    display: block;
}

.nav_icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav_icon .nave_line_section {
    width: 30px;
    height: 3px;
    background-color: rgb(7, 0, 0);
}
.mobile_nave ui{
    display: flex;
    
}


/* Notice Bord Section */
.address_section img{
    z-index: -2;
    position: absolute;
    height: 100vh;
    width: 100%;
}

.address_section .content{
    top: 300px;
    position: relative;
    text-align: center;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(35deg,rgba(254, 255, 255, 0.365),rgba(71, 71, 71, 0.178));
    backdrop-filter: blur(10px);
    padding: 5%;
    border-radius: 10px;
    
}













/* CSS Responsive */





@media only screen and (max-width: 768px) {
    nav {
        display: none;
    }

    .nave_bar_content {
        display: none;
    } 

    .nave_display{
        display: block;
    }

  }



@media only screen and (max-width: 600px) {
    body {
      background-color: lightblue;
    }
    
   
  }

