@charset "utf-8";
/* CSS Document */

/* ========================
GLOBAL
======================== */
h3{font-weight:600!important;font-size:18px!important;}
.wj-wrap{
    max-width:100%;
    margin:auto;
    font-family: "Montserrat"!important;
    color:#1f2937;
}

/* ========================
SEARCH + FILTERS
======================== */

#wj-search{
    width:100%;
    padding:14px 18px;
    border-radius:10px;
    border:1px solid #e5e7eb;
    margin-bottom:20px;
    font-size:15px;
}

.wj-filters{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:30px;
}

.wj-filters select{
    padding:12px;
    border-radius:10px;
    border:1px solid #e5e7eb;
    background:#fff;
    font-size:14px;
}
/* ========================
INLINE LOADER (SAFE)
======================== */
.wj-education-item{padding-top:20px;}
.wj-experience-item{padding-top:20px;}


/* ========================
LOADER FIX (PROPER LAYERING)
======================== */

/* Make container positioning context */
#wj-app{
    position: relative;
}

/* ONLY blur the content, not loader */
#wj-app.loading .wj-wrap,
#wj-app.loading .wj-single{
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
}

/* Loader sits above everything */
.wj-inline-loader{
    display:none;
    justify-content:center;
    align-items:center;

    position: absolute;
    inset: 0;

    background: rgba(255,255,255,0.6); /* optional soft overlay */

    z-index: 9999;
}

/* Spinner */
.wj-spinner{
    width:48px;
    height:48px;
    border:3px solid #eee;
    border-top:3px solid #EA216D;
    border-radius:50%;
    animation:wj-spin .8s linear infinite;
}

@keyframes wj-spin{
    to{ transform:rotate(360deg); }
}



/* ========================
JOB LIST
======================== */

.wj-item{
    display:grid;
    grid-template-columns:2fr 1fr 2fr 1fr;
    padding:22px 0;
    border-bottom:1px solid #eee;
    align-items:center;
    font-size:15px;
	font-family: "Montserrat"!important;
}

.wj-title{
    color:#EA216D;
    font-weight:600;
    text-decoration:none!important;
}

.wj-title:hover{
    color:#081D51;
    text-decoration:none!important;
}

.wj-posted{
    font-size:13px;
    color:#6b7280;
    margin-top:4px;
}

/* ========================
JOB SINGLE
======================== */

.wj-single{
    max-width:100%;
}

.wj-single h1{
    font-size:40px;
    font-weight:600;
	font-family: "Montserrat"!important;
    margin-bottom:10px;
}

/* ===== META PILLS ===== */

.wj-meta{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 20px 0;
	font-family: "Montserrat"!important;
}

.wj-meta-pill{
    padding: 2px 8px;
    background: #efefef;
    border-radius: 4px;
    font-size: 13px;
	font-family: "Montserrat"!important;
    color: #374151;
}

