* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.navbar {
    background-color: #1e3a5f;
	
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 8px 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 1010;
}

.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 5px;
    gap: 9px;
	z-index: 1011;
}

.menu > li {
    position: relative;
    padding: 8px 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.menu > li:hover {
    background-color: #2a4a6e;
    transform: translateY(-2px);
    border-radius: 10px;
}

.menu > li > a {
    color: white;
    text-decoration: none;
    display: block;
}

/* Dropdown Menu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2a4a6e;
    min-width: 160px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1012;
    border-radius: 8px;
    overflow: hidden;
}

.submenu li {
    padding: 8px 12px;
    color: white;
    transition: background 0.3s ease;
}

.submenu li:hover {
    background: #3a5a7e;
}

.submenu li a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.menu > li:hover .submenu {
    display: block;
	z-index: 1015;
}

/* Left Submenu */
.left-submenu {
    width: 200px;
    background: #2a4a6e;
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    margin-right: 20px;
    flex-shrink: 0;
}

.left-submenu ul {
    list-style: none;
    padding: 0;
}

.left-submenu ul li {
    padding: 8px 10px;
    transition: background 0.3s ease;
}

.left-submenu ul li:hover {
    background: #3a5a7e;
}

.left-submenu ul li a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.breadcrumb a {
    color: #1e3a5f;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Container */
.container {
    flex-grow: 1;
    max-width: 1200px;
    margin: 20px 20px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

h2 {
    font-size: 28px;
    color: #1e3a5f;
    margin-bottom: 20px;
    font-weight: 700;
}

.content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        text-align: center;
    }

    .submenu {
        position: static;
        box-shadow: none;
        background: #2a4a6e;
        border-radius: 0;
    }

    .menu > li {
        padding: 10px;
    }

    .menu > li:hover {
        transform: none;
    }

    .left-submenu {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .container {
        padding: 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1e3a5f;
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.footer-row {
    margin-bottom: 15px;
}

.columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    text-align: left;
    padding: 0 10px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    box-sizing: border-box;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links li a:hover {
    color: #ffcc00;
    transform: translateX(5px);
}

.contact-info, .location-info {
    list-style: none;
}

.contact-info li, .location-info li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info li i, .location-info li i {
    color: #ffcc00;
}

.footer-column iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
}

.copyright {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .columns {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
        padding: 10px;
    }

    .footer-links li a:hover {
        transform: none;
    }

    .footer-column iframe {
        height: 150px;
    }
}

/*news-scroll */


/* Container for the scrolling matter and badge */
.scrolling-container {
    display: flex;
    align-items: center;
    background-color: #1e3a5f; /* Dark blue background */
    padding: 10px;
    color: white;
    overflow: hidden; /* Hide overflow for scrolling effect */
    position: relative;
    width: 100%; /* Adjust width as needed */
    max-width: 100%; /* Maximum width */
	z-index:1;
   
}

/* Badge styling */
.badge {
    background-color: #ffcc00; /* Yellow badge */
    color: #1e3a5f; /* Dark blue text */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 15px; /* Space between badge and text */
    white-space: nowrap; /* Prevent badge text from wrapping */
}

/* Scrolling text container */
.scrolling-text {
    flex: 1; /* Take remaining space */
    overflow: hidden; /* Hide overflow for scrolling effect */
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Scrolling text animation */
.scrolling-text p {
    display: inline-block;
    padding-left: 100%; /* Start text outside the container */
    animation: scroll-text 20s linear infinite; /* Reduced speed (20s) */
}

/* Keyframes for scrolling animation */
@keyframes scroll-text {
    0% {
        transform: translateX(100%); /* Start from the right */
    }
    100% {
        transform: translateX(-100%); /* Move to the left */
    }
}
