/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Navigation */
nav ul {
    list-style-type: none;
    padding: 10px;
    background-color: #004080;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Breadcrumb */
.breadcrumb {
    padding: 10px 20px;
    background-color: #e0e0e0;
    font-size: 14px;
    text-align: center;
}

.breadcrumb a {
    text-decoration: none;
    color: #0073e6;
}

.highlight {
    font-weight: bold;
    color: #ff6600;
}

/* Container */

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
 /* Make images responsive */
img {
    max-width: 100%;  /* Ensures the image never exceeds the container width */
    height: auto;     /* Keeps the image's aspect ratio */
    display: block;   /* Removes extra space below the image */
    margin: 0 auto;   /* Centers the image */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Section Headers */
h1, h2 {
    color: #004080;
    text-align: center;
}

h2 span.highlight {
    color: #ff6600;
}

/* Why Work With Us Section */
.why-work {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap; /* Makes it mobile-friendly */
}

.why-work img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.why-work ul {
    list-style-type: none;
    padding: 0;
    max-width: 500px;
    text-align: left;
}

.why-work ul li {
    padding: 10px 0;
    font-size: 16px;
}

.why-work ul li strong {
    color: #ff6600;
}

/* Job Openings Section */
.job-openings {
    margin-top: 40px;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 8px;
}

.job-openings h2 {
    text-align: center;
    color: #004080;
}

.job-openings h3 {
    color: #ff6600;
}

.job-title {
    font-size: 20px;
    font-weight: bold;
    color: #004080;
    text-decoration: none;
}

.job-title:hover {
    color: #ff6600;
}

.job-openings p {
    font-size: 16px;
    margin: 8px 0;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.chat-widget img {
    width: 50px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        display: block;
        text-align: center;
        padding: 10px;
    }

    .why-work {
        flex-direction: column;
        text-align: center;
    }

    .why-work img {
        width: 100%;
    }

    .why-work ul {
        max-width: 100%;
        text-align: center;
    }

    .container {
        width: 95%;
        padding: 15px;
    }

    .breadcrumb {
        font-size: 12px;
        padding: 8px;
    }

    .chat-widget {
        bottom: 10px;
        right: 10px;
    }

    .chat-widget img {
        width: 40px;
    }
}
