*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    overflow-x:hidden;
}
/* =========================
   CAREER HERO SECTION
========================= */

.career-hero{
    width:100%;
    min-height:95vh;

    padding:80px 20px 40px;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* Main background glow */
.career-hero::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;

    background:radial-gradient(
        circle,
        rgba(59,130,246,0.25),
        transparent 65%
    );

    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    filter:blur(40px);
    animation:heroGlow 6s ease-in-out infinite;
}


/* Secondary top glow */
.career-hero::after{
    content:"";
    position:absolute;

    width:350px;
    height:350px;

    background:radial-gradient(
        circle,
        rgba(73,166,255,0.15),
        transparent 70%
    );

    top:-100px;
    right:80px;

    filter:blur(50px);

    animation:moveGlow 8s ease-in-out infinite;
}


/* Glow animation */
@keyframes heroGlow{

    0%,100%{
        opacity:.6;
        transform:translate(-50%,-50%) scale(1);
    }

    50%{
        opacity:1;
        transform:translate(-50%,-50%) scale(1.15);
    }

}


@keyframes moveGlow{

    0%,100%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(-80px,80px);
    }

}


/* Container */

.career-hero .container{
    position:relative;
    width:100%;
    max-width:950px;
    z-index:2;

    display:flex;
    flex-direction:column;
    align-items:center;   /* Centers everything horizontally */
    justify-content:center;

    text-align:center;
  
}


/* Badge */

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    border:1px solid rgba(73,166,255,.35);

    border-radius:40px;

    color:#49a6ff;

    background:rgba(20,35,60,.4);

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;

   margin-bottom: 17px;

    box-shadow:
    0 0 20px rgba(73,166,255,.15);

}



/* Heading */

.career-hero h1{

    color:white;

    font-size:72px;

    line-height:1.15;

    font-weight:700;

    margin-bottom:29px;

    letter-spacing:-2px;

}


/* Gradient word */

/* Gradient word */

.career-hero h1 span {

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #d9f4ff 35%,
        #49a6ff 65%,
        #f5c542 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;

    background-size:200% auto;

    animation:textFlow 3s ease-in-out infinite;

}


@keyframes textFlow{

    0%{
        background-position:0% center;
    }

    50%{
        background-position:100% center;
    }

    100%{
        background-position:0% center;
    }

}


/* Paragraph */

.career-hero p{

    color:#9ea9bb;

    font-size:18px;

    line-height:1.8;

    max-width:780px;

    margin:0 auto;

}



/* Button */

.hero-btn{

    display:inline-flex;

    align-items:center;
    justify-content: center;
    gap:12px;

    margin-top:50px;

    padding:15px 14px;

    background:linear-gradient(
        90deg,
        #3b82f6,
        #2563eb
    );

    color:white;

    border-radius:14px;

    font-size:18px;

    font-weight:600;

    text-decoration:none;

    box-shadow:
    0 0 25px rgba(59,130,246,.45);

    transition:.4s;

}


.hero-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 40px rgba(59,130,246,.8);

}

/* =========================
    Hero - RESPONSIVE DESIGN
========================= */


/* Tablets */
@media (max-width:1024px){

    .career-hero{
        min-height:90vh;
        padding:80px 20px;
    }


    .career-hero h1{

        font-size:55px;
        letter-spacing:-1px;

    }


    .career-hero p{

        font-size:18px;
        max-width:650px;

    }


    .hero-badge{

        font-size:12px;
        letter-spacing:2px;
        padding:9px 18px;

    }


    .hero-btn{

        padding:16px 35px;
        font-size:16px;

    }


    .career-hero::before{

        width:500px;
        height:500px;

    }


}



/* Mobile Devices */
@media (max-width:768px){


    .career-hero{

        min-height:100vh;
        padding:60px 20px;

    }


    .career-hero .container{

        max-width:100%;

    }


    .hero-badge{

        font-size:11px;
        padding:8px 15px;
        gap:7px;
        margin-bottom:25px;
        letter-spacing:1.5px;

    }



    .career-hero h1{

        font-size:42px;
        line-height:1.2;
        letter-spacing:-1px;
        margin-bottom:22px;

    }



    .career-hero p{

        font-size:16px;
        line-height:1.7;

    }



    .hero-btn{

        margin-top:35px;
        padding:15px 30px;
        font-size:15px;
        border-radius:12px;

    }



    .career-hero::before{

        width:350px;
        height:350px;
        filter:blur(30px);

    }



    .career-hero::after{

        width:200px;
        height:200px;
        right:-50px;
        top:-50px;

    }


}



