/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    font-family: 'Inter', sans-serif;
    background-color: #feffff;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 165px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    width: 92px;
    height: 28px;
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-item {
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    color: #979797;
    font-weight: 400;
}

.nav-item.active {
    color: #18191f;
    font-weight: 500;
}

.nav-item.login {
    color: #009b6c;
    font-weight: 500;
}

.contact-btn {
    background-color: #f47e26;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* Hero Section */
.hero-section-careers {
    position: relative;
    height: 638px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.hero-image {
    position: absolute;
    width: 50vw;
    height: 50vw;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* transform: scaleY(-1) rotate(180deg); */
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 73.14%, #ffffff 92.674%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 165px;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 638px;
}

.work-with-us {
    margin-left: 45vw;
}

.hero-title {
    font-size: 38px;
    line-height: 50px;
    font-weight: 600;
    color: #12141d;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 34px;
    font-weight: 500;
    color: #404040;
    margin-bottom: 40px;
    max-width: 514px;
}

/* Form Styles */
.application-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
    max-width: 519px;
}

.form-row {
    display: flex;
    gap: 21px;
}

.form-group {
    flex: 1;
}

.form-input {
    width: 100%;
    height: 58px;
    padding: 0 20px 0 50px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #404040;
    background-color: white;
}

.form-input::placeholder {
    color: #cacaca;
}

.form-input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    z-index: 2;
    pointer-events: none;
    display: block;
    overflow: visible;
    flex-shrink: 0;
}

/* Team icon - wider aspect ratio (28:18) */
.input-icon.icon-team {
    width: 28px;
    height: 18px;
}

/* Job title icon - slightly taller (24:20) */
.input-icon.icon-job {
    width: 24px;
    height: 20px;
}

.apply-btn {
    width: 100%;
    height: 52px;
    background-color: #f47e26;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-btn:hover {
    background-color: #e06d15;
}

/* Let's Work Together Section */
.work-together-section {
    position: relative;
    padding: 90px 165px;
    text-align: center;
}

.section-title {
    font-size: 48px;
    line-height: 48px;
    font-weight: 600;
    color: #12141d;
    margin-bottom: 30px;
}

.section-tagline {
    font-size: 22px;
    line-height: 18px;
    font-weight: 500;
    color: #404040;
    margin-bottom: 10px;
}

.section-description {
    font-size: 22px;
    line-height: 18px;
    font-weight: 500;
    color: #404040;
    margin-bottom: 20px;
}

/* Employee Photos Grid */
.photos-grid {
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden;
}

.photo-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 13vw;
    height: 18vw;
    min-width: 180px;
    min-height: 250px;
    flex-shrink: 0;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top Row: 4 photos evenly spaced */
.photo-top-left {
    grid-column: 1 / 4;
    grid-row: 1;
}

.photo-top-middle-left {
    grid-column: 4 / 7;
    grid-row: 1;
}

.photo-top-middle-right {
    grid-column: 7 / 10;
    grid-row: 1;
}

.photo-top-right {
    grid-column: 10 / 13;
    grid-row: 1;
}

/* Middle Row: 3 photos (centered with spacing) */
.photo-middle-left {
    grid-column: 2 / 5;
    grid-row: 2;
}

.photo-middle-center {
    grid-column: 5 / 9;
    grid-row: 2;
}

.photo-middle-right {
    grid-column: 9 / 12;
    grid-row: 2;
}

/* Bottom Row: 4 photos evenly spaced */
.photo-bottom-left {
    grid-column: 1 / 4;
    grid-row: 3;
}

.photo-bottom-middle-left {
    grid-column: 4 / 7;
    grid-row: 3;
}

.photo-bottom-middle-right {
    grid-column: 7 / 10;
    grid-row: 3;
}

.photo-bottom-right {
    grid-column: 10 / 13;
    grid-row: 3;
}

