:root{

    --primary:#ff5821;
    --light:#f5f7fb;
    --border:#d9e2ef;
    --danger:#dc2626;
    --text:#475467;
    --white:#ffffff;

}


/*==============================
career Buttons
==============================*/

.btn-primary{

    background:var(--primary);
    border:none;
    border-radius:50px;
    padding:12px 32px;
    font-weight:600;
    transition:.35s;

}

.btn-primary:hover{

    background:#FF6C2E;
    transform:translateY(-2px);
    box-shadow:0 15px 35px rgba(0,86,179,.25);

}

.btn-secondary{

    border-radius:50px;
    padding:10px 28px;

}

/*==============================
career Modal
==============================*/

.modal-content{

    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 80px rgba(0,0,0,.15);

}

.modal-header{

    background:var(--primary);
    color:#fff;
    padding:18px 25px;

}

.modal-title{

    font-size:26px;
    font-weight:600;

}

.btn-close{

    filter:invert(1);

}

.modal-body{

    padding:35px;

}

.modal-footer{

    border-top:1px solid #eee;
    padding:18px 30px;

}

/*==============================
career Form
==============================*/

.form-label{

    font-weight:600;
    margin-bottom:8px;
    color:#344054;

}

.form-control,
.form-select{

    height:50px;
    border-radius:12px;
    border:1px solid var(--border);
    transition:.25s;
    box-shadow:none;

}

.form-control:focus,
.form-select:focus{

    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(0,86,179,.12);

}

input[type=file]{

    padding:10px;

}

.form-text{

    font-size:13px;
    color:#6b7280;

}

/*==============================
career Submit Button
==============================*/

#submitBtn{

    min-width:210px;
    height:50px;
    border-radius:50px;
    font-weight:600;

}

#loadingSpinner{

    margin-left:10px;

}

#responseMessage{

    margin-top:10px;

}

.alert{

    border-radius:10px;
}

/*======================================================
 career Additional Styling
======================================================*/

/* Form Placeholder */
.form-control::placeholder{
    color:#98a2b3;
    font-size:14px;
}

/* Select Arrow */
.form-select{
    cursor:pointer;
}

/* File Upload */

input[type="file"]{
    background:#ffffff;
    padding:12px;
    border:2px dashed #d0d5dd;
    transition:.3s;
}

input[type="file"]:hover{
    border-color:var(--primary);
    background:#f8fbff;
}


/* reCAPTCHA */

.g-recaptcha{
    display:inline-block;
    margin-top:10px;
}

/* Status Messages */

.alert-success{
    border:1px solid #b7ebc6;
    background:#ecfdf3;
    color:#027a48;
}

.alert-danger{
    border:1px solid #f4c7c7;
    background:#fef3f2;
    color:#b42318;
}

/* Spinner */

.spinner-border{
    vertical-align:middle;
}

/* Modal Animation */

.modal.fade .modal-dialog{
    transform:scale(.85);
    transition:all .3s ease;
}

.modal.show .modal-dialog{
    transform:scale(1);
}

/* Input Hover */

.form-control:hover,
.form-select:hover{
    border-color:#9ec5fe;
}

/* Card Effect */

.modal-content{
    background:#ffffff;
    backdrop-filter:blur(20px);
}

/* Utility */

.text-primary{
    color:var(--primary)!important;
}

.bg-primary{
    background:var(--primary)!important;
}

/* Responsive */

@media (max-width:992px){

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

.hero-section h1{
    font-size:38px;
}

.modal-dialog{
    margin:15px;
}

}

@media (max-width:768px){

.hero-section{
    padding:60px 0;
}

.hero-section h1{
    font-size:32px;
}

.hero-section p{
    font-size:16px;
}

.modal-body{
    padding:20px;
}

.modal-title{
    font-size:22px;
}

.btn-primary,
.btn-secondary{
    width:100%;
    margin-bottom:10px;
}

.modal-footer{
    flex-direction:column;
}

#submitBtn{
    width:100%;
}

.form-control,
.form-select{
    height:48px;
}

}

@media (max-width:576px){

.navbar-brand{
    font-size:20px;
}

.hero-section h1{
    font-size:28px;
}

.modal-header{
    padding:15px;
}

.modal-body{
    padding:18px;
}

.modal-footer{
    padding:15px;
}

.g-recaptcha{
    transform:scale(.90);
    transform-origin:left top;
}

}

/* Loading State */

.loading{
    opacity:.7;
    pointer-events:none;
}

/* Disabled Button */

button:disabled{
    opacity:.7;
    cursor:not-allowed;
}

/* Smooth Transition */

*{
    transition:
        background-color .25s,
        border-color .25s,
        color .25s,
        box-shadow .25s;
}