:root {
    --primary-color: #D7181D;
    --red-900: #BD0E12;
    --red-200: #D41616;
    --red-100: #E33737;
    --secondary-color: #FFECE5;
    --white-color: #ffffff;

    /* grey */
    --grey-20: #B2B2B2;
    --grey-30: #9C9C9C;
    --grey-40: #DBDBDB;
    --grey-50: #787878;
    --grey-100: #CCCCCC;
    --grey-200: #A4A4A4;
    --grey-400: #BCBCBC; 
    --grey-600: #f2f2f2;

    /* black */
    --black-color: #000000;
    --black-100: #131517;
    --black-200: #301F1F;
    --black-300: #2f2f2f;

    /* blue */
    --light-drak-blue: #F2E4FC;
    --dark-blue: #6A239D; 
    --blue-800: #1f2937;
    /* green */
    --light-green: #E1FFF0;
    --green-color: #1D8257;
    /* red */
    --red-color: #A1573D;
    --light-red: #FFEBE4;
}

body {
    font-family: "Montserrat", sans-serif !important;
    background-color: var(--secondary-color);
    height: 100vh;
}

/* variable font size */
h1 {
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
}
h2 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
}
h6 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.spacer-y {
    padding: 30px 0;
}
.spacer-b {
    padding-bottom: 30px;
}

.primary-color {
    color: var(--primary-color);
}

.primary_button {
    background-color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--white-color);
    text-decoration: none;
    display: inline-block;
}
/* variable font size */


/* header css start */
.main_header div#navbarSupportedContent {
    justify-content: space-between !important;
}
.main_header ul li {
    padding: 0 16px !important;
}
.main_header ul li a.nav-link {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: var(--white-color) !important;
    text-transform: uppercase;
    border-top: 6px solid transparent;
     
    height: 81px;
    display: flex;
    align-items: center;
}
.main_header ul li .nav-link.active {
    position: relative;
} 
 .main_header ul li .nav-link.active {
    border-top: 6px solid var(--white-color);
 }
