body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(230, 230, 230);
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;/* rgb(220, 218, 218)*/
    padding: 10px 20px;
    color: rgb(0,128,128);
}

.navbar a {
    color: rgb(0,128,128);
    text-decoration: none;
    margin: 0 15px;
    font-size: 19px;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: none;
}

.logo img {
    height: 40px;
    cursor: pointer;
}

/* Dropdown styling */
.dropdown {
position: relative;
display: inline-block;
background-color: whitesmoke;
border-radius: 3px;
margin-right: 4px;
}

.dropdown-content {
display: none;
position: absolute;
background-color: rgb(0, 128, 128);
min-width: 200px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
padding-top: 2rem;
padding-bottom: 2rem;
}

.dropdown-content a {
color: white;
padding: 10px 15px;
display: block;
text-align: left;
font-size: 16px;
font-weight: lighter;
width: 260px;
}

.dropdown-content a:hover {
/*background-color: white; */
color:rgb(13, 0, 128) ;

}

.dropdown:hover .dropdown-content {
display: block;
}

/* Sub-dropdown styling */
.sub-dropdown {
position: relative;
}

.sub-dropdown-content {
display: none;
position: absolute;
top: 0;
left: 100%;
background-color: rgb(0, 128, 128) ;
min-width: 180px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
padding-top: 2rem;
padding-bottom: 2rem;
}

.sub-dropdown-content a {
padding: 10px;
color: white;
display: block;
width: 260px;
}

.sub-dropdown-content a:hover {
    color:rgb(13, 0, 128) ;

}

/* Show sub-dropdown on hover */
.sub-dropdown:hover .sub-dropdown-content {
display: block;
}



.contact-button {
background-color: rgb(0,128,128);
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
color: white;
}

.contact-button:hover {
background-color: #777;
}


/* End of nav bar*/


/* Fullscreen Background Image */
.career-banner {
    background: url('../Resources/career2.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
    object-fit: contain;
}

.overlay {
    background: rgba(167, 167, 167, 0.345);
    padding: 40px;
    border-radius: 10px;
}

.career-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.career-banner p {
    font-size: 1.5rem;
}


 /* Contact Form */
 .contact-form {
    width: 90%;
    max-width: 800px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: rgb(0, 128, 128);
}

.contact-form h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Form Styling */
.form-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.input-box {
    flex: 1;
    min-width: 200px;
    margin: 0.5rem;
    margin-right: 2rem;
}

.input-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Privacy Policy */
.privacy-text {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
    text-align: center;
}

.privacy-text a {
    color: rgb(0, 128, 128);
    text-decoration: none;
    font-weight: bold;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-container {
    text-align: center;
    margin-top: 1rem;
}

.submit-Button {
    width: 150px;
    padding: 10px;
    font-size: 1.2rem;
    background: rgb(0, 128, 128);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.submit-Button:hover {
    background: rgb(0, 100, 100);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }

    .submit-Button {
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: rgb(0,128,128);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 150px;
    margin: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-section p, .footer-section ul {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: teal;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #555;
}

.footer-section h3 {
    font-size: 1.3rem; /* Adjusted for consistency */
    margin-bottom: 8px;
    color: white;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: lightgray;
}


/* Responsive Design */
@media (max-width: 768px) {
    .career-banner h1 {
        font-size: 2rem;
    }

    .career-banner p {
        font-size: 1.2rem;
    }

    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    

    .navbar a, .contact-button {
        margin: 10px 0;
    }
}
/* Responsive Menu Styles */
.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: rgb(0,128,128);
}

/* Side Dashboard Styles */
.side-dashboard {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgb(113, 123, 123);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 1000;
}

.side-dashboard ul {
    list-style: none;
    padding: 0;
}

.side-dashboard ul li {
    padding: 15px 30px;
}

.side-dashboard  a {
    color: rgb(244, 209, 143);
    text-decoration: none;
    font-size: 20px;
    padding: 15px 30px;
}
.side-dashboard .dropdown2{
    color:rgb(113, 123, 123) ;
    margin: 1rem;
}
.side-dashboard a:hover {
    color: rgb(13, 0, 128);
}

.side-dashboard .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    cursor: pointer;
    color: white;
}

/* Responsive Breakpoint */
@media screen and (max-width: 768px) {
    .center-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .contact-button {
        margin-right: 10px;
    }
}