:root {
    --theme-color: #f3b41b;
    --theme-color-2: #FE2C55;
    --theme-color-3: #FE2C55;
    --theme-color-4: #f7f5f0;
}

* {
    font-family: "Roboto", sans-serif;
    transition: all 0.5s;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
}

body,
p {
    font-family: "Roboto", sans-serif;
    line-height: 26px;
    font-weight: normal;
    font-style: normal;
    color: #444;
    font-size: 16px;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
    animation: fadeInOut 10s ease forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
        display: none;
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        display: none;
    }
}


/* ============= */
img.main-logo {
    width: 200px;
    height: auto;
}

nav.navbar {
    background-color: #fff;
    transition: all 0.5s;
    width: 100%;
}

.navbar-custom {
    z-index: 1000;
    width: 100%;
}

nav.sub-navbar {
    position: absolute;
    width: 100%;
    z-index: 3;
    left: 0;
    right: 0;
    top: auto;
    bottom: auto;
}

ul.nav.sub-nav-areas {
    width: 100%;
    padding: 10px;
    border-top: 1px solid #edebe7;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    position: relative;
}

/* main.main-page-area section {
    padding-top: 100px;
} */

.nav-link {
    display: inline-block;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--theme-color-3);
}

.nav-link.active {
    color: var(--theme-color);
}

li.nav-item {
    margin-right: 20px;
}

nav.sub-navbar li.nav-item {
    position: static;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--theme-color);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--theme-color);
    color: #fff !important;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-toggle::after {
    content: "\f282";
    font-family: bootstrap-icons !important;
    border: none;
    vertical-align: -3px;
}

.dropdown-menu {
    top: 100%;
    left: 0;
    right: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    border: 1px solid #eaeaea;
    padding: 12px 0;
    display: block;
}

.nav-item.dropdown .dropdown-item {
    margin: 0;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #647082;
    text-align: left;
    border-radius: 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.25);
    transition: all 0.2s ease;
}

.nav-item.dropdown ul.dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.nav-item.dropdown .dropdown-item:hover {
    color: var(--theme-color-3);
    padding-left: 30px;
}

ul.dropdown-menu.full-menu {
    width: 100%;
    position: absolute;
    left: 0px;
    right: 0;
    padding: 20px;
}

h5.sub-menu-title {
    font-size: 18px;
    font-weight: 700;
}

ul.dropdown-menu-list {
    padding-left: 0;
    margin-bottom: 0px;
    list-style: none;
}

ul.dropdown-menu-list li.nav-item {
    font-size: 14px;
    margin-right: 0;
}

ul.dropdown-menu-list li.nav-item:hover {
    color: var(--theme-color-2);
}

ul.dropdown-menu-list li.nav-item a.nav-link {
    font-size: inherit;
    color: inherit;
    padding: 5px 0px 5px 10px;
}

img.menu-title-img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-radius: 15px;
}

a.login-btn {
    color: var(--theme-color);
}

.btn-button {
    color: #fff;
    background-color: var(--theme-color);
    padding: 16px 32px;
    border-radius: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.btn-button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.btn-red {
    background-color: var(--theme-color-2);
}

/* Banner */
section {
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

main.main-page-area section.banner-section {
    padding-top: 300px;
    padding-bottom: 100px;
    background: url(../image/hero-bg.jpeg) no-repeat center center / cover;
    z-index: 1;
    color: #fff;
}

section.banner-section::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 19, 28, 0.8);
    z-index: -1;
}

h1.banner-title {
    font-size: 60px;
    line-height: 70px;
    font-weight: 800;
    margin-bottom: 30px;
}

p.banner-text {
    color: #fff;
}

img.banner-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
}

.hero-form-wrapper {
    padding: 16px;
    border-radius: 50px;
    box-shadow: 0px 25px 63px 0px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    align-items: center;
    background-color: #fff;
    display: flex;
}

.hero-form-wrapper .form-select {
    border: 0;
    min-width: 165px;
}

.hero-form-wrapper .form-control {
    border: 0;
    border-left: 1px solid var(--dark-100);
    border-radius: 0;
    width: 65%;
}

