*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

section{
    width: 100%;
    height: 100vh;
    background-image: url(image/bg.png);
    background-size: cover;
    background-position: center;
}

section nav{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 0 10px #e1420d;
    background-color: #e1420d;
    
    position: fixed;
    left: 0;    
    z-index: 2;
    
}


section nav .logo img{
    width: 80px;
    cursor: pointer;
    margin: 10px 0; 
}

section nav ul{
    list-style: none;
}


section nav li{
    display: inline-block;
    flex-wrap: nowrap;
    padding: 0 20px;
}


section nav li a{
    text-decoration: none;
    color: black;
}

section nav li a:hover{
    color:#ffffff;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
}

section nav .social_icon i{
    margin: 0 8px;
    font-size: 30px;
}
section nav .social_icon button{
    margin: 0 8px;
    font-size: 12px;
    padding: 1px;
    position: center;
    bottom: 4px;
    left: 40px;
}



section nav .social_icon i:hover{
    color: #ffffff;
    cursor: pointer;
}


section .main{
    display: flex;
    flex-wrap: wrap;
    
    align-items: center;
    justify-content: space-around;
    position: relative;
    top: 10%;
}


section .main h1{
    position: relative;
    font-size: 50px;
    top: 80px;
    left: 15px;
}

section .main h1 span{
    color: #e1420d;
}


section .main p{
    text-align: justify;
    flex-wrap: wrap;
    
    position: relative;
    top: 125px;
    left: 15px;
    line-height: 25px;
    width: 600px;
}

section .main .main_tag .main_button{
    background: #e1420d;
    padding: 10px 20px;
    position: relative;
    left: 15px;
    top: 200px;
    text-decoration: none;
    color: #fff;
    border-radius: 5%;

}

section .main .main_img img{
    width: 70vh;
    position: relative;
    top: 100px;
    left: 30px;
    margin-top: 100px;
    margin-bottom: 50px;
    max-width: 100vh;
    height: auto;

}


@media screen and (max-width: 800px) {
    .left, .main, .right {
      width: 100%;
    }
  }

/*Services*/

.services{
    width: 100%;
    height: auto;
    margin: 35px 0;
    margin-top: 150px;
    margin-bottom: 400px;
    
}

.services .services_box{
    width: 95%;

    display: flex;
    flex-wrap: wrap;
    flex: 1;
    margin: 0 auto;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 10px;
}



.services .services_box .services_card{
    
    text-align: center;
    width: 280px;
    min-width:250px;
    height: auto;
    box-shadow: 0 0 8px #e1420d;
    padding: 15px 10px;
    margin-bottom: 20px;
    border-radius: 10px;

}


.services .services_box .services_card i{
    color: #e1420d;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 30px;

}

.services .services_box .services_card h3{
    margin-bottom: 10px;
    margin-top: 0px;
}









.end{
    display: flex;
    width: 100%;
    justify-content: space-around;
    text-align: center;

}


.end  h4{
    color: #e1420d;
    text-align: center;
    width: 100%;
    top: 30px;
    bottom: 50px;
    position: relative;
    padding-bottom: 30px;
    
    
}

.book_images{
    width: 50%;
    height: 1px;
    display: flex;

}

.book_images .book img{
    height:200px;
    position: relative;
    right: 500px;
    bottom: 140px;
    padding-right: 10px;
}


section .history h1{
    height: 30px;
}




/*Default light mode*/
/* Light mode (default) */
body {
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
  }
  
  /* Dark mode */
  body.dark-mode {
    background-color: #121212;
    color: #ffffff;
  }
  
 