/* Body */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding-top: 110px; /* Space for fixed navbar */
    background-color: #f9f9f9;
}

/* Navbar */
.navbar {
    background-color: white;
    border-bottom: 2px solid #ddd;
    height: 110px;
    position: fixed; /* Make navbar stick at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* High z-index to stay above other elements */
}

.navbar-brand img {
    height: 90px;
    margin-top: -5px;
    width: 300px;
    margin-left: 25px;
}

.navbar-nav > li > a {
    margin-top: 30px;
    font-size: 18px;
    color: black !important;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.navbar-nav > li > a:hover {
    color: red !important;
}

.navbar-toggle {
    margin-top: 33px;
    margin-right: 25px;
}

/* Career Form Section */
.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f4f6f8;
}

.career-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.career-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
}

/* Image Section */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #eaf2ff;
}

.image-section img {
    max-width: 100%;
    height: 500px;
    border-radius: 16px;
}

/* Footer */
.footer {
    background-color: #1c1c1c;
    color: #e0e0e0; 
    padding: 50px 0;
    border-top: 3px solid rgba(255, 255, 255, 0.1); 
    font-family: 'Poppins', sans-serif;
}
.footer .container {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer .col-md-3 {
    flex: 1;
    min-width: 250px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.footer a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #c2c2c2;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    body {
        padding-top: 70px; /* smaller navbar on mobile */
    }
    .career-form {
        padding: 20px;
    }
    .navbar-brand img {
        height: 70px;
        width: 220px;
        margin-left: 10px;
    }
}

