/* ============ ACTIVE FILTERS BAR ============ */
.active-filters-bar{
	border-top:1px solid #edf1f7;
	border-bottom:1px solid #edf1f7;
	padding:16px 0;
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:10px;
}

.filter-chip{
	display:inline-flex;
	align-items:center;
	gap:8px;
	background:#eef2f8;
	color:var(--bs-navy);
	font-size:13px;
	font-weight:600;
	padding:7px 12px;
	border-radius:50px;
}

.filter-chip .chip-remove{
	cursor:pointer;
	color:var(--bs-dark-grey);
	font-weight:700;
	line-height:1;
}

.filter-chip .chip-remove:hover{
	color:var(--bs-navy);
}

.clear-all-link{
	margin-left:auto;
	color:var(--bs-navy);
	font-weight:600;
	font-size:14px;
	text-decoration:none;
	display:flex;
	align-items:center;
	gap:6px;
	background:none;
	border:none;
}

.clear-all-link:hover{
	color:var(--bs-navy);
}

/* ============ LAYOUT ============ */
.jobs-section{
	padding:50px 0 70px;
}

.filters-sidebar{
	position:sticky;
	top:100px;
}

.filter-card{
	background:var(--bs-white);
	border-radius:22px;
	padding:28px;
	box-shadow:0 12px 35px rgba(16,44,87,.08);
	border:1px solid #edf1f7;
}

.filter-header{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:22px;
}

.filter-header h5{
	margin:0;
	font-weight:700;
	color:var(--bs-navy);
	display:flex;
	align-items:center;
	gap:8px;
}

.filter-header a{
	color:var(--bs-gold);
	font-weight:600;
	font-size:14px;
	text-decoration:none;
}

.filter-header a:hover{
	color:var(--bs-navy);
}

.filter-group{
	margin-bottom:26px;
}

.filter-group-title{
	font-weight:700;
	color:var(--bs-navy);
	font-size:15px;
	display:flex;
	align-items:center;
	gap:8px;
	margin-bottom:16px;
}

.form-check{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding-left:26px;
	margin-bottom:12px;
}

.form-check .check-left{
	display:flex;
	align-items:center;
	gap:10px;
}

.form-check-input,
.filter-checkbox{
	border-radius:6px;
	border:2px solid #d8dfeb;
	margin:0;
	flex:0 0 auto;
}

.form-check-input:checked,
.filter-checkbox:checked{
	background-color:var(--bs-navy);
	border-color:var(--bs-navy);
}

.form-check-label{
	cursor:pointer;
	color:var(--bs-dark-grey);
	font-size:14.5px;
}

.filter-count{
	color:var(--bs-grey);
	font-size:13px;
}

.show-more-link{
	color:var(--bs-dark-navy);
	font-weight:600;
	font-size:13.5px;
	text-decoration:none;
	display:inline-flex;
	align-items:center;
	gap:4px;
	margin-left:26px;
}

.show-more-link:hover{
	color:var(--bs-navy);
}

.filter-extra{
	display:none;
}

.filter-extra.show{
	display:flex;
}

#reset-filters{
	border-radius:12px;
	font-weight:600;
	border-color:#d8dfeb;
	color:var(--bs-navy);
}

#reset-filters:hover{
	background:var(--bs-navy);
	border-color:var(--bs-navy);
	color:var(--bs-white);
}

.upload-card{
	margin-top:25px;
	background:var(--bs-navy);
	border-radius:22px;
	padding:35px;
	text-align:center;
	color:var(--bs-white);
	box-shadow:0 15px 40px rgba(16,44,87,.25);
}

.upload-card .icon{
	width:80px;
	height:80px;
	margin:auto;
	margin-bottom:20px;
	border-radius:50%;
	background:rgba(255,255,255,.1);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:36px;
}

.upload-card h4{
	font-size:19px;
	font-weight:700;
}

.upload-card p{
	font-size:14px;
	color:var(--bs-grey);
	margin-bottom:0;
}

