/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #ffffff; /* White background */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #0a2240; /* Dark Blue */
    padding: 10px 0;
    position: relative;
}

.logo {
    float: left;
}

.logo img {
    max-height: 60px;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    position: relative;
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff; /* White text */
    font-weight: bold;
    padding: 10px;
    display: block;
}

nav ul li:hover > a {
    background-color: #f0c600; /* Gold hover effect */
    color: #0a2240; /* Dark Blue text on hover */
}

nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%; /* Position below the parent li */
    left: 0;
    background-color: #0a2240; /* Dark Blue */
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    z-index: 999;
}

nav ul li:hover .dropdown {
    display: block;
}

nav ul li .dropdown li {
    margin: 0;
}

nav ul li .dropdown li a {
    padding: 10px;
    color: #ffffff; /* White text */
    font-weight: normal;
}

nav ul li .dropdown li a:hover {
    background-color: #f0c600; /* Gold hover effect */
    color: #0a2240; /* Dark Blue text on hover */
}

/* Hero Section Styles */
.hero {
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    max-width: 100%;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; /* Adjust based on the number of slides */
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    vertical-align: top;
}

.caption {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #ffffff; /* White text */
}

.caption h2 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.caption p {
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: #ffffff; /* White arrows */
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    user-select: none;
    background-color: rgba(10, 34, 64, 0.5); /* Semi-transparent Dark Blue */
}

.prev {
    left: 20px;
    transform: translateY(-50%);
}

.next {
    right: 20px;
    transform: translateY(-50%);
}

.prev:hover, .next:hover {
    background-color: rgba(10, 34, 64, 0.8);
}

/* CTA Button Styles */
.cta-button {
    background-color: #f0c600; /* Gold */
    color: #0a2240; /* Dark Blue text */
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #d1aa00; /* Darker Gold on hover */
    color: #ffffff; /* White text on hover */
}

/* Main Content Styles */
main {
    padding: 60px 0;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0a2240; /* Dark Blue headings */
}

.info-section p {
    font-size: 18px;
    line-height: 1.6;
	margin-bottom: 20px; /* Adjust the value as needed */
    color: #333333; /* Dark Gray text */
}

.info-section ul,
.info-section ol {
    margin-left: 20px;           /* Adjusts the space outside the list */
    padding-left: 20px;          /* Adjusts the space inside the list */
    list-style-position: outside; /* Positions the marker outside the content box */
    font-size: 18px;
    line-height: 1.6;
	margin-bottom: 20px; /* Adjust the value as needed */
    color: #333333; /* Dark Gray text */
}
/* Change the bullet color to blue */
.info-section li::marker {
    color: blue;
}

/* Footer Styles */
footer {
    background-color: #0a2240; /* Dark Blue */
    color: #ffffff; /* White text */
    padding: 20px 0;
}

.footer-left {
    float: left;
}

.footer-left p {
    font-size: 14px;
}

.footer-right {
    float: right;
}

.footer-right a {
    margin-left: 15px;
}

.footer-right img {
    width: 24px;
    height: 24px;
}

.agency-links a,
.agency-links a:link,
.agency-links a:visited {
    color: #ffffff; /* White color for unvisited and visited links */
    text-decoration: none; /* Remove underline */
}    

.agency-links a:hover {
    color: #f0c600 !important; /* White color on hover */
    text-decoration: underline; /* Optional underline on hover */
}

.agency-links p {
        margin-bottom: 20px; /* Adjust the value as needed */
    }


footer a:hover,
footer a:active {
    color: #f0c600; /* Gold color on hover and active state */
    text-decoration: underline; /* Optional: underline on hover */
}
/* Clearfix */
header::after,
footer::after,
.container::after {
    content: "";
    display: table;
    clear: both;
}

/* Additional Styles */

/* Links */
a {
    color: #0a2240; /* Dark Blue links */
}

a:hover {
    color: #f0c600; /* Gold on hover */
}

/* Buttons */
button {
    background-color: #f0c600; /* Gold */
    color: #0a2240; /* Dark Blue text */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #d1aa00; /* Darker Gold on hover */
    color: #ffffff; /* White text on hover */
}
body {
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        background-color: #0a2240; /* Dark Blue */
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        display: none;
    }
    nav ul li {
        margin: 0;
    }
    nav ul li a {
        padding: 10px;
        border-bottom: 1px solid #f0c600; /* Gold separator */
    }
    nav ul li:hover > a {
        background-color: #f0c600;
        color: #0a2240;
    }
    nav ul li .dropdown {
        position: static;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
        color: #ffffff;
        font-size: 24px;
        padding: 10px;
    }
    nav.active ul {
        display: flex;
    }
    /* Clearfix for mobile menu */
    header::after {
        content: "";
        display: block;
        clear: both;
    }
} 


/* Styles for Services Table */
.services-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin-top: 20px;
}

.services-table td {
    padding: 20px;
    vertical-align: top;
    width: 25%; /* Ensures four equal columns */
}

.services-table img {
    width: 100%;
    max-width: 150px; /* Adjust image size */
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.services-table img:hover {
    transform: scale(1.05);
}

.services-table p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

.services-table a {
    display: inline-block;
    margin-top: 5px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.services-table a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .services-table td {
        width: 50%; /* Two items per row on tablets */
    }
}

@media screen and (max-width: 768px) {
    .services-table td {
        width: 100%; /* One item per row on mobile */
        display: block;
    }
}

/* Styles for Employment Table */
.employment-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin-top: 20px;
}

.employment-table td {
    padding: 20px;
    vertical-align: top;
    width: 50%; /* Two equal columns */
}

.employment-table img {
    width: 100%;
    max-width: 200px; /* Adjust image size */
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.employment-table img:hover {
    transform: scale(1.05);
}

.employment-table p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

.employment-table a {
    display: inline-block;
    margin-top: 5px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.employment-table a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .employment-table td {
        width: 100%; /* Stack items vertically on smaller screens */
        display: block;
    }
}


/* CSS for the guiding principles list */
.guiding-principles-list {
    margin-left: 40px; /* Indent the list */
    list-style-type: disc; /* Use default bullet style */
}

.guiding-principles-list li {
    margin-bottom: 10px; /* Optional: add space between list items */
}

/* Change the bullet color to blue */
.guiding-principles-list li::marker {
    color: blue;
}

.guiding-principles-list li {
    font-size: 16px;
    line-height: 1.5;
}

.guiding-principles-list li:hover {
    color: #333; /* Change text color on hover */
}