.hero-search-area {
    position: relative;
    width: 75%;
}

.hero-form-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 16px 30px;
    color: var(--white);
    top: 0px;
    right: 0px;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
}

.tag-item {
    padding: 10px 14px;
    border-radius: 30px;
    color: var(--dark-100);
    border-radius: 500px;
    background: #1d2c32;
    box-shadow: 20px 20px 45px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-align: center;
    display: inline-block;
    line-height: 1;
}

p.search-title {
    color: #fff;
    margin-bottom: 0px;
}

/* Category */
h2.heading {
    font-size: 40px;
    color: #06131c;
    line-height: 50px;
    margin-bottom: 10px;
    font-weight: 700;
}

p.heading-description {
    font-size: 18px;
    color: #5b5b5b;
}

.section-head {
    margin-bottom: 2em;
    display: block;
}

.flex-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.flex-heading .section-title {
    flex: 1;
}

.flex-heading .section-btn {
    width: 30%;
    text-align: end;
}

a.view-btn {
    color: #5b5b5b;
    font-size: 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    gap: 10px;
}

a.view-btn:hover {
    color: var(--theme-color);
}

a.view-btn::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: var(--theme-color);
    bottom: -1px;
    left: 0;
    transition: all 0.5s;
}

a.view-btn:hover::before {
    width: 100%;
}

.bg-offWhite {
    background-color: var(--theme-color-4);
}

.category-card {
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    min-height: 230px;
    height: 100%;
}

.category-card:hover {
    border: 1px solid var(--theme-color);
}

img.category-icon {
    width: 65px;
    height: 72px;
    margin-bottom: 20px;
    object-fit: contain;
}

h3,
h3 a,
h3.cat-heading a {
    font-size: 18px;
    color: #06131c;
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    font-weight: 700;
    font-family: "IBM Plex Sans", sans-serif;
    text-wrap: auto;
}

h3 a:hover {
    color: var(--theme-color);
}

p.category-desc {
    margin-bottom: 0;
    color: #5b5b5b;
}

.bg-darkGreen {
    background-color: #13544e;
}

.cta-area-bg {
    padding: 60px;
    border-radius: 16px;
}

.sub-heading {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--theme-color);
}

.text-white h2.heading,
.text-white p.heading-description {
    color: #fff;
}

.cta-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.cta-counter {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-counter-item {
    background-color: #fff;
    padding: 20px 35px;
    border-radius: 10px;
    text-align: center;
}

.cta-counter-title {
    font-size: 40px;
    color: #06131c;
    font-weight: 700;
}

.cta-counter-desc {
    font-size: 16px;
    line-height: 26px;
    color: #5b5b5b;
    font-weight: 700;
    margin-bottom: 0;
}

.job-card {
    padding: 15px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
    gap: 10px;
    height: 100%;
    border: 1px solid transparent;
}

.job-card:hover {
    border: 1px solid var(--theme-color);
}

.job-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 15px;
    margin-right: 10px;
}

.job-content {
    flex: 1;
}

.job-status-badge {
    background-color: #fff;
    display: inline-block;
    font-size: 12px;
    padding: 5px 15px;
    line-height: normal;
    margin-bottom: 10px;
    border-radius: 1rem;
    color: var(--theme-color);
}


/* why choose */
.why-image-area {
    position: relative;
    width: 100%;
}

img.why-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

img.why-choose-float-2 {
    position: absolute;
    width: auto;
    height: auto;
    top: 30px;
    left: 0;
    animation: topToBottom 5s infinite linear;
}

img.why-choose-float-1 {
    width: auto;
    height: auto;
    position: absolute;
    bottom: 5%;
    right: 30px;
    animation: leftToRight 8s infinite linear;
}

@keyframes topToBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes leftToRight {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0px);
    }
}

.why-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 10px;
}

h3.heading {
    font-size: 24px;
}

.why-content h3.heading a {
    color: inherit;
}

.why-card {
    background-color: #fff;
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    border-radius: 15px;
    margin-top: 2em;
}