.upload-card .btn{
	margin-top:20px;
	background:var(--bs-dark-navy);
	border:none;
	color:var(--bs-white);
	font-weight:600;
	padding:14px 26px;
	border-radius:12px;
}

.upload-card .btn:hover{
	background:var(--bs-grey);
	color:var(--bs-navy);
}

/* ============ RESULTS HEADER ============ */

.results-header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-bottom:22px;
}

.results-header h4{
	font-weight:700;
	color:var(--bs-navy);
	margin:0;
}

.sort-select{
	width:auto;
	border-radius:10px;
	border:1px solid #e4e8ef;
	font-size:14px;
}

.sort-label{
	color:var(--bs-dark-grey);
	font-size:14px;
	white-space:nowrap;
}

@media(max-width:991px){

	.filters-sidebar{
		position:static;
		top:auto;
		margin-bottom:24px;
	}
}

@media(max-width:575px){

	.jobs-section{
		padding:32px 0 50px;
	}

	.filter-card{
		padding:20px;
		border-radius:18px;
	}

	.filter-header h5{
		font-size:15px;
	}

	.upload-card{
		padding:24px;
	}

	.results-header{
		flex-direction:column;
		align-items:flex-start;
		gap:12px;
	}

	.results-header h4{
		font-size:17px;
	}

	.results-header .d-flex{
		width:100%;
	}

	.sort-select{
		width:100%;
		flex:1;
	}
}

/* ============ JOB CARDS ============ */
.job-card{
	position:relative;
	background:var(--bs-white);
	border:1px solid #edf1f7;
	border-radius:18px;
	padding:24px;
	margin-bottom:18px;
	display:flex;
	flex-direction:column;
	transition:.25s;
}

.job-card:hover{
	box-shadow:0 15px 35px rgba(16,44,87,.10);
	transform:translateY(-2px);
}

.job-card-top{
	display:flex;
	gap:20px;
}

.job-badge-new{
	position:absolute;
	top:-1px;
	left:0px;
	background:var(--bs-gold);
	color:var(--bs-white);
	font-size:11px;
	font-weight:700;
	letter-spacing:.5px;
	padding:4px 12px;
	border-radius:15px 0 50px 0px;
}

.job-icon{
	width:56px;
	height:56px;
	border-radius:14px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:22px;
	color:var(--bs-white);
	flex:0 0 auto;
}

.job-actions{
	flex:0 0 auto;
	display:flex;
	flex-direction:column;
	align-items:flex-end;
	justify-content:space-between;
}

.job-bookmark{
	flex:0 0 auto;
	color:#c3cad6;
	background:none;
	border:none;
	font-size:18px;
	visibility:hidden;
	pointer-events:none;
}


.job-bookmark:hover{
	color:#d5a021;
}

.job-card .job-title{
	font-weight:700;
	color:var(--bs-navy);
	font-size:18px;
	margin-bottom:6px;
	text-decoration:none;
	display:inline-block;
}

.job-card .job-title:hover{
	color:#07142d;
}

.job-location{
	color:var(--bs-dark-grey);
	font-size:13.5px;
	margin-bottom:12px;
}

.job-tags .badge{
	font-weight:600;
	font-size:12px;
	padding:6px 12px;
	border-radius:50px;
	margin-right:8px;
}

.badge-category{
	background:var(--bs-light-blue);
	color:#245ec2;
}

.badge-type{
	background: var(--bs-light-green);
    color: var(--bs-green);
}

.badge-country{
	background:#eaf1ff;
	color:var(--bs-navy);
}

.job-content{
	flex:0 1 520px;
	min-width:0;
}

.job-desc{
	color:var(--bs-dark-grey);
	font-size:14px;
	margin-top:16px;
	padding-top:16px;
	border-top:1px solid var(--bs-grey);
	margin-bottom:0;
}

.job-meta{
	flex:0 0 auto;
	text-align:right;
	display:flex;
	flex-direction:column;
	justify-content:center;
	gap:8px;
	min-width:190px;
}