/* Small Mobile */
@media (max-width:480px){


    .career-hero{

        padding:50px 15px;

    }



    .hero-badge{

        font-size:10px;
        padding:8px 12px;

    }



    .career-hero h1{

        font-size:34px;
        line-height:1.25;

    }



    .career-hero p{

        font-size:15px;

    }



    .hero-btn{

        width:100%;
        justify-content:center;

    }


}


/** Form section */

.career-apply-section{

    width:100%;
    padding:80px 5%;
    background:#050816;
}


.career-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}


/* COMMON BOX */

.openings-box,
.apply-box{

    background:#07101f;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding:30px;

}



.openings-box h2,
.apply-box h2{

    color:white;
    font-size:28px;
    margin-bottom:12px;
    font-family:Poppins;

}



.section-text{

    color:#9ca8bd;
    font-size:14px;
    margin-bottom:25px;

}



/* JOB CARD */

.job-card{

    display:flex;
    align-items:center;
    gap:18px;

    padding:22px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:10px;

    margin-bottom:15px;

}



.job-icon{

    width:45px;
    height:45px;

    background:#06245a;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:8px;

    color:#1684ff;

}



.job-details{

    flex:1;

}



.job-details h3{

    color:white;
    font-size:16px;
    margin-bottom:5px;

}


.job-details p{

    color:#9ca8bd;
    font-size:12px;

}


.job-details span{

    color:white;
    font-size:12px;

}



.job-card a{

    color:#1684ff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;

}





/* FORM */

.input-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;

}


input,
select,
textarea{


    width:100%;

    background:#081426;

    border:1px solid rgba(255,255,255,.12);

    padding:14px;

    border-radius:8px;

    color:white;

    margin-bottom:15px;

}


textarea{

    height:95px;
    resize:none;

}




.upload-box{

    display:flex;

    align-items:center;

    gap:15px;

    padding:15px;

    border:1px solid rgba(255,255,255,.1);

    border-radius:10px;

    margin-bottom:12px;

}


.upload-box i{

    color:#1684ff;
    font-size:25px;

}


.upload-box h4{

    color:white;

    font-size:14px;

}


.upload-box p{

    color:#9ca8bd;

    font-size:12px;

}



.upload-box input{

    margin-left:auto;

    width:auto;

}







/* ===============================
   APPLY FORM BUTTON
================================ */

.apply-box button {

    width:100%;

    padding:16px;

    background:#075cff;

    border:none;

    border-radius:8px;

    color:white;

    font-size:15px;

    cursor:pointer;

    transition:0.4s ease;

}



/* When hovering the whole form */

.apply-box:hover button {

    background:#050816;  /* darker with form hover */

    color:#00d9ff;

    border-color:#00d9ff;

    box-shadow:
    0 0 15px rgba(0,217,255,0.25);

}



/* Button click / active state */

.apply-box button:active {

    background:#eeeef2;

    color:rgb(20, 20, 20);

    border-color:#011307;

    box-shadow:
    0 0 20px rgba(34,197,94,0.5);

}

.privacy{

    margin-top:25px;

    color:#8894aa;

    font-size:12px;

}

.job-card::before,
.apply-box::before {

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:inherit;

    background:
   
        #0066ff;

    background-size:300% 300%;

    opacity:0;

    z-index:-1;

    transition:0.4s;

}

.job-card:hover::before,
.apply-box:hover::before {

    opacity:0.6;

    animation:borderMove 3s linear infinite;

}


.job-card,
.apply-box {

    position:relative;

    z-index:1;

    background:#0b1020;

    border-radius:18px;

}


@keyframes borderMove {

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}

.apply-box{
    background:#0b1020;
    overflow:visible;
}
.job-card{
    overflow:hidden;
}

/* =====================================
   RESPONSIVE DESIGN
===================================== */


/* Tablet Devices */

@media (max-width:1024px){

    .career-container{

        grid-template-columns:1fr;

        gap:30px;

    }


    .career-apply-section{

        padding:70px 4%;

    }


    .openings-box,
    .apply-box{

        padding:28px;

    }


}



/* Mobile Devices */

@media (max-width:768px){


    .career-apply-section{

        padding:50px 20px;

    }



    .career-container{

        grid-template-columns:1fr;

        gap:25px;

    }




    .openings-box h2,
    .apply-box h2{

        font-size:24px;

    }




    .section-text{

        font-size:13px;

    }





    /* Job Cards */

    .job-card{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

        padding:20px;

    }



    .job-card a{

        margin-top:5px;

    }





    /* Form Inputs */

    .input-grid{

        grid-template-columns:1fr;

        gap:0;

    }



    input,
    select,
    textarea{

        padding:13px;

        font-size:14px;

    }





    /* Upload Box */

    .upload-box{

        flex-direction:column;

        align-items:flex-start;

    }



    .upload-box input{

        width:100%;

        margin-left:0;

    }





    /* Button */

    .apply-box button{

        padding:14px;

        font-size:14px;

    }



}