.why-card.active {
    transform: translateX(50px);
    background-color: var(--theme-color);
    color: #fff;
}

.why-card.active h3.heading,
.why-card.active p {
    color: #fff;
}

.mini-banner-bg {
    background: url(../image/cta-bg.png) no-repeat center center / cover;
    padding: 70px;
    border-radius: 16px;
    position: relative;
}

img.mini-banner-img {
    position: absolute;
    bottom: 0;
    right: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
}

section.mini-banner {
    padding-top: 150px;
}

/* Testimonial */
.testimonial-card {
    background-color: #fff;
    width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 5px solid var(--theme-color);
    margin-right: 30px;
}

.testimonial-body {
    padding: 24px 30px;
}

.quote-icon i {
    background-color: rgb(247, 245, 240);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: #06131c;
    margin-right: 10px;
}

.quote-text {
    color: #5b5b5b;
    font-size: 18px;
}

.testimonial-quote {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.testimonial-feedback {
    color: #5b5b5b;
    font-size: 16px;
    line-height: 26px;
}

.test-user-name {
    font-size: 18px;
    color: #06131c;
    font-weight: 700;
}

.testimonial-footer {
    padding: 20px;
    border-top: 1px solid #edebe7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-profile-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 100%;
}

.testimonial-profile-area {
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex: 1;
}

.test-user-position {
    font-size: 14px;
}

.testimonial-stars i {
    color: gold;
    display: inline-block;
    font-size: 18px;
}

.testimonial-slider-swipe {
    display: flex;
    align-items: start;
}

/* Membership card */
.membership-card {
    background-color: var(--theme-color-4);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    position: relative;
}

.membership-card:hover {
    border: 1px solid var(--theme-color);
}

h3.membership-price-name {
    font-size: 26px;
    margin-bottom: 20px;
}

.membership-price-amount {
    font-size: 50px;
    color: #06131c;
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    font-weight: 700;
    font-family: "IBM Plex Sans", sans-serif;
    text-wrap: auto;
}

span.membership-month {
    font-size: 22px;
    font-weight: 600;
}

.membership-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.membership-price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 2em;
}

ul.list-style li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

ul.list-style li::before {
    content: '\F633';
    font-family: bootstrap-icons !important;
    font-weight: 900;
    position: absolute;
    left: 0px;
    top: 5px;
    color: #fff;
    background: var(--theme-color);
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
    font-size: 12px;
}

ul.list-style li.not-yes::before {
    content: ' \F62A';
    background-color: var(--theme-color-2);
}

.subscription-btn {
    width: 100%;
    font-weight: 600;
    font-size: 18px;
}

/* footer */
img.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

footer.main-footer {
    padding-top: 100px;
    padding-bottom: 30px;
    background-color: #06131C;
}

p.footer-description {
    color: #fff;
    width: 70%;
    padding-top: 1em;
}

h2.footer-title {
    font-size: 28px;
    line-height: 33px;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 15px;
}

p.footer-title-desc {
    color: #fff;
    font-size: 14px;
}

.footer-newsletter-form {
    border: 1px solid #2c4253;
    border-radius: 50px;
    padding: 10px;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-newsletter-form .form-control {
    background-color: #22323f;
    border-radius: 50px;
    border: 1px solid #22323f;
    padding: 16px 32px;
    color: #fff;
}

.footer-newsletter-form .form-control:focus {
    background-color: #22323f;
}

.footer-newsletter-form .form-control::placeholder {
    opacity: 0.5;
    color: #fff;
}

.elementor-divider {
    padding-block-start: 50px;
    padding-block-end: 50px;
}

.elementor-divider-separator {
    display: block;
    border-block-start: 1px solid #2c4253;
}

ul.footer-list {
    list-style: none;
    padding: 0;
}

ul.footer-list li {
    color: #D9D9D9;
    font-size: 14px;
    display: flex;
    gap: 5px;
}

h4.footer-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-text {
    color: #D9D9D9;
}

.footer-app-img-area {
    display: flex;
    gap: 10px;
    align-items: center;
}

ul.footer-links {
    padding: 0;
    margin-bottom: 0;
}

ul.footer-links li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #D9D9D9;
}

