body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 6rem 0;
}

.bg-light {
    background: #f8f9fa;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #000;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: 220px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3b82f6;
    /* Blue hover */
}

/* Hamburger menu (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 25px;
    background: #fff;
    border-radius: 3px;
}

/* section */

#career {
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Background Video */
.career-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay */
.career-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Content */
#career .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

#career h1 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

#career h1::after {
    content: "";
    display: block;
    width: 290px;
    height: 4px;
    background-color: #007bff;
    margin: 8px auto 0;
    border-radius: 2px;
}

#career .section-text {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    font-size: 22px;
    line-height: 1.8;
    color: #f3f4f6;
}

.btn-career {
    display: inline-block;
    padding: 14px 28px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: #007bff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-career:hover {
    background: white;
    color: black;
}



/* Responsive section */
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    /* .container {
    max-width: 768px;
  } */
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* Responsive: mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        height: calc(100vh - 70px);
        width: 100%;
        text-align: center;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease;
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }


    #career h1 {
        font-size: 30px;
    }

    #career h1::after {
        width: 210px;
    }


    #career .section-text {
        font-size: 18px;
        margin: 0 auto 20px auto;
    }

    .btn-career {
        font-size: 16px;
        margin-top: 10px;
    }

}

/* Extra small screens */
@media (max-width: 480px) {

    .navbar {
        padding: 1rem;
    }

    .nav-links {
        width: 100%;
        padding: 1.5rem;
        gap: 1.5rem;
        align-items: center;
    }

    .logo img {
        height: 40px;
        width: 180px;
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    #career .section-text {
        font-size: 16px;
    }

}

/* Very small screens (320px) */
@media (max-width: 320px) {
    .nav-links {
        width: 160px;
        padding: 1rem;
        gap: 1rem;
    }

    .logo img {
        height: 35px;
        width: 150px;
    }
}