.job-meta .meta-line{
	color:var(--bs-dark-grey);
	font-size:13px;
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:6px;
}

.btn-apply{
	background:var(--bs-dark-navy);
	color:var(--bs-white);
	border:none;
	font-weight:600;
	font-size:14px;
	padding:10px 18px;
	border-radius:10px;
	margin-top:4px;
	white-space:nowrap;
}

.btn-apply i{
	color:var(--bs-gold);
}

.btn-apply:hover{
	background:var(--bs-navy);
	color:var(--bs-white);
}


@media(max-width:767px){

	.job-card{
		padding:18px;
	}

	.job-card-top{
		flex-direction:column;
		gap:14px;
	}

	.job-icon{
		width:44px;
		height:44px;
		font-size:18px;
	}

	.job-content{
		flex:1 1 auto;
	}

	.job-badge-new{
		font-size:10px;
		padding:3px 10px;
	}

	.job-meta{
		align-items:flex-start;
		text-align:left;
		min-width:0;
		gap:6px;
	}

	.job-meta .meta-line{
		justify-content:flex-start;
	}

	.job-actions{
		flex-direction:row;
		align-items:center;
		justify-content:flex-start;
		width:100%;
	}

	.btn-apply{
		flex:1;
		text-align:center;
		justify-content:center;
		margin-top:0;
	}

	.job-desc{
		margin-top:12px;
		padding-top:12px;
	}
}

.no-jobs{
	text-align:center;
	padding:60px 20px;
	color:var(--bs-dark-grey);
}

/* ============ PAGINATION ============ */
.jobs-pagination{
	margin-top:30px;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:8px;
	flex-wrap:wrap;
}

.jobs-pagination .page-item{
	list-style:none;
}

.jobs-pagination .page-link{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:6px;
	height:42px;
	min-width:42px;
	padding:0 14px;
	border-radius:10px;
	border:1px solid #e4e8ef;
	background:var(--bs-white);
	color:#4f5b6b;
	font-weight:600;
	font-size:14px;
	cursor:pointer;
	transition:.2s;
}

.jobs-pagination .page-item.page-nav .page-link{
	padding:0 18px;
}

.jobs-pagination .page-item.active .page-link{
	background:var(--bs-navy);
	border-color:var(--bs-navy);
	color:var(--bs-white);
}

.jobs-pagination .page-item.ellipsis .page-link{
	border-color:transparent;
	background:transparent;
	color:var(--bs-grey);
	cursor:default;
	min-width:auto;
	padding:0 4px;
}

.jobs-pagination .page-item.disabled .page-link{
	pointer-events:none;
	opacity:.45;
}

.jobs-pagination .page-link:hover{
	border-color:var(--bs-navy);
	color:var(--bs-navy);
}

.jobs-pagination .page-item.active .page-link:hover,
.jobs-pagination .page-item.ellipsis .page-link:hover{
	border-color:inherit;
	color:inherit;
}

.jobs-pagination .page-item.active .page-link:hover{
	color:var(--bs-white);
}

.job-card.js-hidden{
	display:none;
}

@media(max-width:575px){

	.jobs-pagination{
		gap:6px;
	}

	.jobs-pagination .page-link{
		height:38px;
		min-width:38px;
		padding:0 10px;
		font-size:13px;
	}

	.jobs-pagination .page-item.page-nav .page-link{
		padding:0 12px;
	}

	.jobs-pagination .page-item.page-nav .page-link span,
	.jobs-pagination .page-item.page-nav .page-link{
		font-size:0;
	}

	.jobs-pagination .page-item.page-nav .page-link i{
		font-size:14px;
	}
}

.job-details-sidebar {
	background: linear-gradient(135deg, var(--bs-grey) 0%, var(--bs-grey) 100%);
	padding: 20px 20px;
}

.sidebar-logo {
	width: auto; 
	margin: 0 auto 30px;
}