ul.footer-links li::before {
    content: '\F138';
    font-family: bootstrap-icons !important;
    font-weight: 900;
    position: absolute;
    left: 0px;
    top: 5px;
    color: inherit;
    line-height: normal;
    font-size: 16px;
}

ul.footer-links li:hover {
    padding-left: 25px;
}

footer.secondary-footer {
    background-color: #0c1e2b;
}

.text-theme {
    color: var(--theme-color);
}

.social-media-links .social-media-icon {
    width: 38px;
    height: 38px;
    margin-left: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-media-links .social-media-icon:hover {
    background: var(--theme-color);
    color: #fff;
    transform: translateY(-3px);
}

.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: 2px solid var(--theme-color);
    background: transparent;
    color: var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #fff;
    color: var(--theme-color);
    transform: translateY(-4px);
}

/* Breadcrumb */

section.breadcrumb-sec {
    padding-top: 100px;
    background: url('../image/breadcrumb-bg.png') no-repeat center/cover;
}

section.breadcrumb-sec::after {
    position: absolute;
    content: "";
    opacity: 0.9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(90deg, #06131c 0%, rgba(6, 19, 28, 0) 100%);
}

h1.breadcrumb-title {
    font-size: 40px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

ol.breadcrumb-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
}

.breadcrumb-items {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding-right: 20px;
    position: relative;
}

.breadcrumb-items::after {
    content: "\f285";
    font-family: bootstrap-icons !important;
    position: absolute;
    top: 2px;
    right: 0;
    font-size: inherit;
    color: inherit;
    line-height: normal;
}

.breadcrumb-items.active {
    pointer-events: none;
    padding-right: 0;
    color: var(--theme-color);
}

.breadcrumb-items.active::after {
    content: none;
}

ul.check-list li {
    font-weight: 400;
    position: relative;
    list-style: none;
    margin-bottom: 10px;
}

ul.check-list li::before {
    content: '\F633';
    font-family: bootstrap-icons !important;
    font-weight: 900;
    position: absolute;
    left: -30px;
    top: 5px;
    color: #fff;
    background: var(--theme-color);
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
    font-size: 12px;
}

.about-img-group li:nth-child(2) {
    bottom: 0;
    left: 10%;
    top: 50%;
}

ul.about-img-group img {
    width: auto;
    height: auto;
    border-radius: 10px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0px 0px 25px rgba(220, 220, 220, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.feature-card:hover {
    background-color: #eca315;
}

.feature-card::after {
    background-color: #eca315;
    opacity: 0.1;
    width: 200px;
    height: 200px;
    position: absolute;
    right: -60px;
    bottom: -60px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    transition: 0.5s all ease;
}

.feature-card:hover::after {
    background: #fff;
    width: 500%;
    height: 500%;
}

.feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    font-family: "IBM Plex Sans", sans-serif;
    color: #444;
}

.feature-icon {
    width: 100px;
    height: 100px;
    line-height: 0;
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
    margin: 0px auto 30px;
    background: transparent;
    border-radius: 100%;
    transition: 0.5s all ease;
    overflow: hidden;
}

.feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    z-index: 1;
    transition: 0.5s all ease;
    scale: 1.15;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    transition: 0.8s all ease;
    clip-path: ellipse(0% 0%);
}

.feature-card:hover .feature-icon::before {
    clip-path: ellipse(100% 100%);
}

.feature-card:hover .feature-icon img {
    scale: 1;
}

.about-box {
    padding: 40px 30px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-image: url(../image/abt-1.jpg);
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.about-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    top: 0;
    right: 0;
    z-index: -1;
}

h4.title {
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-box.what-we-do {
    background-image: url(../image/abt-3.jpg);
}

.about-box.our-mission {
    background-image: url(../image/abt-1.jpg);
}

.about-box.our-vision {
    background-image: url(../image/abt-2.jpg);
}

.about-box h4.title,
.about-box p {
    color: #fff;
}

h4.feature-head {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card:hover h4.feature-head,
.feature-card:hover p {
    color: #fff;
}

p.tag-title {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
    margin-bottom: 5px;
}

section.feature-section-1 .hero-search-tag {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    flex-wrap: wrap;
    text-wrap-style: pretty;
}

.popular-search-tags {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tag-area {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
}

.tag-area span.tag-item {
    padding: 5px 10px;
    font-size: 14px;
    background: rgb(109 193 47 / 24%);
    color: var(--theme-color);
}

.feature-card:hover .tag-area span.tag-item {
    background: rgb(255 255 255 / 24%);
    color: #000000;
}

/* Job seeker */
.jobSeeker-img-area img {
    width: 100%;
    height: auto;
}

.ws-circle {
    width: 192px;
    height: 192px;
    border: 2px dashed var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 33px;
    transition: 0.3s;
    position: relative;
}

.ws-box-number {
    position: absolute;
    left: -18px;
    top: 40%;
    background: var(--theme-color-2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transform: scale(0.8);
    transition: 0.3s;
}

.ws-circle-icon {
    border-radius: 100px;
    background-color: var(--theme-color);
    width: 144px;
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h3.ws-box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme-color);
}

.work-row {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.col-div {
    flex: 0 0 auto;
    width: 20%;
}

.ws-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.ws-circle-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: invert(1);
}

.ws-box:hover .ws-box-number {
    transform: scale(1);
}

.work-row {
    position: relative;
    z-index: 1;
}

.work-row::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../image/dotted-line.jpg);
    background-size: 400px;
    background-repeat: repeat-x;
    opacity: 0.4;
    background-position-y: 100px;
}

section.testimonials-section-1 .testimonial-card {
    width: 100%;
    margin-bottom: 40px;
    box-shadow: 0 5px 9px rgb(0 0 0 / 20%);
    margin-right: 0;
}

/* FAQ */
.accordion .accordion-item {
    margin-top: 30px;
    border-radius: 5px !important;
    border: none !important;
}

.accordion-header button.accordion-button.collapsed {
    border-radius: 5px;
    background-color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.accordion .accordion-header .accordion-button:not(.collapsed) {
    background-color: #fff;
    font-size: 18px;
    font-weight: 800;
    color: var(--theme-color);
}

button:focus,
button:hover,
button:focus-visible {
    outline: none !important;
}

button.navbar-toggler:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: 0 1px rgb(0 0 0 / 14%) !important;
}

.accordion-button:focus {
    box-shadow: none;
}

/* contact us */
.contact-icon img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    object-fit: contain;
}

.contact-link {
    font-weight: 400;
    color: #5b5b5b;
    font-size: 18px;
}

.contact-content {
    flex: 1;
}

.contact-box {
    display: flex;
}

.contact-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
}

