
/*  For All Of The Pages */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}


/* Home Page */




.tagline{
   font-size: 1.5em;
   color: #ff6b35;
   margin-bottom: 20px;
   font-weight: 300;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0 , 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}


.nav-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a{
    font-size: 1.8em;
    font-weight: bold;
    color: #ff6b35;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item{
    display: flex;
    align-items: center;
}

.nav-link{
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active{
    color: #ff6b35;
    background: rgba(255, 107, 53 , 0.1)
}


.hamburger{
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar{
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2){
    opacity: 0;
}

.hamburger.active .bar:nth-child(1){
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3){
    transform: translateY(-9px) translateX(-45deg) ;
}




.announcement{
    font-size: 1.4em;
    color: #ff6b35 ;
    font-weight: bold;
    margin-bottom: 45px;
    padding: 20px;
    border: 2px solid #ff6b35;
    border-radius: 10px;
    background: rgba(255, 107, 53 , 0.1);
}



/* About Page*/



.about-hero-heading{
    text-align:center; 
    font-family: Arial, Helvetica, sans-serif;
    color: black; 
    font-size: 85px;
}





.moved-text{
    position: absolute ;
    text-align: center ;
    top: 10%;
    left: 15% ;
font-size: 2.1875rem; }




.paragraph{
    position: absolute;
    top: 40%;
    left: 15%;
    text-align: center;
    font-size: 2.1875rem ;
}



.positioned-image{
    position: relative;
    display: block;
    left: 100px;
    width: 300px;
    z-index: 1 ;
  }





/* news section */



.hero-title{
    text-align:center; 
    font-family: Arial, Helvetica, sans-serif;
    color: black; 
    font-size: 75px;
}