.feature-icon{
	width:48px;
	height:48px;
	border-radius:50%;
	background:var(--bs-grey);
	color:var(--bs-navy);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:22px;
	flex-shrink:0;
}

.feature-icon i{
	line-height:1;
}

.dropzone-upload{
	border:2px dashed var(--bs-grey);
	border-radius:16px;
	background:#fafbff;
	min-height:150px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
	cursor:pointer;
	transition:.3s;
}

.dropzone-upload:hover{
	border-color:var(--bs-navy);
	background:#f4f7ff;
}

.dropzone-upload.dragover{
	border-color:#d5a021;
	background:var(--bs-white)9ee;
}

.dropzone-upload i{
	color:var(--bs-navy);
}

#selectedFile{
	font-size:.9rem;
}

.resume-footer{
	padding:24px;
	background:var(--bs-grey);
	border-top:1px solid #c6cdd7;
	font-size:0.875em;
	color:var(--bs-navy);
}

#phone.is-valid {
	border-color:#ced4da !important;
	background-image:none !important;
}

#phone.is-invalid {
	border-color:#dc3545 !important;
	background-image:none !important;
}

.btn-job:hover{
	transform:translateY(-2px);
	box-shadow:0 12px 30px rgba(64,58,96,.3);
}

/* ============ LAYOUT ============ */
.apply-section{
	padding:50px 0 70px;
}

.job-icon{
	width:56px;
	height:56px;
	border-radius:14px;
	background:var(--bs-navy);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:22px;
	color:var(--bs-white);
	flex:0 0 auto;
	margin-bottom:16px;
}

.job-details-icon{
	width:36px;
	height:36px;
	border-radius:8px;
	background:var(--bs-grey);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:18px;
	color:var(--bs-navy);
	flex:0 0 auto;
	margin-bottom:16px;
}

.divider{
	border-top:1px solid var(--bs-grey);
	margin:20px 0;
}

.job-text h1,
.job-text h2,
.job-text h3,
.job-text h4,
.job-text h5,
.job-text h6 {
    color: var(--bs-navy);
    margin-top: 1.5rem;
    margin-bottom: .75rem;
}











.summary-job-icon{
	width:56px;
	height:56px;
	border-radius:14px;
	background:var(--bs-navy);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:22px;
	color:var(--bs-white);
	flex:0 0 auto;
	margin-bottom:16px;
}

.job-summary-card h5{
	font-weight:700;
	color:var(--bs-navy);
	font-size:19px;
	margin-bottom:6px;
}

.job-summary-card .job-location{
	color:var(--bs-dark-grey);
	font-size:13.5px;
	margin-bottom:14px;
}

.job-summary-card .job-tags .badge{
	font-weight:600;
	font-size:12px;
	padding:6px 12px;
	border-radius:50px;
	margin-right:8px;
}

.summary-divider{
	border-top:1px solid var(--bs-grey);
	margin:20px 0;
}

.job-summary-card .meta-line{
	color:var(--bs-dark-grey);
	font-size:13.5px;
	display:flex;
	align-items:center;
	gap:8px;
	margin-bottom:10px;
}

.job-summary-card .meta-line i{
	color:var(--bs-gold);
}

.job-summary-card .job-desc-title{
	font-weight:700;
	color:var(--bs-navy);
	font-size:15px;
	margin-bottom:10px;
}

.job-summary-card .job-desc-text{
	color:var(--bs-dark-grey);
	font-size:14px;
	line-height:1.6;
}

.info-note{
	display:flex;
	align-items:flex-start;
	gap:12px;
	background:var(--bs-light-blue);
	border-radius:14px;
	padding:16px;
	margin-top:16px;
}

.info-note.note-secure{
	background:var(--bs-light-blue);
}

.info-note .note-icon{
	width:36px;
	height:36px;
	border-radius:50%;
	background:var(--bs-white);
	color:var(--bs-navy);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:16px;
	flex:0 0 auto;
}