.contact-social-medias .social-media-links .social-media-icon {
    color: var(--theme-color);
}

.contact-social-medias .social-media-links .social-media-icon:hover {
    color: #fff;
}

.form-control,
.form-select,
.ts-control {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid transparent;
    padding: 16px 30px;
    box-shadow: none !important;
    outline: none !important;
    font-size: 16px;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    border: 1px solid transparent;
    outline: 0;
    box-shadow: none;
}

.job-post-sidebar .form-control,
.job-post-sidebar.form-select,
.job-post-sidebar.ts-control {
    padding: .375rem .75rem;
}

.map-container {
    border-radius: 1rem;
    filter: invert(1);
    overflow: hidden;
}

span.required {
    color: var(--theme-color);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.app-service-card {
    padding-left: 75px;
    padding-right: 75px;
    padding-bottom: 75px;
    padding-top: 100px;
    background-image: url(../image/app-bg.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

h2.app-title {
    color: #fff;
    font-size: 46px;
    font-weight: 400;
}

span.big-text {
    font-weight: 800;
}

.app-text {
    color: #fff;
    margin-bottom: 2em;
}

.app-btn-section {
    display: grid;
    align-items: center;
    align-content: center;
    justify-items: stretch;
    gap: 20px;
}

.app-btn-section .btn-button {
    font-size: 16px;
    padding: 10px 35px;
    gap: 10px;
    border-radius: 5rem;
    justify-content: center;
}

.app-btn-section .btn-button i {
    font-size: 28px;
    margin-right: 20px;
}

span.btn-text {
    font-weight: 500;
}

.app-btn-section .btn-button span.btn-text .small {
    font-size: 13px;
    font-weight: 300;
}

.btn-button.btn-white {
    background: #fff;
    color: #000;
}

.app-screen-shot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 30px;
    animation: float 1.5s infinite linear;
}

img.app-shapes-3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

img.app-shapes-2 {
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: -1;
}

img.app-shapes-1 {
    position: absolute;
    z-index: -1;
    bottom: 10%;
    left: 10%;
}

.apply-section-card {
    padding: 85px 74px;
    border-radius: 10px;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.apply-section-card.employee-apply-card {
    background-image: url(../image/apply-bg-1.png);
}

.apply-section-card.employer-apply-card {
    background-image: url(../image/apply-bg-2.png);
}

img.apply-person-1 {
    position: absolute;
    bottom: 0;
    z-index: -1;
    right: 10px;
}

h2.apply-area-text {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

.apply-area-text {
    max-width: 65%;
}

.app-screen-shot img {
    width: 200px;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
}

img.app-float-img-1 {
    position: relative;
    top: 100px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 22%);
}

.register-form-area {
    background-color: var(--theme-color-4);
    padding: 40px 20px;
    margin-top: 30px;
    border-radius: 10px;
}

.btn {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

button.btn {
    border: none;
}

.input-group button.btn {
    background-color: #f9f9f9;
    padding: 5px 24px 5px 10px;
    font-size: 14px;
    line-height: normal;
}

.input-group {
    border-radius: 5rem;
    overflow: hidden;
}

/* hide original radio */
.radio-box input[type="radio"] {
    display: none;
}

/* check icon style */
.radio-box .icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    position: relative;
}

/* When selected, show check mark */
.radio-box input[type="radio"]:checked+.icon::after {
    content: "\2713";
    font-size: 14px;
    color: #fff;
    background: var(--theme-color);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-box input[type="radio"]:checked~* {
    font-weight: 600;
}


.btn:focus,
.btn:focus-visible,
.btn:hover {
    border: none;
    outline: none;
    box-shadow: none;
}

button.submit-button {
    background: #a4ff91;
    width: 100%;
    border: 1px solid #457d42 !important;
    font-size: 16px;
    font-weight: 500;
}

button.submit-button:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.google-acc-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #fff;
    padding: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    width: 100%;
    border: none;
}

.or-divider {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}

.or-divider span {
    position: relative;
    z-index: 1;
    background-color: var(--theme-color-4);
    padding: 10px;
}

.or-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #cdcdcd;
    top: 50%;
    left: 0;
    right: 0;
    z-index: -1;
}

.form-check-input[type=checkbox] {
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.highlight {
    color: var(--theme-color);
    font-weight: 800;
}

div#otp-message .alert-success,
div#otp-message .alert-danger {
    margin-top: 10px;
    font-size: 14px;
    padding-left: 20px;
}

div#otp-message .alert-success {
    color: var(--theme-color);
}

div#otp-message .alert-danger {
    color: var(--theme-color-2);
}

