body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    text-align: center;
    padding: 10px 10px;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header img.top-left {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 135px;
}

header img.top-right {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 200px;
}

/* Add your CSS styles here */

#scroll_news {
    font-family: Arial, sans-serif;
    font-weight: bold;
    padding: 10px 0 5px 0;
    background-color: rgba(128, 128, 128, 0); /* Ensures compatibility with older browsers */
    width: 100%;
    position: relative;
}
  
nav.centered {
    text-align: center;
    padding: 10px;
    background-color: #007bff;
    color: white;
    margin-top: 120px; /* Ensure this is below the fixed header */
}

nav a {
    color: black;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

nav .dropdown {
    display: inline-block;
    position: relative;
}

nav .dropbtn {
    background: none;
    border: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

nav .dropdown:hover .dropdown-content {
    display: block;
}

nav .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

nav .dropdown-content a:hover {
    background-color: #ddd;
}

nav .dropdown-content .dropdown {
    position: relative;
}

nav .dropdown-content .dropdown .dropdown-content {
    display: none;
}

nav .dropdown-content .dropdown:hover .dropdown-content {
    display: block;
    left: 100%;
    top: 0;
}

nav .dropdown-content .dropdown:hover .sub-dropdown {
    display: block;
}

.marquee {
    background-color: #ffc107;
    color: black;
    padding: 10px;
    font-weight: bold;
}

.banner {
    position: relative;
    text-align: center;
    color: white;
}

.banner img {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 4em;
}

.overview-box {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.overview-content {
    flex: 1;
}

.carousel {
    flex: 1;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

footer .footer-left a {
    color: white;
    margin: 0 5px;
    text-decoration: none;
}

footer .footer-right {
    text-align: right;
}