.info-note h6{
	font-weight:700;
	color:var(--bs-navy);
	font-size:13.5px;
	margin-bottom:3px;
}

.info-note p{
	color:var(--bs-dark-grey);
	font-size:12.5px;
	margin-bottom:0;
}

/* ============ FEATURE STRIP ============ */
.apply-features{
	background:var(--bs-white);
	border:1px solid #edf1f7;
	border-radius:22px;
	padding:32px;
	margin-top:24px;
	box-shadow:0 12px 35px rgba(16,44,87,.06);
}

.apply-feature{
	display:flex;
	align-items:flex-start;
	gap:16px;
}

.apply-feature-icon{
	width:52px;
	height:52px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:20px;
	color:var(--bs-white);
	flex:0 0 auto;
}

.apply-feature-icon.icon-navy{
	background:var(--bs-dark-navy);
}

.apply-feature-icon.icon-gold{
	background:var(--bs-light-gold);
	color:var(--bs-white);
}

.apply-feature h6{
	font-weight:700;
	color:var(--bs-navy);
	font-size:15px;
	margin-bottom:4px;
}

.apply-feature p{
	color:var(--bs-dark-grey);
	font-size:13.5px;
	margin-bottom:0;
}

@media(max-width:767px){

	.apply-features .apply-feature{
		margin-bottom:20px;
	}

	.apply-features .apply-feature:last-child{
		margin-bottom:0;
	}
}

.apply-features .col-md-4 {
    position: relative;
}

@media (min-width: 768px) {
    .apply-features .col-md-4:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 10%;
        right: 0;
        width: 1px;
        height: 80%;
        background: #dee2e6;
    }
}

@media (min-width: 992px) {
    .job-sidebar {
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}

.member-login-card{
	background: #eef4ff;
    border:1px solid #e7ebf2;
    border-radius:12px;
    padding:28px 32px;
    box-shadow:0 .125rem .25rem rgba(0,0,0,.075);
}

.member-logout-card{
	background: var(--bs-white)bee;
    border:1px solid #f8e6c3;
    border-radius:12px;
    padding:28px 32px;
    box-shadow:0 .125rem .25rem rgba(0,0,0,.075);
}

.member-icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#6f9df4;
}

.member-logout-icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#ffc107;
}

.member-login-card h5{
    font-family:Lato,sans-serif;
    font-weight:700;
    color:#0c2156;
    margin:0;
}

.member-logout-card h5{
    font-family:Lato,sans-serif;
    font-weight:700;
    color:#0c2156;
    margin:0;
}

.member-login-card p{
    color:var(--bs-dark-grey);
    font-size:.95rem;
}

.member-logout-card p{
    color:var(--bs-dark-grey);
    font-size:.95rem;
}

.btn-member-login{
    min-width:150px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid var(--bs-navy);
    color:var(--bs-navy);
    background:var(--bs-white);
    border-radius:8px;
    font-weight:600;
    transition:.25s;
}

.btn-member-login:hover{
    background:var(--bs-navy);
    color:var(--bs-grey);
}

.resume-card{
    background:#fafbff;
    border: 2px dashed var(--bs-grey);
    border-radius: 16px;
    cursor: pointer;
	min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	padding-top:10px;
	padding-bottom:10px;
    text-align:center;
    transition:.3s;
}

.resume-card:hover{
    border-color:var(--bs-navy);
    background:#f4f7ff;
}

.resume-file-name{
    font-weight:700;
    color:var(--bs-navy);
    margin-bottom:6px;
    overflow:hidden;
    text-overflow:ellipsis;
}

.resume-file-meta{
    color:var(--bs-navy);
    font-size:0.75em;
    line-height:1.6;
}

#changeResumeBtn{
    height:48px;
    border-radius:12px;
    border:2px solid var(--bs-navy);
    background:var(--bs-white);
    color:var(--bs-navy);
    font-weight:600;
    transition:.25s;
}

#changeResumeBtn:hover{
    background:var(--bs-navy);
    color:var(--bs-white);
}