/* -------------- Font family ---------------- */
@font-face {
    font-family: 'poppins-light';
    src: url('../fonts/Poppins-Light.ttf');
}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'poppins-medium';
    src: url('../fonts/Poppins-Medium.ttf');
}

@font-face {
    font-family: 'poppins-semibold';
    src: url('../fonts/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: 'poppins-bold';
    src: url('../fonts/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'roboto-medium';
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: 'roboto-bold';
    src: url('../fonts/Roboto-Bold.ttf');
}

/* ---------------------- Root ------------------- */
:root {
    --primary-color: #e16100;
    --secondary-color: #060f24;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light-white: rgba(255, 255, 255, 0.7);
    --color-light-primary: rgba(225, 97, 0, 0.5);
    --fs-xxsmall: 10px;
    --fs-xsmall: 12px;
    --fs-small: 14px;
    --fs-normal: 16px;
    --fs-medium: 18px;
    --fs-15: 15px;
    --br-10: 10px;
    --br-40: 40px;
    --poppins-light: 'poppins-light';
    --poppins: 'poppins';
    --poppins-medium: 'poppins-medium';
    --poppins-semibold: 'poppins-semibold';
    --poppins-bold: 'poppins-bold';
    --roboto: 'roboto';
    --roboto-medium: 'roboto-medium';
    --roboto-bold: 'roboto-bold';
}

/* --------------------- Focus ------------------- */
.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

/* -------------------- Typography ------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--poppins-bold);
}

p {
    font-family: var(--roboto);
}

a {
    text-decoration: none;
}

/* -------------------- Text Colors --------------------- */
.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

/* -------------------- Buttons --------------------- */
.btn-primary {
    color: var(--color-white) !important;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus {
    border-color: var(--secondary-color) ;
    background-color: var(--secondary-color) ;
}

/* ------------------ Backgrounds ---------------- */
.bg-light-white-gradient {
    background: linear-gradient(215deg, #f2f2f2, transparent)
}

/* ------------------- Breadcrumb ------------------ */
.breadcrumb-section {
    background-image: url('../img/breadcrumb/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.breadcrumb-section::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 4, 44, 0.7);
    z-index: -1;
}

.breadcrumb-title {
    font-size: 35px;
    color: var(--color-white);
    position: relative;
    text-transform: uppercase;
}

.breadcrumb-section a {
    color: var(--color-white);
}

.breadcrumb-section span {
    color: var(--color-light-white);
}

.breadcrumb-section span i {
    font-size: var(--fs-15);
    margin-left: 5px;
    margin-right: 5px;

}

/* -------------------- Basics --------------------- */
body {
    overflow-x: hidden;
    font-family: var(--roboto);
}

.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.title {
    font-size: 34px;
}

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

.main-list {
    list-style: none;
    padding-left: 0px;
    text-align: start;
}

.main-list li {
    text-indent: -13px;
    margin-left: 13px;
    margin-bottom: 10px;
}

.main-list li i {
    margin-right: 7px;
    color: var(--primary-color);
}

/* --------------------- Header ---------------------- */
.logo {
    width: auto;
    height: 50px;
}

.header {
    background-color: var(--color-white);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.header .nav-item {
    margin-right: 5px;
}

.header .nav-link {
    font-family: var(--poppins-medium);
    color: var(--secondary-color);
}

.header .nav-link:hover,
.header .nav-link.active {
    color: var(--primary-color);
}

.header .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.header .nav-item.dropdown .dropdown-menu {
    min-width: 180px;
    border: 0px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
}

.header .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
.header .nav-item.dropdown .dropdown-menu .dropdown-item:active {
    color: var(--primary-color);
    background-color: #f8f9fa;
}

.resiter-login-box a {
    font-family: var(--poppins-medium);
    text-decoration: none;
    color: var(--secondary-color);
}

.resiter-login-box a:hover {
    color: var(--primary-color);
}

.top-header {
    background-color: var(--secondary-color);
}

.top-header a,
.top-header span {
    color: var(--color-white);
    text-decoration: none;
    margin-right: 10px;
    font-size: 15px;
    white-space: nowrap;
}

.top-header a i,
.top-header span i {
    color: var(--primary-color);
    margin-right: 3px;
}

/* --------------------------- Footer ---------------------- */
.footer {
    padding-top: 60px;
    padding-bottom: 60px;
    color: var(--color-white);
    background-color: var(--secondary-color);
    position: relative;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.footer::before {
    position: absolute;
    content: '';
    background-image: url(../img/footer/footer.png);
    background-position: center center;
    background-size: cover;
    width: 140px;
    height: 138px;
    right: 60px;
    top: 70px;
    opacity: .2;
    -webkit-animation: rotate 30s infinite linear;
    animation: rotate 30s infinite linear;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::before {
    position: absolute;
    content: '';
    background: var(--color-white);
    height: 2px;
    width: 50px;
    left: 0;
    bottom: -10px;
}

.footer-links {
    list-style: none;
    padding-left: 0px;
}

.footer-links li {
    margin-bottom: 7px;
}

.footer-links a i {
    font-size: var(--fs-xsmall);
    color: var(--primary-color);
    margin-right: 5px;
    animation: tada 1.5s ease infinite;
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
        transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.footer-links a {
    color: var(--color-light-white);
    text-decoration: none;
}

.footer-links li:hover a {
    color: var(--color-white);
}

.footer .counter {
    font-family: var(--poppins);
    font-size: var(--fs-medium);
    color: var(--primary-color);
}

.footer .social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer .social-icons a {
    font-size: 22px;
    color: var(--secondary-color);
    background-color: var(--color-white);
    text-decoration: none;
    padding: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
}

.footer .social-icons a:hover {
    color: var(--primary-color);
    transform: scale(0.9);
    transition: all 0.3s;
}

.bottom-footer {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #03143b;
}

.bottom-footer .copyright-text {
    font-size: var(--fs-15);
    color: var(--color-white);
    margin-bottom: 0px;
}

/* ----------------- Login and Register -------------- */
.login-form,
.forgot-password-form,
.change-password-form,
.review-form,
.refer-to-friend-form  {
    max-width: 500px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 30px;
}

.login-form input[type="email"],
.login-form input[type="password"],
.forgot-password-form input[type="email"],
.change-password-form input[type="password"],
.review-form textarea,
.review-form select,
.refer-to-friend-form input[type="text"],
.refer-to-friend-form textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 14px;
    letter-spacing: 1px;
}

.login-form input[type="email"]::placeholder,
.login-form input[type="password"]::placeholder,
.change-password-form input[type="password"]::placeholder,
.forgot-password-form input[type="email"],
.review-form textarea::placeholder,
.refer-to-friend-form textarea::placeholder,
.refer-to-friend-form input[type="text"]::placeholder{
    font-size: 14px;
}

.login-form input:focus,
.forgot-password-form input[type="email"]:focus,
.change-password-form input[type="password"]:focus,
.review-form textarea:focus,
.review-form select:focus,
.refer-to-friend-form textarea:focus,
.refer-to-friend-form input[type="text"]:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #e16100;
    background-color: #ECEFF1;
}

.login-form .btn-primary,
.forgot-password-form .btn-primary,
.change-password-form .btn-primary,
.review-form .btn-primary,
.refer-to-friend-form .btn-primary {
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    border-radius: 0px;
    transition: all 0.4s ease-in;
}
.login-form .btn-primary:hover,
.forgot-password-form .btn-primary:hover,
.change-password-form .btn-primary:hover,
.review-form .btn-primary:hover,
.refer-to-friend-form .btn-primary:hover{
    background: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important ;
}
.forgot-password-form.form-card{
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 50px;
    border-radius: 15px;
    background: #fff;
}
/* ---------------------Sign Up---------------------- */

.signup-form {
    text-align: center;
    position: relative;
    margin-top: 20px
}

.signup-form fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.signup-form .form-card {
    text-align: left
}

.signup-form fieldset:not(:first-of-type) {
    display: none
}

.btn-secondary{
    border-color: var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
}

.dropdown-item.active, .dropdown-item:active{
    background: #f8f9fa;
}

.btn-primary,.btn-primary:hover{
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

.dropdown-item.active, .dropdown-item:active{
    background: #f8f9fa;
}

.signup-form input[type="text"],
.signup-form input[type="file"],
.signup-form input[type="email"],
.signup-form input[type="password"],
.signup-form input[type="date"],
.signup-form textarea,
.signup-form select {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 14px;
    letter-spacing: 1px;
}

.signup-form input[type="text"]::placeholder,
.signup-form input[type="file"]::placeholder,
.signup-form input[type="email"]::placeholder,
.signup-form input[type="password"]::placeholder,
.signup-form input[type="date"]::placeholder,
.signup-form textarea::placeholder {
    font-size: 14px;
}

.signup-form input:focus,
.signup-form textarea:focus, 
.signup-form select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #e16100;
    background-color: #ECEFF1;
}

.signup-form .input-group-text{
    font-size: 14px;
}

.signup-form .action-button,
.signup-form .action-button-previous {
    width: 100px;
    background: #e16100;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
}

.signup-form .action-button:hover,
.signup-form .action-button:focus,
.signup-form .action-button-previous:hover,
.signup-form .action-button-previous:focus {
    background-color: var(--secondary-color) !important;
    border: none;
}
.hidden {
    display: none;
}

.signup-card {
    z-index: 0;
    border: none;
    position: relative;
}

.fs-title {
    font-size: 25px;
    color: #e16100;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.fieldlabels {
    color: #817d7d;
    text-align: left
}

.fieldlabels span{
    color: red;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: #e16100
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 33.33%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar #personal:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f007";
}

#progressbar #recruitment:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f4ff";
}

#progressbar #login:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f13e";
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #e16100
}
.fnf-img{
	width:900px !important;
	height:700px !important;
	margin-left:150px !important;
}
.progress {
    height: 8px
}

.progress-bar {
    background-color: #e16100
}

.fit-image {
    width: 100%;
    object-fit: cover
}
.signup-form .input-group{
    margin-bottom: 5px;
}
.signup-form .form-check-input:checked{
    background-color: #e16100;
    border-color: #e16100;
}
.select-btn{
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 14px;
    letter-spacing: 1px;
}
.list-items{
	position: absolute;
	right: 0px;
	left: 0px;
	display: none;
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 16px;
    letter-spacing: 1px;
    max-height: 160px;
    overflow: auto;
}
.select-btn.open ~ .list-items{
	display: block;
}
.list-items .item{
	list-style: none;
	display: flex;
	align-items: center;
	gap: 12px;
	height: 35px;
    font-size: 14px;
	transform: 0.3s;
	padding: 0 10px;
}
.list-items .item.disabled{
    background-color: #d3d3d3;
    pointer-events: none;
    font-weight: bold;
}
.list-items .item:hover{
	background-color: #f1f1f1;
}
.arrow-dwn{
    float: right;
}
.arrow-dwn i{
    font-size: 11px;
    font-weight: 700;
}
.item .checkbox{
	height: 16px;
	width: 16px;
	border: 2px solid #000;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}
.item .checkbox .checked-icon{
    font-size: 14px;
    margin-left: 1px;
	color: #FF6915;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}
.item.checked .checkbox .checked-icon{
	transform: scale(1);
}
.p-relative{
    position: relative;
}
/*------Package Card----------*/
.pack-card {
	border:none;
	box-shadow: 0 0 10px 5px rgb(0 0 0 / 5%);
}
/* ---------------------- Home ------------------- */
.banner-section {
    min-height: 250px;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.banner-section::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    /* background: rgba(0, 4, 44, 0.6); */
    top: 0;
    left: 0;
    z-index: -1;
}

.banner-section::after {
    position: absolute;
    content: '';
    /* background-image: url(../img/banner/white-shape.png); */
    background-position: center center;
    background-size: cover;
    width: 100%;
    min-height: 350px;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.banner-section .content-box {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    text-align: center;
    width: 80%;
    max-width: 1000px;
}

.banner-title {
    font-size: 45px;
    margin-bottom: 20px;
}

.banner-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 45px;
}

.banner-form label {
    font-size: var(--fs-15);
    color: #5c5a5a;
    font-family: var(--poppins-medium);
    margin-bottom: 10px;
}

.banner-form .form-control {
    height: 60px;
    border-radius: 10px;
    padding: 12px 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.find-btn {
    background-color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    color: var(--color-white);
    border-radius: var(--br-10);
    position: relative;
    padding: 16px 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.find-btn:hover {
    background-color: var(--primary-color);
	color:#fff;
}

.job-category {
    border: 1px solid rgba(6, 18, 36, 0.1);
    margin: 5px;
    min-height: 100px;
    display: flex;
    justify-content: center;
}

.job-category:hover {
    transition: all 0.5s;
    border: 1px solid rgba(6, 18, 36, 0.3);
    box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
}

.job-category a {
    text-decoration: none;
    color: var(--secondary-color);
}

.job-category .card-body {
    display: flex;
    gap: 5px;
}

.job-category h5 {
    font-size: var(--fs-normal);
    margin-bottom: 3px;
}

.job-category p {
    font-size: var(--fs-small);
    margin-bottom: 0px;
}

.job-category img {
    max-width: 60px;
}

/* .job-category-2 {
    margin: 5px;
    border: 1px solid rgba(6, 18, 36, 0.1);
}

.job-category-2 img {
    max-width: 50px;
    margin-bottom: 5px;
}

.job-category-2 h5 {
    font-size: var(--fs-normal);
    margin-bottom: 3px;
}

.job-category-2 p {
    font-size: var(--fs-15);
    margin-bottom: 0px;
}

.job-category-2:hover {
    transition: all 0.5s;
    border: 1px solid rgba(6, 18, 36, 0.3);
    box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
} */

.why-choose-section {
    position: relative;
    color: var(--color-white);
    background-color: var(--secondary-color);
    z-index: 1;
}

.why-choose-section::before {
    position: absolute;
    content: '';
    background-image: url(../img/shapes/why-choose.png);
    background-size: cover;
    background-position: center center;
    top: 0;
    left: 0;
    width: 330px;
    height: 400px;
    z-index: -1;
}

.why-choose-left-content {
    padding: 100px 30px 70px;
}

.why-choose {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.why-choose-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose i {
    background: #182441;
    font-size: 30px;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 100px;
    display: inline-block;
    position: relative;
    top: -10px;
}

.why-choose h5 {
    font-size: var(--fs-medium);
    font-family: var(--poppins-medium);
    margin-bottom: 5px
}

.why-choose p {
    font-size: var(--fs-15);
    margin-bottom: 0px;
    color: var(--color-light-white);
}

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

.counter-section h4 {
    font-size: 45px;
    color: var(--primary-color);
    font-family: var(--poppins-medium);
}

.counter-section p {
    margin-bottom: 0px;
}

.looking-job-card {
    color: var(--color-white) !important;
    border: transparent;
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: var(--br-10);
}

.looking-job-card .card-body {
    display: flex;
    gap: 10px;
}

.looking-job-card .img-box i {
    font-size: 30px;
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    background-color: #fff1e6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.looking-job-card a {
    color: var(--color-white);
    text-decoration: none;
}

.looking-job-card a:hover {
    letter-spacing: 1px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.recruiting-card {
    color: var(--color-white) !important;
    border: transparent;
    background-color: var(--secondary-color);
    padding: 10px;
    border-radius: var(--br-10);
}

.recruiting-card .card-body {
    display: flex;
    gap: 10px;
}

.recruiting-card .img-box i {
    font-size: 30px;
    width: 60px;
    height: 60px;
    color: var(--secondary-color);
    background-color: #e9effb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recruiting-card a {
    color: var(--color-white);
    text-decoration: none;
}

.looking-job-card a i,
.recruiting-card a i {
    font-size: var(--fs-xsmall);
}

.recruiting-card a:hover {
    letter-spacing: 1px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.candidate-card {
    border: 0px;
    position: relative;
    height: 100%;
}

.candidate-card a {
    color: var(--secondary-color);
}

.candidate-card img {
    width: auto;
    height: 300px;
    object-fit: cover;
    border-radius: var(--br-10);
}

.candidate-card .content-box {
    position: relative;
    padding: 10px;
    background-color: var(--color-white);
    margin: 10px;
    margin-top: -70px;
    width: 90%;
    border-radius: var(--br-10);
    z-index: 2;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.candidate-card .content-box h5 {
    font-size: var(--fs-normal);
    color: var(--primary-color);
}

.candidate-card .content-box p {
    margin-bottom: 3px;
    font-size: var(--fs-small);
    margin-left: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.candidate-card .content-box i {
    color: var(--primary-color);
    margin-right: 3px;
}

.difference-card {
    text-align: center;
    background: var(--color-white);
    border-radius: 10px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 45px 30px;
    margin-bottom: 30px;
    position: relative;
    border: 0px;
}

.difference-card::before {
    position: absolute;
    content: '';
    background-image: url(../img/shapes/diffence.png);
    background-position: center center;
    background-size: cover;
    width: 145px;
    height: 100px;
    bottom: 0;
    left: 0;
}

.difference-card h4 {
    font-size: var(--fs-medium);
    color: var(--primary-color);
}

.difference-card i {
    color: var(--primary-color);
}

.selection-process-section {
    background-image: url(../img/backgrounds/home1.jpg);
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 0;
    background-attachment: fixed;
    padding-top: 60px;
    padding-bottom: 60px;
    color: var(--color-white);
}

.selection-process-section::before {
    position: absolute;
    content: '';
    background: rgba(1, 12, 41, 0.85);
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.selection-process-section h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.selection-process-section p {
    font-size: var(--fs-15);
    margin-bottom: 0px;
    color: var(--color-light-white);
}

.house-keeping-card {
    border: 1px solid #E0E6F7;
    padding: 40px 250px 40px 190px;
    position: relative;
    display: flex;
    box-shadow: 0px 10px 20px -5px rgba(10, 42, 105, 0.06);
    margin: auto;
    border-radius: 4px;
    overflow: hidden;
}

.house-keeping-card::before {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 15px;
    height: 120px;
    width: 150px;
    background: url(../img/svg/bg-left-hiring.svg) no-repeat 0px 0px;
    background-size: cover;
}

.house-keeping-card::after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: -5px;
    height: 120px;
    width: 250px;
    background: url(../img/svg/bg-right-hiring.svg) no-repeat 0px 0px;
    background-size: cover;
}

.house-keeping-card span {
    white-space: nowrap;
    text-transform: uppercase;
}

.house-keeping-card a {
    text-decoration: none;
    color: var(--secondary-color);
}

.work-card {
    position: relative;
    border: 1px dashed var(--color-light-primary);
    background-color: var(--color-white);
    transition: all 0.3s;
    height: 100%;
}

.work-card .img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.work-card .img-box i {
    font-size: 35px;
    color: var(--primary-color);
    background-color: var(--color-light-primary);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 35px;
    transition: all 0.3s;
}

.work-card .content-box h5 {
    font-size: var(--fs-medium);
    transition: all 0.3s;
}

.work-card .content-box p {
    font-size: var(--fs-15);
    transition: all 0.3s;
    margin-bottom: 0px;
}

.work-card:hover {
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.work-card:hover .img-box i {
    background-color: var(--color-light-white);
    transition: all 0.3s;
}

.work-card:hover h5,
.work-card:hover p {
    color: var(--color-white);
    transition: all 0.3s;
}

.profile-card {
    border-radius: 8px;
    border: 1px solid #E0E6F7;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    background: #F8FAFF;
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    height: 100%;
    padding-bottom: 50px;
    text-align: center;
}

.profile-card:hover {
    background-color: var(--color-white);
    transform: translateY(-3px);
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.profile-card hr {
    border: 1px solid #E0E6F7;
    opacity: 0;
}

.profile-card a {
    color: var(--secondary-color);
}

.profile-card .user-img {
    width: 100px;
    height: 120px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.detail-one h5 {
    font-size: var(--fs-normal);
    color: var(--primary-color);
}

.detail-one span {
    font-size: var(--fs-small);
}

.detail-two {
    font-size: var(--fs-15);
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 45px;
    left: 0px;
    background-color: rgba(225, 97, 0, 0.1);
    padding: 10px;
}

.detail-three {
    font-size: var(--fs-15);
    display: flex;
    justify-content: space-between;
}

.detail-three i {
    color: var(--primary-color);
    margin-right: 1px;
}

.profile-card .bottom-content {
    position: absolute;
    left: 0px;
    bottom: 10px;
}

/* -------------------- Pagination -------------- */
.pagination a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ccc;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.pagination a:hover {
    background-color: var(--primary-color);
}
.pagination li.active > .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
@keyframes fade-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    75% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
        opacity: 0;
    }
}

.pagination .page-item .page-link .fade-right {
    -webkit-animation: fade-right 3s infinite linear;
    animation: fade-right 3s infinite linear;
}

@keyframes fade-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    75% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: 0;
    }
}

/* -------------------- Carousels -------------- */
.category-carousel {
    position: relative;
}

.category-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    background-color: #f2f2f2 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    background-color: #f2f2f2 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-carousel .owl-nav .owl-prev:hover span,
.category-carousel .owl-nav .owl-next:hover span {
    color: var(--primary-color) !important;
    transform: scale(1.1);
    transition: all 0.3s;
}

.category-carousel .owl-nav span {
    line-height: 1;
}

.category-carousel .owl-dots {
    text-align: center;
    margin-top: 10px;
}

.category-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--color-light-primary);
    margin-right: 5px;
    border-radius: 50%;
}

.category-carousel .owl-dots .owl-dot.active {
    background-color: var(--primary-color);
}

.candidates-carousel .owl-dots {
    text-align: center;
    margin-top: 10px;
}

.candidates-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--color-light-primary);
    margin-right: 5px;
    border-radius: 50%;
}

.candidates-carousel .owl-dots .owl-dot.active {
    background-color: var(--primary-color);
}
/* ---------------------------Enquiry Page------------------------------ */
.enquiry-section .contact-card {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    padding: 25px 25px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    height: 100%;
}
.enquiry-section .contact-card i {
    color: #001935;
    border: 1px dashed #001935;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 25px;
}
.enquiry-section .contact-card p{
    margin-bottom: 0px;
}
.enquiry-section .contact-card ul {
    padding-left: 0;
    margin-bottom: 0;
}
.enquiry-section .contact-card ul li {
    list-style: none;
}
.enquiry-section .contact-card ul li span,
.enquiry-section .contact-card p span {
    font-weight: 600;
}
.enquiry-section .contact-card ul li a {
    color: #001935;
}
.enquiry-section .contact-card ul li a:hover{
    color: var(--primary-color);
}
.enquiry-section .contact-area {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 50px;
    border-radius: 50px;
    margin-top: 40px;
}
.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form textarea,
.enquiry-form select{
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 14px;
    letter-spacing: 1px;
}

.enquiry-form input[type="text"]::placeholder,
.enquiry-form input[type="email"]::placeholder,
.enquiry-form textarea::placeholder {
    font-size: 14px;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus, 
.enquiry-form select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #e16100;
    background-color: #ECEFF1;
}
.enquiry-form .btn-primary{
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    border-radius: 0px;
    transition: all 0.4s ease-in;
}
.enquiry-form .btn-primary:hover{
    background: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important ;
}

/* --------------------------Profile Detail------------------- */
.candidate-profile {
    text-align: center;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #E0E6F7;
}
.candidate-info-text {
margin-bottom: 25px;
-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
padding: 20px 30px;
border-radius: 10px;
border: 1px solid #E0E6F7;
}
.candidate-info-text .single-info p,
.candidate-info-text .bg-orange p{
margin-bottom: 0px;
padding: 10px;
}
.candidate-info-text .candidate-card .card-body{
    padding: 0px;
}
.bg-orange:nth-child(4n), 
.bg-orange:nth-child(4n-1) {
background-color: transparent; 
}

.bg-orange:nth-child(4n-2), 
.bg-orange:nth-child(4n-3) {
background-color: rgba(225, 97, 0, 0.2); 
}

@media (max-width: 992px) {
.row .col.bg-orange:nth-child(even) {
    background-color: #fff;
}

.row .col.bg-orange:nth-child(odd) {
    background-color: rgba(225, 97, 0, 0.2);
}
} 
/* -------------------------------FAQ Page---------------------------------- */
#faq .accordion-item {
    background-color: #f9f9f9;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07)
}

#faq .accordion-item .accordion-button.collapsed {
    box-shadow: none;
    cursor: pointer;
    padding: 15px 20px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background: #ffffff;
    position: relative;
    border-radius: 10px 10px 0 0; 
    color: #001935;
    line-height: 20px;
}
#faq .accordion-item .accordion-button {
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
}
#faq .accordion-item .accordion-button i{
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
#faq .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.accordion-button::after{
    display: none;
}
#faq .accordion-item .accordion-collapse .accordion-body {
    line-height: 1.7;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 0 0 5px 5px;
}
#faq .accordion-item .accordion-button.collapsed i{
    transform: unset;
}
#faq .accordion-item .accordion-collapse.show .accordion-body p {
    margin-bottom: 0px;
}


.terms-and-conditions-section h4{
    margin-bottom: 20px;
}
.terms-and-conditions-section h5{
    margin-bottom: 15px;
}
.terms-and-conditions-section p,
.privacy-policy-section p{
    line-height: 1.8;
    margin-bottom: 15px;
}
.disclaimer-section i{
    color: var(--primary-color);
    margin-right: 5px;
}

/* ------------------------------My Account------------------------------ */
.account-list img{
    width: 100px;
    height: 120px;
    border-radius: 10px;
}
.account-list ul{
    list-style: none;
    padding-left:0px;
}
.account-list {
    text-align: center;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #E0E6F7;
}
.account-list ul li a{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    background: transparent;
    /* text-transform: uppercase; */
    padding: 5px 15px 5px;
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease 0s;
    color: #000;
    width: 100%;
    display: block;
}
.account-list ul li a:hover,
.account-list ul li a.active{
    color: #fff;
    background: var(--primary-color);
    transition: all 0.3s ease 0s;
}
.edit-btn i{
    font-size: 26px;
    color: #000;
}
.edit-btn i:hover{
    color: var(--primary-color);
}
select.form-select option:hover {
    background-color: #ddd;
}