.wj-location{
    margin-bottom:25px;
    color:#6b7280;
	font-family: "Montserrat"!important;
}
.wj-location-dept{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.wj-department{
    color:#6b7280;
    font-size:14px;
}

/* ========================
TABS
======================== */

.wj-tabs{
    margin: 20px 0px!important;
}

.wj-tabs button{
    padding:10px 22px;
	color:#081D51!important;
    border-radius:25px;
    border:none;
	font-family: "Montserrat"!important;
    background:#facc15;
    margin:0 6px;
    font-weight:600;
    cursor:pointer;
    transition:all 0.2s ease;
}

.wj-tabs button:hover{
    background:#fde047;
}

.wj-tabs button.active{
    background:#eab308;
}

/* ===== CLEAN BULLET LIST (WORKABLE STYLE) ===== */

.wj-tab p {
    margin: 0 0 12px 0;
}

/* Target paragraphs that start with a bullet */
.wj-tab p:has(span:empty),
.wj-tab p:has(br),
.wj-tab p:has(*) {
    margin-bottom: 10px;
	font-family: "Montserrat"!important;
}

/* Replace bullet-style paragraphs */
.wj-tab p {
    position: relative;
	font-family: "Montserrat"!important;
}

/* Hide the actual bullet character */


/* Add clean custom bullet */

/* ========================
CONTENT
======================== */

.wj-tab{
    line-height:1.75;
	font-family: "Montserrat"!important;
    font-size:16px;
    color:#374151;
    text-align:left;
}
.wj-item{
    grid-template-columns: 2fr 1fr 2.5fr 1fr;
}
.wj-item > div:nth-child(2),
.wj-item > div:nth-child(3),
.wj-item > div:nth-child(4){
    color:#6b7280;
    font-size:14px;
}
/* ========================
IFRAME
======================== */

.wj-iframe{
    width:100% !important;
    border:none;
    margin-top:30px;
    display:block;
	background:#fff!important;
}

/* Elementor override */
.elementor iframe{
		background:#fff!important;
}



/* ================= COLLAPSIBLE ================= */

.wj-collapse-body{
    display:none;
    margin-top:20px;
}

.wj-collapse-body.active{
    display:block;
}

.wj-collapse-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:15px;
}

.wj-toggle{
    background:#f3c623;
    border:none;
    padding:10px 18px;
    border-radius:999px;
    cursor:pointer;
    font-weight:600;
}

.wj-profile-section,
.wj-details-section{
    width:100%;
    margin-top:40px;
}

.wj-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}


/* ========================
BACK BUTTON
======================== */

.wj-back{
    display:inline-block;
    color:#EA216D;
	font-family: "Montserrat"!important;
    font-size:14px;
    text-decoration:none!important;;
}

/* ===== EXTRA INFO BLOCKS ===== */

.wj-extra{
    margin-top: 10px;
    color: #374151;
}

/* ===== SECTIONS ===== */

.wj-section{
    margin-bottom: 20px;
}

/* Remove empty spacing */
.wj-section:empty,
.wj-extra:empty{
    display:none;
}
/* =========================================
FIELD LABELS
========================================= */

.wj-field label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#374151;
}

.wj-field label span{
    color:#6b7280;
    font-weight:400;
}

/* =========================
   SKILLS
========================= */

.wj-skills-wrap{
    margin-top: 35px;
}

.wj-skills-add{
    display: flex;
    gap: 14px;
    align-items: stretch;
}

.wj-skills-add input{
    flex: 1;
    height: 56px !important;
    min-height: 56px !important;
    margin: 0 !important;
}

#wj-add-skill{
    height: 56px !important;
    min-height: 56px !important;

    padding: 0 28px !important;

    border-radius: 999px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    white-space: nowrap;

    background: #f6d938 !important;
    color: #EA216D !important;

    border: none !important;

    font-size: 16px !important;
    font-weight: 600 !important;

    cursor: pointer;

    transition: all .2s ease;
}

#wj-add-skill:hover{
    transform: translateY(-1px);
}

/* =========================
   SKILL TAGS
========================= */

#wj-skills-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
	margin-bottom:18px!important;
}

.wj-skill-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    border-radius: 999px;

    background: #f1efea;

    border: 1px solid #d9d5ce;

    font-size: 15px;
    font-weight: 600;
}

.wj-remove-skill{
    border: none !important;
    background: transparent !important;

    padding: 0 !important;
    margin: 0 !important;

    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    min-height: auto !important;

    line-height: 1 !important;

    color: #ff2f7d !important;

    font-size: 18px !important;
    font-weight: 700 !important;

    cursor: pointer;
}
/* =========================================
APPLICATION FORM
========================================= */

.wj-form-grid{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:35px;
}

/* =========================================
SECTIONS
========================================= */

.wj-profile-section,
.wj-details-section{
    background:#f7f5f2;
    border:1px solid #e7e5e4;
    border-radius:14px;
    padding:30px;
    margin-top:30px;
}

.wj-profile-section h3,
.wj-details-section h3{
    font-size:30px!important;
    margin-bottom:30px;
    color:#1f2937;
}

