/* careers section css */


.careers-hero {
    background: url('../assets/img/Career.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    text-align: right;
    padding: 80px 50px;
}

.careers-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: black;
    text-transform: uppercase;
}

.careers-hero p {
    color: black;
    font-size: 1.2rem;
    margin-top: 10px;
}


/* Careers Section */
.careers-section {
    font-family: "Poppins", sans-serif;
    background-color: #f9fafb;
    padding: 60px 20px;
    color: #162d42;
}

.careers-left {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 15px;
    padding: 40px 50px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.careers-left h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    color: #162d42;
}



/* Intro Paragraph */
.career-intro {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
}

.career-intro a {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.career-intro a:hover {
    text-decoration: underline;
}

/* Job List */
.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-list li {
    background: #f1f5f9;
    margin-bottom: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.career-list li:hover {
    background: #007bff;
    transform: translateY(-2px);
}

.career-list li a {
    display: block;
    padding: 14px 18px;
    color: #162d42;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.career-list li:hover a {
    color: white;
}




