/* Basic Reset */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

/* Body and Background */
body.home-page {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('img/background_img1.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    position: relative;
}

body.home-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Gray overlay with 50% opacity */
    z-index: 1;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Header */
.main_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent header */
    color: white;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 50px;
    
}

.logo img {
    height: 60px; /* Adjust the height as needed */
    width: auto; /* Maintain aspect ratio */
    
}

nav ul {
    display: flex;
    margin-right: 50px;
}

nav ul li a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
    margin-right: 20px;
}

nav ul li a:hover {
    color: #ff8012;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.landing-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.landing-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.apply-button {
    padding: 15px 30px;
    font-size: 1rem;
    color: black;
    background-color: wheat;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.apply-button:hover {
    background-color: #3b90ce;
    color: white;
    border: 2px solid white;
}

.contact {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact h1{
    color: black;
}

/*.contact_body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}*/

.contact_body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;

}

body.contact_body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Gray overlay with 50% opacity */
    z-index: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent footer */
    color: white;
    position: relative;
    z-index: 2;
}

footer p {
    margin: 0;
    font-size: 14px;
}