﻿
/* Main Structure */
.careers-page {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Job Search Section */
.job-search {
    background-color: white;
    text-align: center;
    padding: 50px 20px;
}

    .job-search h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

.search-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

    .search-bar input[type="text"] {
        padding: 15px;
        width: 300px;
        border: 1px solid #333;
        border-radius: 5px;
        font-size: 1em;
    }

    .search-bar button {
        padding: 15px 20px;
        background-color: #ff9900;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 1.2em;
        border-radius: 5px;
    }

/* Promotional Banner */
.promo-banner {
    background-color: #ffcc00;
    text-align: center;
    padding: 40px 20px;
    margin: 30px 0;
}

    .promo-banner .promo-content {
        max-width: 800px;
        margin: auto;
    }

    .promo-banner h2 {
        font-size: 2.5em;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .promo-banner a {
        background-color: #333;
        color: #fff;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 5px;
        display: inline-block;
        margin-top: 15px;
    }

/* Job Categories Section */
.job-categories {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
    color: #000; /* Override dark background for this section */
}

    .job-categories h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        font-weight: bold;
    }

.categories-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.category {
    background-color: #fff;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
}

    .category h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .category p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .category a {
        color: #007bff;
        text-decoration: underline;
        font-weight: bold;
    }

/* Explore Opportunities Section */
.explore-opportunities {
    padding: 60px 20px;
    text-align: center;
}

    .explore-opportunities h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        font-weight: bold;
    }

.explore-container {
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

.explore-item {
    width: 30%;
    text-align: center;
    /*background-color: #fff;*/
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .explore-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .explore-item h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .explore-item p {
        font-size: 1em;
        margin-bottom: 10px;
    }

    .explore-item a {
        color: #007bff;
        text-decoration: underline;
        font-weight: bold;
    }

/* Testimonial Section */
.testimonial {
   /* background-color: #f0f8ff;*/
    display: flex;
    padding: 50px 20px;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    /*margin: 50px auto;*/
    border-radius: 8px;
    color: #000; /* Override dark background for this section */
}

    .testimonial img {
        border-radius: 50%;
        width: 120px;
        height: 120px;
    }

.testimonial-text h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
}

.testimonial-text p {
    margin-top: 10px;
    font-size: 1em;
}

.testimonial-text a {
    color: #007bff;
    text-decoration: underline;
    font-weight: bold;
    display: inline-block;
    /*margin-top: 15px;*/
}

/* Call to Action Section */
.cta {
    /*background-color: #005a8b;*/
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

    .cta h2 {
        font-size: 2.5em;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .cta p {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

.cta-button {
    background-color: #ff9900;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2em;
}