.action-flex.text-end {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.save-btn {
    font-size: 20px;
    color: var(--theme-color);
    background-color: var(--theme-color-4);
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: none;
}


.tag {
    background-color: #f3f4f6;
    color: #787878;
    display: inline-block;
    border-radius: 4px;
    margin-right: 10px;
    line-height: 16px;
    padding: 6px 9px;
    font-size: 13px;
    font-weight: 500;
}

.tag.tag-green {
    background-color: #dfede2;
    color: #2d8b41;
}

.tag.tag-blue {
    background-color: #eaeef3;
    color: #3a6dad;
}

.tag.tag-red {
    background-color: #f3eaea;
    color: var(--theme-color-2);
}

.divider {
    padding-top: 30px;
    border-bottom: 1px solid rgba(24, 37, 27, .1);
    margin-bottom: 20px;
}

h3.title {
    font-size: 26px;
}

.job-details-card {
    padding: 40px 25px;
    background-color: var(--theme-color-4);
    border-radius: 10px;
}

h5.sidebar-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 1.5em;
}

.jd-icon i {
    display: flex;
    background-color: #fff;
    color: var(--theme-color);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    margin-right: 13px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: normal;
}

.jd-title {
    color: #475865;
    font-size: 14px;
}

.jd-value {
    font-weight: 700;
    font-size: 16px;
}

