@font-face{
    font-family:'AvantGarde';
    src:url('fonts/AvantGardeDemi.otf') format('opentype');
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'AvantGarde', sans-serif;
    overflow-x:hidden;
    background:#1c2fa3;
}

/* NAVBAR */

.navbar{
    width:100%;
    height:74px;
    background:#1c2fa3;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 28px;

    position:fixed;
    top:0;
    z-index:999;
}

.logo img{
    height:72px;
}

.nav-links{
    display:flex;
    gap:50px;
    list-style:none;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:12px;
}

.nav-links a.active{
    border-bottom:2px solid white;
    padding-bottom:4px;
}

.contact-btn{
    background:white;
    color:#1c2fa3;
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    font-size:12px;
}

/* CAREER */

.career-section{
    padding:120px 35px 70px;

    color:white;
    text-align:center;

    background:
        radial-gradient(circle at 85% 75%, rgba(214,28,78,0.75), transparent 35%),
        linear-gradient(135deg, #06145f 0%, #15115f 65%, #8b124f 100%);
}

.career-section h1{
    font-size:60px;
    margin-bottom:35px;
}

.career-container{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:70px;
}

/* LEFT IMAGE */

.career-left{
    flex:1;

    display:flex;
    justify-content:center;

    position:relative;
}

.career-left::before{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:#0a3eb0;

    filter:blur(120px);

    opacity:0.22;

    z-index:0;
}

.career-left img{
    position:relative;
    z-index:1;

    width:100%;
    max-width:500px;

    border-radius:30px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.15),
        0 0 60px rgba(10,62,176,0.2);

    transform:rotate(-3deg);

    transition:0.4s ease;
}

.career-left img:hover{
    transform:rotate(0deg) scale(1.05);
}

.career-form{
    width:430px;

    display:flex;
    flex-direction:column;
    gap:16px;
}

.career-form input,
.career-form textarea{
    width:100%;

    padding:14px 16px;

    border:1px solid rgba(255,255,255,0.25);
    border-radius:6px;

    background:rgba(255,255,255,0.12);
    color:white;

    font-family:'AvantGarde';
    outline:none;
}

.career-form input::placeholder,
.career-form textarea::placeholder{
    color:rgba(255,255,255,0.65);
}

.career-form textarea{
    height:70px;
    resize:none;
}

.career-form input[type="file"]{
    color:rgba(255,255,255,0.75);
}

.career-form button{
    background:#d61c4e;
    color:white;

    border:none;
    border-radius:999px;

    padding:14px;

    font-family:'AvantGarde';
    font-size:14px;

    cursor:pointer;
}

/* FOOTER IMAGE */

.career-footer-image{
    width:100%;

    border-top:6px solid white;
    border-bottom:6px solid white;

    overflow:hidden;
    line-height:0;
}

.career-footer-image img{
    width:100%;
    height:auto;
    display:block;
    margin-bottom:-340px;
}

/* FOOTER */

footer{
    background:#1c2fa3;
    color:white;
    text-align:center;
    padding:26px;
    font-size:16px;
}

/* POPUP */

.popup{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.45);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:9999;
}

.popup-content{
    position:relative;

    background:white;
    color:#1c2fa3;

    text-align:center;

    padding:35px 45px;

    border-radius:18px;

    box-shadow:0 12px 35px rgba(0,0,0,0.25);
}

.popup-close{
    position:absolute;
    top:10px;
    right:14px;

    border:none;
    background:none;

    font-size:30px;
    font-weight:bold;

    color:#1c2fa3;
    cursor:pointer;
    line-height:1;
}

.tick{
    width:55px;
    height:55px;

    margin:0 auto 15px;

    background:#d61c4e;
    color:white;

    border-radius:50%;

    display:grid;
    place-items:center;

    font-size:28px;
}

/* MOBILE */

@media(max-width:600px){

    .navbar{
        height:42px;
        padding:0 12px;
    }

    .logo img{
        height:34px;
    }

    .nav-links{
        gap:26px;
    }

    .nav-links a{
        font-size:6px;
    }

    .contact-btn{
        padding:5px 9px;
        font-size:6px;
    }

    .career-section{
        padding:75px 20px 40px;
    }

    .career-section h1{
        font-size:38px;
        margin-bottom:25px;
    }

    .career-container{
        flex-direction:row;
        gap:18px;
    }

    .career-left img{
        width:170px;
    }

    .career-form{
        width:180px;
        gap:8px;
    }

    .career-form input,
    .career-form textarea{
        padding:7px;
        font-size:6px;
        border-radius:4px;
    }

    .career-form textarea{
        height:42px;
    }

    .career-form button{
        padding:7px;
        font-size:7px;
    }

    .career-footer-image img{
        margin-bottom:-60px;
    }

    footer{
        font-size:10px;
        padding:18px;
    }
}