*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav-bar li{
    list-style: none;
}
.nav-bar li a{
    text-decoration: none;
    color: white;
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 500;
}
.nav-bar li:hover{
    transform: translateY(-5px);
}
.nav-bar{
    display: flex;
    gap: 20px;
}
.navigation-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 50px;
    background-color: #540000;
}
.banner-img{
    display: flex;
    width: 100%;
}
.logo-img{
    height: 100px;
}
.banner-img{
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-image: url(./assets/images/college\ image].jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99999;
    
}
.banner-img::before{
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background-image: linear-gradient(rgba(0, 0, 0, 0.76),rgba(255, 255, 255, 0));
    z-index: -1;
    background-size: fill;
    
    
} 
.banner-img h1{
    font-size: 32px;
    color: white;
    margin-top: -50px;
    font-family: "Poppins";
}
.banner-img p{
    font-family: "Poppins";
    color: white;
    text-align: center;
}
.about-section{
    background-color: #540000;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 50px 150px;
}
.about-section h1{
    font-family: "Poppins";
    font-size: 32px;
}
.about-section p{
    font-family: "Poppins";
    text-align: center;
}
.about-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-list li{
    font-family: "Poppins";
}
.about-dept,.obj-dept,.vision-dept,.mission-dept{
    background-color: #540000;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 10px 150px;
}
.about-dept h1{
    font-family: "Poppins";
    font-size: 32px;
}
.obj-dept h2,.vision-dept h2,.mission-dept h2{
    font-family: "Poppins";
}
.obj-list li{
    font-family: "Poppins";
}
.vision-dept,.mission-dept{
    font-family: "Poppins";
    text-align: center;
}
/* faculty startimng */
.faculty-content h1{
    text-align: center;
    font-family: "Poppins";
    margin: 20px;
    font-size: 32px;

}
.card-content{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.card-content-1{
    display: flex;
    justify-content: space-around;
}
.card{
    width: 250px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #540000;
}
.card img{
    width: 190px;
}
.card-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Poppins";
    font-weight: 500;
}
/* Syllabus starting  */
.syllabus h2{
    
}
/* feedback starting */
#form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 50px;
    border: 1px solid;
    justify-content: center;
    align-items: center;
}
#form div{
    display: flex;
    gap: 5px;
}
.feedback{
    display: flex;
    height: 80vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#form h1{
    font-family: "Poppins";
}
#form div label{
    font-family: "Poppins";
}
#form div button{
    background-color: green;
    border: none;
    padding: 10px 50px;
    color: white;
    font-family: "Poppins";
}


