/* General Styling */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-padding-top: 70px; /* Adjust the value based on your nav bar height */
    scroll-behavior: smooth;
}

/* Hero Section */
.careers-hero-section {
    background-image: url('/images/home/careers/FF-DSC_0054.jpg'); /* Path to the background image */
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.careers-hero-overlay {
    margin-top: 80px;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    backdrop-filter: blur(2px);
    
    padding: 20px;
}

.hero-title {
    font-size: 2em;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
}

.hero-subtitle {
    font-size: 1.5em;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
}

/* Job Application Section */
.job-application-section {
    background-color: white;
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    color: #0c90e7;
}

.section-description {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #333333d4;
}



/* Footer Styling */
footer {
    padding: 20px;
    text-align: center;
    background-color: #333;
    color: white;
}


/* ///////////////// FOOTER ADDRESS STYLING  ////////////////// */
.footer-address p {
    text-align: center;
    margin-top: 20px;
    
    font-size: 1.5em;
}

.footer-address a {
    color: #0ae1a4;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    
}

.footer-address a:hover {
    color: #fbff00;
    filter: drop-shadow(0 0 5px rgb(1, 1, 1));
}

.footer-copyright {
    margin-top: 30px;
   
}