html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    padding-bottom: 30px;
}

/* Navbar styles */
.navbar {
    background-color: #0056b3;
    color: white;
    margin-bottom: 20px;
    list-style-type: none;
}
.navbar-brand, .navbar-nav .nav-link {
    color: white;
}
.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #ccc; 
}
a.nav-link {
    color: #444;
}

/* Section styles */
.division {
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease-in-out;
}

.division:hover {
    transform: scale(1.02);
}

.division:hover > .banner-wrapper {
    background-position: center 15% !important;
    transition: 3s;
    
}

.banner-wrapper {
    background-size: cover;
    height: 300px;
    transition: 0.5s;
}

/* Footer styles */
.footer {
    padding: 20px 0;
    background-color: #e9ecef; 
    border-top: 1px solid #dee2e6;
    flex-shrink: 0;
}

.footer h5 {
    color: #0056b3; 
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer ul li a:hover {
    color: #0056b3; 
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        text-align: center;
    }
    .footer {
        text-align: center;
    }
}

/* this website is an arts project and does not represent an actual company or institute */