/* Small Mobile */

@media (max-width:480px){


    .career-apply-section{

        padding:40px 15px;

    }



    .openings-box,
    .apply-box{

        padding:20px;

        border-radius:14px;

    }



    .openings-box h2,
    .apply-box h2{

        font-size:21px;

    }



    .job-icon{

        width:40px;

        height:40px;

    }



    .job-details h3{

        font-size:15px;

    }



    .job-details p{

        font-size:11px;

    }


    .privacy{

        font-size:11px;

    }


}

/* why work with us  section */
/* ==============================
   WHY WORK SECTION
================================ */


.why-work-section{

    width:100%;

    padding:25px 5%;

    background:#050816;

}



.why-container{

    max-width:1200px;

    margin:auto;

}



.why-container h2{

    text-align:center;

    color:white;

    font-family:Poppins;

    font-size:25px;

    margin-bottom:10px;

}



.title-line{

    width:45px;

    height:3px;

    background:#1684ff;

    margin:0 auto 45px;

}





/* GRID */

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:18px;

}





/* CARD */

.benefit-card{


    position:relative;

    background:#07101f;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:28px 18px;

    text-align:center;

    overflow:hidden;

    transition:.4s ease;

}




/* Blue glowing border */

.benefit-card::before{


    content:"";

    position:absolute;

    inset:-2px;

    border-radius:inherit;


    background:
    
        #1a5fc7;
       


    background-size:300% 300%;


    opacity:0;


    z-index:-1;

    transition:.4s;


}





.benefit-card:hover::before{

    opacity:.7;

    animation:borderMove 3s linear infinite;

}




.benefit-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 0 18px rgba(0,217,255,.15);

}





/* ICON */


.benefit-icon{


    width:52px;

    height:52px;


    margin:0 auto 18px;


    border-radius:50%;


    border:1px solid #0066ff;


    display:flex;

    align-items:center;

    justify-content:center;


    color:#1684ff;

    font-size:22px;


    background:#06152e;


}




.benefit-card h3{


    color:white;

    font-size:15px;

    margin-bottom:12px;

}




.benefit-card p{


    color:#9ca8bd;

    font-size:12px;

    line-height:1.6;

}





@keyframes borderMove {


    0%{

        background-position:0% 50%;

    }


    50%{

        background-position:100% 50%;

    }


    100%{

        background-position:0% 50%;

    }

}

@media(max-width:1000px){

    .benefits-grid{

        grid-template-columns:repeat(3,1fr);

    }

}


@media(max-width:700px){

    .benefits-grid{

        grid-template-columns:1fr;

    }


    .why-container h2{

        font-size:24px;

    }

}




/* =========================
   CAREER CTA SECTION
========================= */

.career-cta{

    width:100%;
    padding:50px 5%;
    background:#050816;

    border-top:1px solid rgba(110,204,254,0.25);
    border-bottom:1px solid rgba(110,204,254,0.25);

    text-align:center;

}


.cta-content h2{

    font-family:'Poppins',sans-serif;
    font-size:42px;
    font-weight:700;
    color:white;
    margin-bottom:15px;

}


.cta-content h2 span{

    color:#6eccfe;

}


.cta-content p{

    max-width:650px;
    margin:auto;

    color:#b8c2d1;
    font-size:18px;
    line-height:1.6;

}


.cta-button{

    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-top:30px;

    padding:15px 45px;

    background:linear-gradient(
        90deg,
        #2563eb,
        #1d4ed8
    );

    color:white;

    text-decoration:none;

    border-radius:6px;

    font-size:16px;
    font-weight:600;

    transition:.3s;

}


.cta-button:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 15px #2563eb,
    0 0 35px rgba(37,99,235,.6);

}


@media(max-width:768px){

    .cta-content h2{
        font-size:32px;
    }

    .cta-content p{
        font-size:16px;
    }

}


/*        Message   */



.error-message{

    background:#2d1010;
    color:#ffb3b3;
    border:1px solid #ff4d4d;
    padding:15px 20px;
    border-radius:8px;
    margin-bottom:20px;

}

.error-message ul{

    margin:0;
    padding-left:20px;

}