/* Gradient overlays for grid */
.grid-gradient-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 341px;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0) 14.516%, #ffffff 114.73%);
    z-index: 10;
    pointer-events: none;
}

.grid-gradient-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 341px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 14.516%, #ffffff 114.73%);
    z-index: 10;
    pointer-events: none;
}

/* Footer */
.footer {
    background-color: #048f73;
    color: white;
    padding: 64px 165px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-col h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 14px;
    line-height: 20px;
    color: #f5f7fa;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255,255,255,0.2);
}

.newsletter-input {
    position: relative;
    margin-top: 28px;
}

.newsletter-input input {
    width: 100%;
    height: 40px;
    padding: 10px 40px 10px 12px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.2);
    color: white;
    font-size: 13px;
}

.newsletter-input input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-input button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.contact-email {
    font-size: 14px;
    line-height: 20px;
    margin-top: 28px;
}

/* Responsive */
@media (max-width: 1400px) {
    .photos-grid {
        padding: 0 80px;
    }
}

@media (max-width: 1200px) {
    .header-content,
    .hero-content,
    .work-together-section,
    .footer {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .work-together-section {
        padding: 60px 40px;
    }

    .footer {
        padding: 50px 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .work-with-us {
        margin-left: 40vw;
    }

    .photos-grid {
        padding: 0 40px;
    }

    .photo-item {
        width: 12vw;
        height: 16vw;
        min-width: 160px;
        min-height: 220px;
    }
}

@media (max-width: 900px) {
    .hero-section-careers {
        height: auto;
        min-height: 500px;
        padding: 40px 0;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        opacity: 0.3;
    }

    .hero-content {
        padding: 0 20px;
        min-height: auto;
    }

    .work-with-us {
        margin-left: 0;
        max-width: 100%;
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
        line-height: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .work-together-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 36px;
        line-height: 44px;
    }

    .section-tagline,
    .section-description {
        font-size: 18px;
        line-height: 26px;
    }

    .photos-grid {
        padding: 0 20px;
        overflow-x: visible;
    }

    .photos-grid .display-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .photo-container {
        padding-top: 0 !important;
        width: auto;
    }

    .photo-item {
        width: calc(50% - 7.5px);
        min-width: 150px;
        min-height: 200px;
        height: 220px;
    }

    .grid-gradient-left,
    .grid-gradient-right {
        display: none;
    }

    .footer {
        padding: 40px 20px;
        margin-top: 50px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .subscribe-box {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {
    .hero-section-careers {
        min-height: 450px;
        padding: 30px 0;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
        min-height: auto;
    }

    .work-with-us {
        margin-left: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .application-form {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        width: 100%;
    }

    .form-input {
        height: 52px;
        font-size: 15px;
    }

    .apply-btn {
        height: 48px;
        font-size: 15px;
    }

    .work-together-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .section-tagline {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .section-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .photos-grid {
        padding: 0 15px;
    }

    .photos-grid .display-flex {
        gap: 12px;
    }

    .photo-item {
        width: calc(50% - 6px);
        min-width: 140px;
        min-height: 180px;
        height: 200px;
    }

    .footer {
        padding: 35px 15px;
        margin-top: 40px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-column a {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .hero-section-careers {
        min-height: 400px;
        padding: 20px 0;
    }

    .hero-title {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    .form-input {
        height: 48px;
        padding: 0 15px 0 45px;
        font-size: 14px;
    }

    .input-icon {
        left: 12px;
        width: 20px;
        height: 20px;
    }

    .apply-btn {
        height: 46px;
        font-size: 14px;
    }

    .work-together-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-tagline,
    .section-description {
        font-size: 15px;
        line-height: 22px;
    }

    .photos-grid {
        padding: 0 10px;
        max-height: 50vh;
    }

    .photo-item {
        width: calc(50% - 5px);
        min-width: 130px;
        min-height: 160px;
        height: 180px;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer_image {
        width: 7rem !important;
    }

    .subscribe-box {
        max-width: 100%;
    }
}