header.main_header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
}
.notification {
    background-color: var(--red-900);
    width: 43px;
    height: 43px;
}
.main_header .profile_right {
    margin-left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.main_header .profile_right span {
    margin-right: 10px;
    font-size: 16px;
    line-height: 22px;
}

/* Header Auth Buttons */
.btn-signup, .btn-login {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    line-height: 20px;
    vertical-align: middle;
    white-space: nowrap;
}

.btn-signup {
    background-color: white;
    color: var(--primary-color);
    margin-right: 12px;
    border: 2px solid white;
    box-shadow: none;
}

.btn-signup:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-login {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-login:hover {
    background-color: var(--red-900);
    color: white;
    border-color: var(--red-900);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile Header Auth Buttons */
.btn-signup-mobile, .btn-login-mobile {
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    line-height: 12px;
}

.btn-signup-mobile {
    background-color: white;
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-signup-mobile:hover {
    opacity: 0.9;
}
#authModal {
    z-index: 999999;
}
.btn-login-mobile {
    background-color: var(--primary-color);
    color: white;
    border: 1.5px solid var(--primary-color);
}

.btn-login-mobile:hover {
    background-color: var(--red-900);
    color: white;
    border-color: var(--red-900);
}
  
/* header css close */


/* banner css start */ 
section.hero.about_hero { 
    background-image: url(../images/about_bg.png);
    background-size: cover;
    background-position: center; 
    position: relative;
}   
.about_hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(272deg, #d7181d7a 0%, #d7181d 80%);
}

section.about_hero h1 {
    margin-top: 30px !important;
}
.find_jobs h1 {
    margin-top: 10px !important;
}
.search-box{
  background:var(--white-color);
  border-radius:50px;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding: 0px 8px; 
} 
.search-input{
  flex:1;
  border:none;
  outline:none; 
  font-size:16px;
} 
.recentJob_col.col_child {
    margin-bottom: 0 !important;
}
.search-input::placeholder {
    color: var(--grey-200);
}
.search-section {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
}
.search-row_button {
    width: 20%;
    display: flex;
    justify-content: flex-end;
}
.search_item {
    border-right: 1px solid var(--grey-100);
    padding: 14px 20px;
    width: 40%;
}
.search-box input {
    padding: 0px 20px;
}
.country img {
    width: 30px !important;
}

.search-btn {
    background: var(--red-200);
    color: var(--white-color);
    border: none;
    padding: 14px 38px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
}
.hero .row.align-items-center {
    padding: 50px 0 0 0;
}
.hero_content {
    margin: -60px 0 0 0px;
}
/* banner css close */

/* job css start */
section.hero.find_jobs.position-relative { 
    background-image: url(../images/find_job.png);
    background-size: cover;
    background-position: center;
    position: relative;
}
section.hero.find_jobs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(272deg, #d7181d7a 0%, #d7181d 80%);
}
section.hero .hero_content { 
    height: 420px;
    display: flex;
    align-items: center;
}
section.hero.find_jobs {
    margin: -10px 0 0 0px;
}

.job_outer {
    background-color: var(--secondary-color);
}
.job_outer h2 {
    color: var(--primary-color);
}
.col_child {
    margin-bottom: 22px;
}
.button_right {
    text-align: right;
} 
.button_right a {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: var(--primary-color);
    border: 1.3px solid var(--primary-color);
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    padding: 12px 22px;
}
.button_right a img {
    padding-left: 13px;
}
.job_type span:first-child { 
    font-size: 16px;
    line-height: 22px;
}
.job_type span:last-child { 
    font-size: 14px;
    line-height: 22px;
    color: var(--red-100);
}
.job_type {
    padding-bottom: 22px;
}
ul li label {
    color: var(--black-100);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
}
ul li input {
    width:18px !important;
    height:18px !important;
    border:1px solid var(--primary-color) !important;
    border-radius:3px !important;
    appearance:none !important;
    -webkit-appearance:none !important;
    cursor:pointer !important;
    position:relative !important;
    background-color: transparent !important;
}

ul li input:checked{
    background: var(--primary-color) !important;
}

ul li input:checked::after{
    content:"✓";
    color:var(--white-color);
    font-size:12px;
    font-weight:bold;
    position:absolute;
    top:-1px;
    left:3px;
}
ul li {
    padding-bottom: 12px !important;
    display: flex !important;
    gap: 9px !important;
    align-items: center !important;
}
.job_item {
    padding-bottom: 15px;
}

/* range */
.salary-range {
    width: 100%;
    position: relative;
    margin-top: 6px;
    margin-bottom: 26px;
}

.range-input {
    position: relative;
    /*margin-bottom: 25px;*/
    height: 18px;
    display: flex;
    align-items: center;
}

.range-input input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: transparent;
    /*pointer-events: none;*/
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    transition: z-index 0.2s ease;
}

.range-input input[type="range"]:focus {
    outline: none;
    z-index: 11;
}

.range-input input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    z-index: 10;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.range-input input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.range-input input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    z-index: 10;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.range-input input[type="range"]::-moz-range-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.range-input input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: var(--grey-400);
    border-radius: 5px;
}

.range-input input[type="range"]::-moz-range-track {
    background: var(--grey-400);
    border-radius: 5px;
    height: 5px;
}

.range-input::before {
    content: "";
    position: absolute;
    left: 0;
    width: var(--salary-percent, 50%);
    height: 11px;
    background: var(--primary-color);
    border-radius: 5px;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    transition: width 0.1s ease;
}

.salary-range h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.salary_range_number {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.salary_range_number h4 {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
} 


/* experience label */
.experience span {
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 14px;
}

/* job card */
.job_card {
    padding: 15px;
    background: var(--white-color);
    border-radius: 16px;
}
.job_card .type_row {
    padding-bottom: 14px;
}
.job_card:active {
    border: 1px solid var(--primary-color);
}
.job_outer  .recommended_row .heading_left {
    background-color: var(--secondary-color);
}
.heading_row .heading_left {
    background-color: var(--secondary-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Ensure logo images fit inside the heading_left container */
.heading_row .heading_left img,
.recentJob_col .heading_left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.heading_row {
    gap: 11px;
}
.heading_row .heading_content h6 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}
.heading_row .heading_content span {
    color: var(--grey-50);
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}
.job_card .heading_row {
    padding-bottom: 14px;
}

.form-check-input:focus {
    box-shadow: unset !important;
}
span.expert {
    background-color: var(--light-drak-blue);
}
span.expert , span.part_time, span.remote {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 18px;
    margin-right: 2px;
}
span.expert {
    background-color: var(--light-drak-blue); 
    color: var(--dark-blue);
}

span.part_time {
    background-color: var(--light-green); 
    color: var(--dark-blue);
}

span.remote {
    background-color: var(--light-red);
    color: var(--red-color);

}
.job_card p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--grey-40);
    text-transform: capitalize;
}
.job_right .row .col_child {
    padding-top: 24px;
}
.job_right .row .col_child:nth-child(1) , .job_right .row .col_child:nth-child(2) , .job_right .row .col_child:nth-child(3) {
    padding-top: 0px;
}
 
.range_heading span {
    /*padding-bottom: 23px;*/
    font-size: 16px;
    line-height: 22px;
}

.bottom_row {
    padding: 12px 0 0px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payDetail .bottom_row {
    padding: 0px 0 0px 0;
}
.recentJob_col .bottom_row span {
    font-size: 10px !important;
}
.slick-prev:before, .slick-next:before {
    color: #000000;
    font-size: 30px;
}

.slick-prev {
    left: -30px;
}
.slick-next {
    right: -30px;
}
.recentJob_col .job_card:hover {
    transform: scale(1.08);
    transition: transform 0.7s ease;
    margin: 20px;
}
.slick-slide {
    overflow: hidden;
}

.slick-slide img {
    transition: transform 0.4s ease;
}

.slick-slide:hover img {
    transform: scale(1.08);
}

/*.bottom_left span:first-child {*/
/*    font-size: 16px;*/
/*    line-height: 22px;*/
/*    font-weight: 600;*/
/*}*/
.recentJob_col .bottomRow_detail { 
    padding: 2px 6px;  
}

.bottomRow_detail svg {
    width: 20px;
    color: #1f662c;
}
.bottom_left span:last-child {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    /*text-transform: uppercase;*/
    /*color: var(--grey-30);*/
    /*position: relative;*/
    /*top: -7px;*/
}
.applyDetail {
    margin-bottom: 2px;
}
.jobSaved {
    position: absolute;
    top: 14px;
    right: 26px;
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.jobSaved_icon img {
    width: 16px;
}
.bottom_right:last-child {
    font-size: 11px;
    line-height: 16px;
    color: var(--grey-20);
    font-weight: 500;
    text-align: right;
}
.bottom_right img {
    width: 16px;
}
/*.bottom_row .bottom_left {*/
/*    width: 40%;*/
/*}*/
.bottom_row .bottom_right {
    width: 50%;
    display: flex;
    gap: 8px;
    justify-content: end;
}

/* pagination css start */
.pagination{
    gap:12px;
}

.pagination .page-link{
    width:42px;
    height:42px;
    border:none;
    border-radius:12px;
    background: var(--grey-600);
    color: var(--blue-800);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}
.pagination .page-link:hover {
    background: var(--black-300);
    color: var(--white-color);
}
.pagination .page-item.active .page-link{
    background:var(--black-300);
    color: var(--white-color);
    border-radius: 12px;
}

.pagination .page-link:focus{
    box-shadow:none;
}
.page-item:first-child .page-link , .page-item:last-child .page-link {
    border-radius: 12px !important;
}
.jobStart_row {
    width: 60%;
    margin: auto;
}
.pagination ul li {
    padding: 0;
}
/* job css close */

/* index page css start */
section.jobStart_outer {
    padding: 80px 0; 
}
.jobStart_outer .logo {
    padding-bottom: 4px;
}

span.startJob {
    font-size: 22px;
    line-height: 28px;
    color: var(--black-200); 
    padding-bottom: 4px;
}
span.startJob_des {
    font-size: 14px;
    line-height: 20px;
    color: var(--black-color);
    padding-bottom: 25px;
}
.jobStart_row .logo img {
    width: 220px;
}
/* index page css close */

/* Salary Range Slider CSS - REMOVED DUPLICATES */

.range_heading {
    /*margin-top: 30px;*/
    margin-bottom: 15px;
}

/* About Page CSS */
.recruitment {
    padding: 80px 0;
}

.recruitment_img {
    gap: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruitment_img img {
    width: 44%;
}

.recruitment_img img:first-child {
    margin-top: 51px;
    margin-bottom: 0;
}

.recruitment_content h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
    padding-bottom: 16px;
}

.recruitment_content h6 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.recruitment_content p {
    font-size: 14px;
    line-height: 20px;
    color: var(--black-100);
    margin-bottom: 16px;
}

.recruitment_content p:nth-child(2) {
    margin-bottom: 22px !important;
}

.recruitment_content p:nth-child(3) {
    margin-bottom: 46px !important;
}

.recruitment_content ul {
    margin: 0;
    padding: 0;
}

.recruitment_content li {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--black-100);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.recruitment_content li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--black-100);
    border-radius: 100px;
    transform: translate(0, -50%);
}

.our_mission { 
    background-color: var(--white-color);
}

.vision_col, .mision_col {
    padding: 40px 0;
    text-align: center;
}

.vision_col {
    text-align: left;
    padding-top: 0;
}

.mision_col {
    text-align: left;
    padding-top: 0;
}

.vision_col h3, .mision_col h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.vision_col p, .mision_col p {
    font-size: 14px;
    line-height: 20px;
    color: var(--black-100);
}

/* Footer CSS */
footer.main_footer {
    background-color: #FFECE5;
    padding: 20px 0;
    text-align: center;
}

footer.main_footer p {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    font-weight: 500;
}

.footer-text-black {
    color: var(--black-100);
}

.footer-text-red {
    color: var(--primary-color);
}


/**/
.search_item img {
    width: 22px;
}
/* job detail css start */
.apply_type span {
    background: var(--light-green);
    padding: 4px 8px;
    display: inline-block;
    border-radius: 8px;
    font-size: 12px;
    color: #4a1bdb;
    margin-bottom: 2px;
    box-shadow: 0 0 6px -5px #000000; 
}
.bottomRow_detail span {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #1f662c;
}
.type_row.type_row1 {
    gap: 14px;
}
.bottomRow_detail {
    background: #e4f7e6;
    padding: 2px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 12px;
}
.job_detail_right 
 {
    background: var(--white-color);
    border: 1px solid #e4e2e0;
    border-radius: 20px;
}
.jobDetail_title .heading_left {
    background: var(--secondary-color);
    width: 56px;
    height: 56px;
    border-radius: 15px;
}
.jobDetail_title .heading_left img {
    max-width: 34px;
    max-height: 34px;
    object-fit: contain;
    display: block;
}
.jobDetail_title .jobDetail_titleLeft .title {
    padding-left: 20px;
}
.job_outer1 .jobDetail_title {
    padding: 26px 24px;
    border-bottom: 1px solid #e4e2e0;
    position: sticky;
    top: 0;
    background: #ffffff;
    border-radius: 20px 20px 0 0px;
}
.job_outer1 .type_row , .jobDetail_child {
    padding: 26px 24px;
    border-bottom: 1px solid #8080805e;
} 
.backButton {
    padding: 20px 30px;
}
.type_row1 {
    padding-bottom: 10px;
}
.jobDetail_title .bottom_row {
    margin: 4px 0 0 0;
}
.jobDetail_icon svg {
    width: 20px;
}
.jobDetail_icon {
    background: #f3f2f1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.jobDetail_titleRight {
    display: flex;
    align-items: center;
    gap: 20px;
}
.jobDetail_IconRow {
    display: flex;
    gap: 8px;
}
span.detailPay.jobType {
    padding-top: 20px;
}
span.detailPay {
    font-size: 14px;
    line-height: 18px;
    color: var(--black-color);
    font-weight: 600;
    padding: 18px 0 8px 0;
    display: flex;
    gap: 12px;
    align-items: center;
}
.detailPay svg {
    width: 20px;
}
.jobDetail_child p {
    font-size: 14px;
    line-height: 22px;
    color: var(--black-color);
    font-weight: 400;
}
.footerDetails {
    display: none;
}
button.ReportBtn {
    background: #6c757d;
    border: 0;
    padding: 7px 20px;
    border-radius: 6px;
    color: var(--white-color);
    font-size: 16px;
    line-height: 24px;
    margin-left: 10px;
}

/* recent job slider css start */
.recentJob_col .job_card {
    box-shadow: 0 0 3px -1px #8b8b8b;
    margin: 20px 8px;
}
.slick-dots {
    display: none !important;
}
.recentJob_slider {
    margin-bottom: 0 !important;
}
/* recent job slider css close */
/* job detail css close */
/**/