/* =========================================
INPUTS
========================================= */

.wj-form-grid input[type="text"],
.wj-form-grid input[type="email"],
.wj-form-grid input[type="tel"],
.wj-form-grid input[type="month"],
.wj-form-grid textarea,
.wj-form-grid select{
    width:100%;
    border:1px solid #d6d3d1;
    border-radius:10px;
    background:#fff;
    padding:16px 18px;
    font-size:15px;
    transition:all .2s ease;
    color:#111827;
}

/* textarea */

.wj-form-grid textarea{
    min-height:140px;
    resize:vertical;
}

/* focus */

.wj-form-grid input:focus,
.wj-form-grid textarea:focus,
.wj-form-grid select:focus{
    outline:none;
    border-color:#FFE141;
    box-shadow:0 0 0 4px rgba(15,118,110,.08);
}

/* =========================================
GRID
========================================= */

.wj-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:18px;
}

/* =========================================
COLLAPSIBLE
========================================= */

.wj-collapsible{
    border-top:1px solid #ebe7e2;
    padding:22px 0;
}

.wj-collapse-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* =========================================
ADD BUTTON
========================================= */

.wj-toggle{
    background:#fff;
    border:1px solid #FFE141;
    color:#FFE141;
    padding:10px 18px;
    border-radius:10px;
    font-weight:600;
    transition:.2s ease;
}

.wj-toggle:hover{
    background:#FFE141;
	border:1px solid #FFE141;
    color:#333;
}

/* =========================================
COLLAPSE BODY
========================================= */

.wj-collapse-body{
    display:none;
    margin-top:25px;
    gap:18px;
    flex-direction:column;
}

.wj-collapse-body.active{
    display:flex;
}

/* =========================================
CHECKBOX
========================================= */

.wj-check{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    font-size:14px;
    color:#374151;
}

/* =========================================
UPLOAD FIELDS
========================================= */

.wj-form-grid input[type="file"]{
    width:100%;
    padding:30px;
    border:2px dashed #d6d3d1;
    border-radius:14px;
    background:#fafaf9;
}

/* =========================================
SUBMIT BUTTON
========================================= */

.wj-form-grid button[type="submit"]{
    background:#FFE141;
    color:#333;
    border:none;
    border-radius:10px;
    padding:18px 26px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.2s ease;
    width:100%;
}

.wj-form-grid button[type="submit"]:hover{
    transform:translateY(-1px);
    background:#eab308;
}

/* =========================================
LABELS
========================================= */

.wj-form-grid label{
    font-size:14px;
    font-weight:600;
    color:#374151;
    margin-bottom:10px;
    display:block;
}

/* =========================================
QUESTIONS
========================================= */

.wj-field{
    display:flex;
    flex-direction:column;
    gap:10px;
	    background: #f7f5f2;
    border: 1px solid #e7e5e4;
    border-radius: 14px;
    padding: 30px;
    margin-top: 30px;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .wj-row{
        grid-template-columns:1fr;
    }

    .wj-profile-section,
    .wj-details-section{
        padding:22px;
    }

    .wj-profile-section h3,
    .wj-details-section h3{
        font-size:24px!important;
    }

}
/* =========================================
FIELD SPACING
========================================= */

.wj-form-grid input,
.wj-form-grid textarea,
.wj-form-grid select,
.wj-upload,
.wj-collapsible,
.wj-field{
    margin-bottom:18px;
}

/* spacing between grouped rows */

.wj-row{
    margin-bottom:18px;
}

/* remove double spacing inside rows */

.wj-row input,
.wj-row textarea,
.wj-row select{
    margin-bottom:0;
}

/* upload section spacing */

.wj-upload label{
    display:block;
    margin-bottom:12px;
}

/* collapsible body spacing */

.wj-collapse-body > *{
    margin-bottom:18px;
}

.wj-collapse-body > *:last-child{
    margin-bottom:0;
}