.job-details-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5em;
}

.profile-img-border {
    width: 100%;
    height: auto;
    position: relative;
}

img.user-profile {
    width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

img.verify-icon {
    width: 20px;
    margin-right: 10px;
    vertical-align: center;
}

.company-profile-img-wrapper {
    display: grid;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.company-details-card {
    background: #effff4;
    border-radius: 10px;
    padding: 40px;
}


.btn-primary {
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
    color: #fff;
    background-color: color-mix(in srgb, var(--theme-color) 85%, black);
    border-color: color-mix(in srgb, var(--theme-color) 85%, black);
}

.btn-outline-primary {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible {
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.modal-body .form-control {
    background-color: var(--theme-color-4);
}


/* ---------------- */

.card-icon-round i {
    width: 75px;
    height: 75px;
    background-color: #e5e7eb;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    border-radius: 100%;
}

span.card-title {
    font-size: 16px;
    color: #6c6c6c;
    font-weight: 400;
    display: block;
}

h4.card-hero {
    font-size: 46px;
    font-weight: 800;
}

.card .card-body.flex-body {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 40px 40px;
}

.job-post-card {
    background-color: #fff;
    padding: 20px 30px 20px 20px;
    border: 1px solid #F3F4F4;
    border-radius: 10px;
    position: relative;
    margin-bottom: 2em;
}

.job-post-card:hover {
    border: 1px solid var(--theme-color);
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.job-post-card-profile {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    border: 1px dashed #BFCAD2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.job-post-card-profile img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.jp-start {
    display: flex;
    align-items: stretch;
}

.job-post-card-content {
    flex: 1;
}

.jp-date {
    color: #5f6e7a;
    font-size: 14px;
}

.jp-details {
    font-size: 14px;
    color: #1c2e3d;
    display: flex;
    align-items: start;
    gap: 5px;
    position: relative;
    justify-content: end;
    flex-wrap: wrap;
}

.jp-details i {
    color: var(--theme-color);
    margin-right: 8px;
}

.view-btn {
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-btn::after {
    content: "\f138";
    font-family: bootstrap-icons !important;
    position: relative;
    transition: transform 0.5s;
}

.view-btn:hover {
    color: var(--theme-color);
}

.view-btn:hover::after {
    transform: translateX(5px);
}

label.form-label {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.empty-area {
    margin-bottom: 0;
    background-color: var(--theme-color-4);
    padding: 40px;
    text-align: center;
    border-radius: 0.375rem;
    border: 1px dashed #b9b9b9;
}


ul.pagination {
    gap: 10px;
}

ul.pagination .page-link {
    border-radius: 100% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    font-size: 14px;
    color: var(--theme-color);
}

ul.pagination .page-link:focus {
    z-index: 3;
    color: var(--theme-color);
    background-color: var(--bs-pagination-focus-bg);
    outline: 0;
    box-shadow: none;
}

ul.pagination .active>.page-link,
.page-link.active {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

/* Mobile default: hide filter */
@media (max-width: 767px) {
    .mobile-filter-hide {
        display: none;
    }

    .mobile-filter-show {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        height: 100%;
        background: #fff;
        z-index: 1050;
        overflow-y: auto;
        padding: 15px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }
}

/* Desktop always visible */
@media (min-width: 768px) {
    .mobile-filter-hide {
        display: block !important;
        position: static;
        height: auto;
        box-shadow: none;
    }
}

.job-post-card .btn-sec.flex {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin-top: 10px;
}