:root {
    --primary-color: #0077b6; /* Updated primary color */
    --secondary-color: #00a8e8; /* Updated secondary color */
    --background-color: #f1f9ff; /* Updated background color */
}
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.navbar {
    background-color: var(--primary-color) !important;
}
.navbar-brand, .nav-link {
    color: white !important;
}
.hero {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.container {
    flex-grow: 1; /* Pushes the footer down */
}

.footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* Ensures the footer is at the bottom */
    width: 100%;
}
#slideshow {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 600px;
    overflow: hidden;
}
#slideshow img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    display: none;
}
.card-img-top {
    max-height: 150px; /* Adjust this value to suit your design */
    width: auto;
    object-fit: contain;
    display: block;
    margin: 10px auto; /* Centers the logo */
    padding: 10px;
}
