*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.navbar{
    width: 100%;
    background: rgb(233, 89, 12) ;
}
.navbar-brand{
    font-family: 'Artifika';
    font-size: 40px;
    font-weight: bold;
    margin-left: 50px;
    color: white;
}
.navbar-nav{
    margin-left: 50px;
}
.nav-item {
    margin-left: 25px;
    margin-right: 25px;
}
.nav-link{
    font-family: 'Alkatra';
    font-size: 16px;
    color: white;   
}
.nav-link:hover{
    border-bottom: 2px solid black;
    color: black;
}
.dropdown-item{
    font-family: 'Alkatra';
    font-size: 16px;
    color: white; 
}
.dropdown-item:hover{
    background-color: rgb(142, 142, 225);
    color: black; 
}
.active{
    border-bottom: 2px solid rgba(29, 20, 204, 0.986);
}
.parallax {
    background-image: url("../image/a1\ \(2\).jpg"); /* Replace with your image */
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
    /* Fix for mobile devices (background-attachment: fixed doesn’t work well) */
 @media (max-width: 768px) {
    .parallax {
     background-attachment: scroll;
    }
}
.text-muted{
    font-family:'Alkatra' ;
}
.overlay {
    /* background: rgba(0, 0, 0, 0.6); */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}