@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

:root {
    --main-font-family: SeekSans, "SeekSans Fallback", Arial, Tahoma, sans-serif;
    --body-font-family: "Roboto", sans-serif;

    /* Dark */
    --dark-50: #edebe7;
    --dark-100: #d9d9d9;
    --dark-200: #5b5b5b;
    --dark-300: #2b2f31;
    --dark-400: #0c1e2b;

    /* Light */
    --off-white: #f3fcf2;
    --white: #fff;

    /* lime */
    --lime-300: #238182;
    --green-300: #0e636b;

    /* Blue */
    --blue-300: #4b83fc;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--main-font-family);
    margin: 0;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a body {
    color: inherit;
    font-size: inherit;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
button {
    border: 0;
    background: none;
    font-family: var(--main-font-family);
}
p {
    margin: 0;
}
ul {
    list-style-type: none;
}
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}
body {
    overflow-x: hidden;
    font-family: var(--body-font-family);
}
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1440px;
        padding: 0 20px;
    }
}

/* Predefine Class */
.bg-white {
    background-color: var(--white);
}
.bg-offWhite {
    background-color: var(--off-white);
}
.bg-lightgreen {
    background-color: #f1faf7;
}
.bg-darkGreen {
    background-color: var(--green-300);
}
.bg-dark-300 {
    background-color: var(--dark-300);
}
.bg-blue-300 {
    background-color: var(--blue-300);
}
.bg-lime-300 {
    background-color: var(--lime-300);
}
.bg-darkLime {
    background-color: #14a800;
}
.text-dark-200 {
    color: var(--dark-200);
}
.text-dark-300 {
    color: var(--dark-300);
}
.text-lime-300 {
    color: var(--lime-300);
}
.text-14 {
    font-size: 14px;
}
.text-18 {
    font-size: 18px;
}
.text-24 {
    font-size: 24px;
}
.text-40 {
    font-size: 40px;
}
.w-shadow {
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.06);
}
.high-zindex {
    z-index: 2000;
}
.mt-n2 {
    margin-top: -2px;
}

/* Padding */
.pt-150 {
    padding-top: 150px;
}
.pb-150 {
    padding-bottom: 150px;
}
.pt-110 {
    padding-top: 110px;
}
.pb-85px {
    padding-bottom: 85px;
}
.pt-30 {
    padding-top: 30px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-110 {
    padding-bottom: 110px;
}
.pt-60 {
    padding-top: 60px;
}
.pb-60 {
    padding-bottom: 60px;
}
.pt-80 {
    padding-top: 80px;
}
.pb-80 {
    padding-bottom: 80px;
}
.py-60 {
    padding: 60px 0;
}
.py-80 {
    padding: 80px 0;
}
.py-110 {
    padding: 110px 0;
}
/* Margin */
.mt-60 {
    margin-top: 60px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}

/* Button */
.header-btn {
    background-color: var(--lime-300);
    padding: 16px 32px;
    border-radius: 30px;
    color: var(--white);
    line-height: 1;
    font-size: 16px;
    color: var(--white);
}
.header-btn svg {
    margin-right: 5px;
    margin-right: 5px;
}
.header-btn:hover {
    background-color: var(--green-300);
}
.w-btn {
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: none;
    gap: 10px;
    font-family: var(--main-font-family);
}

.w-btn-md {
    padding: 16px 30px;
    color: var(--dark-200);
    font-size: 18px;
    border-radius: 30px;
    background-color: var(--white);
}
.w-btn-md:hover {
    background-color: var(--lime-300);
    color: var(--white);
}

.w-btn {
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1;
    font-size: 16px;
}

.w-btn-secondary-lg {
    color: var(--white);
    background-color: var(--lime-300);
    padding: 16px 32px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.w-btn-black-lg {
    color: var(--white);
    background-color: var(--dark-300);
    padding: 16px 32px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.w-btn-blue-lg {
    color: var(--white);
    background-color: var(--blue-300);
    padding: 16px 32px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.w-btn-primary-sm {
    color: var(--white);
    background-color: var(--lime-300);
}
.w-btn-gray-sm {
    color: var(--dark-200);
    background-color: var(--dark-50);
    padding: 14px 24px;
    border-radius: 30px;
    text-align: center;
}
.w-btn-secondary-sm {
    color: var(--white);
    background-color: var(--lime-300);
    padding: 14px 24px;
    border-radius: 30px;
    text-align: center;
}
.w-btn-primary-icon {
    background-color: var(--lime-300);
    color: var(--white);
}
.w-btn-secondary-icon {
    background-color: var(--dark-50);
    color: var(--dark-300);
}
.w-btn-secondary-icon:hover {
    color: var(--white);
    background-color: var(--lime-300);
}

.w-btn-link {
    color: var(--dark-200);
    font-size: 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.w-btn-link::before {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: -5px;
    background: var(--lime-300);
    height: 1px;
    transition: 0.3s ease-out;
}

.w-btn-link svg {
    color: var(--dark-200);
    transition: 0.2s;
    position: relative;
    width: 15px;
    transition-delay: 0.2s;
    margin-left: 5px;
}
.w-btn-link:hover {
    color: var(--lime-300);
}
.w-btn-link:hover::before {
    width: 100%;
}
.w-btn-link:hover svg {
    transform: translateX(4px);
    color: var(--lime-300);
}

.w-btn-primary-xl {
    background: var(--white);
    border-radius: 50px;
    text-align: center;
    padding: 16px 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-300);
    gap: 10px;
    flex-shrink: none;
    line-height: 26px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.w-btn-secondary-xl {
    background-color: var(--lime-300);
    color: var(--white);
    padding: 16px 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    flex-shrink: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.w-btn-black-lg::before,
.w-btn-blue-lg::before,
.cta-btn-link::before,
.w-btn-secondary-lg::before,
.w-btn-secondary-xl::before,
.w-btn-primary-lg::before,
.w-btn-primary-xl::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;
}
.w-btn-black-lg:hover::before,
.w-btn-blue-lg:hover::before,
.cta-btn-link:hover::before,
.w-btn-secondary-lg:hover::before,
.w-btn-secondary-xl:hover::before,
.w-btn-primary-lg:hover::before,
.w-btn-primary-xl:hover::before {
    animation: shine 1.5s ease-out infinite;
}
.w-btn-secondary-xl:hover,
.w-btn-primary-lg:hover,
.w-btn-primary-xl:hover {
    background-color: var(--lime-300);
    color: var(--white);
}

.w-btn-primary-lg {
    background: var(--off-white);
    border-radius: 50px;
    text-align: center;
    padding: 17px 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-300);
    line-height: 1;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.not-found-img {
    max-height: 680px;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/* Custom Dropdown */
.custom-dropdown.dropdown {
    width: 200px;
}
.custom-dropdown-toggle.dropdown-toggle {
    background-color: var(--white);
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    padding: 16px 25px;
    min-width: 200px;
    width: 100%;
}
.custom-dropdown-toggle.dropdown-toggle::after {
    display: none;
}
.custom-dropdown-menu.dropdown-menu {
    width: 100%;
}
.custom-dropdown-menu.dropdown-menu .dropdown-item {
    color: var(--dark-200);
    display: inline-flex;
    justify-content: space-between;
}
.custom-dropdown-menu.dropdown-menu .dropdown-item:hover {
    color: var(--lime-300);
    background-color: var(--dark-50);
}

.custom-dropdown-menu input[type="range"]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 70%;
    background: var(--lime-300);
    pointer-events: auto;
    -webkit-appearance: none;
}
.custom-dropdown-menu.dropdown-menu .form-check-input:checked {
    background-color: var(--lime-300);
    border-color: var(--lime-300);
}

/* Custom Pagination */
.custom-pagination.pagination {
    gap: 16px;
    flex-wrap: wrap;
}
.custom-page-link.page-link {
    background-color: transparent;
    width: 48px;
    height: 48px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 50%;
    color: var(--dark-200);
    border-color: var(--dark-100);
}
.custom-page-link.page-link:hover {
    background-color: var(--lime-300);
    color: var(--white);
    border: transparent;
}
.custom-page-item.page-item:last-child .page-link,
.custom-page-item.page-item:first-child .page-link {
    border: 0;
    width: 100%;
}
.custom-page-item.page-item:last-child .page-link:hover,
.custom-page-item.page-item:first-child .page-link:hover {
    color: var(--lime-300);
    background-color: transparent;
}
.custom-page-item.page-item.active > .page-link,
.page-link.active {
    background-color: var(--lime-300);
    color: var(--white);
    border: transparent;
}
/*Custom Pagination End */
/* Section */
.section-subtitle {
    font-size: 18px;
    color: var(--lime-300);
}
.section-title {
    font-size: 40px;
    color: var(--dark-300);
    line-height: 50px;
    margin-bottom: 10px;
}
.section-title-light {
    font-size: 40px;
    color: var(--white);
    line-height: 50px;
}
.section-desc {
    font-size: 18px;
    color: var(--dark-200);
}
.section-desc-light {
    font-size: 18px;
    color: var(--white);
}

/* Swiper Navigation */

.swiper-prev,
.swiper-next {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 50%;
    color: var(--lime-300);
    border: 1px solid var(--lime-300);
}

.swiper-prev:hover,
.swiper-next:hover {
    background-color: var(--lime-300);
    color: var(--white);
    border: 1px solid var(--lime-300);
}

.swiper-prev svg,
.swiper-next svg {
    width: 24px;
    height: 24px;
}

/* Swiper End */

/* Navbar Start */

.navbar .navbar-nav .nav-item:hover .nav-link {
    color: var(--lime-300);
}

.navbar .navbar-nav .nav-link {
    font-size: 18px;
    letter-spacing: -0.2px;
    line-height: initial;
    color: var(--dark-300);
    padding: 15px 0;
    margin: 0 26px;
    position: relative;
}

.navbar .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 0 15px;
    letter-spacing: 0px;
    text-transform: capitalize;
    line-height: 32px;
    margin-bottom: 5px;
    color: var(--dark-300);
    background: transparent;
    display: inline-block;
    position: relative;
    transition: all 0.35s;
    white-space: inherit;
}

.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: var(--lime-300);
}

.navbar .dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    border: none !important;
    font-size: 12px;
    font-weight: 900;
    position: absolute;
    line-height: 30px;
    color: var(--dark-300);
    top: calc(50% - 15px);
    text-align: center;
    transition: all 0.3s ease;
}

.navbar .dropdown-submenu:hover > .dropdown-toggle::after {
    transform: rotate(90deg);
}
.header-primary.header-transparent.sticky,
.header-primary.sticky {
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--green-300);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    width: 100%;
    z-index: 200;
    transition: 0.3s ease-in;
    -webkit-animation: upsdown 1000ms;
    animation: upsdown 1000ms;
}
.header-primary.header-transparent .become-seller-link {
    color: #fff;
}
.header-primary.header-transparent.sticky .become-seller-link {
    color: #fff;
}
.header-primary.header-transparent .logo-green {
    display: none;
}
.header-primary.header-transparent.sticky .logo-transparent {
    display: none;
}
.header-primary.header-transparent.sticky .logo-green {
    display: block;
}

/*----- For Desktop -------*/
@media screen and (min-width: 1199.5px) {
    .header-primary {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        background-color: var(--lime-300);
    }
    .header-primary.header-transparent {
        background-color: #0e636b;

        border-bottom: 1px solid #586063;
    }
    .header-primary.header-transparent.sticky {
        border-bottom: none;
    }
    .header-primary.header-transparent.sticky .navbar .navbar-nav .nav-link,
    .header-primary .navbar .navbar-nav .nav-link {
        color: #fff;
    }
    .header-primary.header-transparent .navbar .navbar-nav .nav-link {
        color: #fff;
    }

    .header-primary.header-transparent.sticky
        .navbar
        .navbar-nav
        .nav-link::after,
    .header-primary .navbar .navbar-nav .nav-link::after {
        color: #fff;
    }
    .header-primary.header-transparent .navbar .navbar-nav .nav-link::after {
        color: #fff;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 16px;
        letter-spacing: -0.2px;
        line-height: initial;
        color: var(--dark-300);
        font-weight: 400;
        padding: 30px 0;
        margin: 0 25px;
        position: relative;
    }
    .nav-item:hover .nav-link::after {
        transform: rotate(-180deg);
        color: var(--dark-300);
    }

    .navbar .dropdown-menu {
        z-index: 20;
        background-color: var(--white);
        display: block;
        right: 0;
        left: 0;
        padding: 10px;
        border: none;
        top: 110%;
        visibility: hidden;
        transform: scale(1, 0);
        opacity: 0;
        min-width: 200px;
        box-shadow: 0px 50px 100px rgba(0, 0, 0, 0.12);
        margin: 0;
        transform-origin: 0 0;
        transition: all 0.3s ease-in-out;
    }

    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 10px);
        top: 100%;
        right: auto;
        min-width: 240px;
        box-shadow: 0 20px 30px -10px rgb(0, 0, 0, 0.15);
        transform: scale(0, 1);
    }
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    .navbar .navbar-nav .nav-item.dropdown:hover .nav-link.dropdown-toggle {
        transition: all 0.4s ease-in-out;
    }
    .navbar
        .navbar-nav
        .nav-item.dropdown:hover
        .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
        color: var(--interface-4);
    }
    .header-primary.header-transparent.sticky .navar-right-transparent a,
    .header-primary.header-transparent.sticky .navar-right-transparent button {
        color: var(--dark-300);
    }
}

/*----- For Mobile ----*/
@media screen and (max-width: 1199px) {
    .header-primary {
        width: 100%;
        z-index: 10000;
        background-color: var(--lime-300);
    }
    .header-primary.header-transparent {
        background-color: transparent;
        position: absolute;
    }
    .header-primary .nav-item .nav-link {
        color: var(--dark-300);
        font-size: 16px;
    }
    .header-primary .nav-item .nav-link::after {
        color: var(--dark-300);
    }
    .header-primary .nav-item:hover .nav-link ::after {
        transform: rotate(-180deg);
    }
    .navbar {
        padding: 12px 0;
    }
    .header-primary .navbar-toggler span {
        background: var(--dark-300);
    }
    .header-primary .navbar-toggler span::after,
    .header-primary .navbar-toggler span::before {
        background: var(--dark-300);
    }
    .navbar-collapse .logo {
        margin-bottom: 3vh;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        background-color: var(--white);
        left: 0;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        clear: both;
        width: 320px;
        max-width: calc(100vw - 60px);
        z-index: 9999;
        transform: translateX(-100%);
        display: block !important;
        padding: 32px 15px 20px;
        transition: all 0.3s ease-in-out;
    }
    .navbar-collapse.show {
        transform: translateX(0);
        box-shadow: 15px 0 25px rgba(35, 35, 35, 0.1);
    }

    .navbar .navbar-nav .nav-link {
        margin: 0;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar .dropdown-menu .dropdown-item {
        padding: 0 10px;
        font-size: 16px;
    }
    .navbar .dropdown-menu {
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0;
        background-color: var(--white);
        border-radius: 0;
        margin: 0;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 15px;
    }

    .navbar .show.dropdown-toggle::after {
        transform: rotate(180deg);
        color: var(--lime-300);
    }
}

@-webkit-keyframes upsdown {
    0% {
        transform: translateY(-100px);
        visibility: hidden;
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
}

@keyframes upsdown {
    0% {
        transform: translateY(-100px);
        visibility: hidden;
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
}

/* Navbar Toggler */
.header-primary.header-transparent .navbar-toggler span {
    background-color: var(--white);
}
.header-primary.header-transparent .navbar-toggler::after,
.header-primary.header-transparent .navbar-toggler::before {
    background-color: var(--white);
}
.header-primary.header-transparent.sticky .navbar-toggler span {
    background-color: var(--dark-300);
}
.header-primary.header-transparent.sticky .navbar-toggler::after,
.header-primary.header-transparent.sticky .navbar-toggler::before {
    background-color: var(--dark-300);
}

.navbar-toggler {
    width: 38px;
    height: 38px;
    padding: 0;
    box-shadow: none;
    position: relative;
    right: 0;
    z-index: 99;
    border: none;
}
.navbar-toggler span {
    position: absolute;
    left: 9px;
    overflow: hidden;
    width: 26px;
    height: 2px;
    margin-top: -1px;
    text-indent: 200%;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
    background: var(--dark-300);
}
.navbar-toggler::after,
.navbar-toggler::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 9px;
    width: 26px;
    height: 2px;
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: var(--dark-300);
}
.navbar-toggler::after {
    -webkit-transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
    transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
}
.navbar-toggler::before {
    -webkit-transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
    transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler[aria-expanded="true"] span {
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"]::before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}
.navbar-toggler[aria-expanded="true"]::after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.select-dropdown span {
    font-size: 16px;
}

.select-dropdown.nice-select::after {
    border: 0;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    border: none !important;
    font-size: 12px;
    font-weight: 900;
    position: absolute;
    line-height: 30px;
    color: var(--dark-300);
    top: calc(50% - 15px);
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    height: auto;
    margin-top: 0;
    pointer-events: none;
    position: absolute;
    right: 12px;
    transform-origin: 0;
    transform: none;
    width: auto;
}
.header-primary.header-transparent .select-dropdown.nice-select {
    background-color: transparent;
}
.header-primary.header-transparent .select-dropdown.nice-select span {
    color: #fff;
}
.header-primary.header-transparent .select-dropdown.nice-select::after {
    color: var(--white);
}
.header-primary.header-transparent.sticky .select-dropdown.nice-select {
    background-color: transparent;
}
.header-primary.header-transparent.sticky .select-dropdown.nice-select span {
    color: var(--dark-200);
}
.header-primary.header-transparent.sticky .select-dropdown.nice-select::after {
    color: var(--dark-200);
}

/* Navbar  End */

/*****************
 Secondary Nav
 *****************/
.secondary-nav-wrapper {
    padding-top: 95px;
}
.secondary-nav-container {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid #edebe7;
}

.secondary-nav li a {
    padding: 16px 21px;
    display: block;
    font-size: 16px;
    color: var(--dark-200);
    white-space: nowrap;
}

.secondary-nav li a:hover {
    color: var(--lime-300);
}
.secondary-nav li:last-child button {
    padding: 16px 20px;
}
.modal-backdrop {
    z-index: 500;
    width: 100%;
    height: 100%;
}
/* Category Modal */
.category-nav ul li a {
    font-size: 16px;
    color: var(--dark-200);
    line-height: 30px;
    transition: all 0.3s ease-in;
}
.category-nav ul li a:hover {
    color: var(--lime-300);
    text-decoration: underline;
}
/* Category Modal End*/
/*****************
 Secondary Nav End
 *****************/

/************
Breadcrumb
************/
.w-breadcrumb-area {
    position: relative;
    padding: 150px 0 90px 0;
}
.w-breadcrumb-area::after {
    position: absolute;
    content: "";
    opacity: 0.9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        90deg,
        #06131c 0%,
        rgba(6, 19, 28, 0) 100%
    );
}
.w-breadcrumb .breadcrumb-item a {
    color: var(--white);
}
.w-breadcrumb.breadcrumb .breadcrumb-item.active {
    color: var(--lime-300);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}
/**************
Breadcrumb End
***************/

/**************
Hero Start
***************/
.hero-one {
    padding: 170px 0 50px 0;
}

.hero-one-title {
    font-size: 72px;
    color: var(--white);
}
.highlighted-text {
    color: var(--lime-300);
}
.hero-form-wrapper {
    padding: 16px;
    border-radius: 50px;
    box-shadow: 0px 25px 63px 0px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}
.hero-form-wrapper .form-select {
    border: 0;
}
.hero-form-wrapper .form-control {
    border: 0;
    border-left: 1px solid var(--dark-100);
    border-radius: 0;
}
.hero-form-btn {
    background-color: var(--lime-300);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 16px 30px;
    color: var(--white);
    top: 0;
    right: 0;
    margin: 6px;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}
.hero-form-btn:hover {
    background-color: var(--green-300);
}
.hero-group-img-wrapper .hero-group-img {
    margin-left: -20px;
}
.hero-group-img-wrapper .hero-group-img:first-of-type {
    margin-left: 0;
}
.hero-counter-title {
    font-size: 30px;
}
.hero-rating {
    padding-left: 20px;
    border-left: 1px solid var(--white);
}
/* Hero Two */
.hero-two {
    /* min-height: 100vh; */
    padding: 350px 0 170px 0;
}
.hero-two::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    opacity: 90%;
    width: 100%;
    height: 100%;
    background-color: #1b4747;
}
.hero-two-title {
    font-size: 60px;
    line-height: 70px;
}
.hero-two-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.tag-item {
    padding: 10px 14px;
    border-radius: 30px;
    color: #a3a3a3;
    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;
}
/**************
Hero End
***************/

/******************
Feature Categories
*******************/
.feature-category-card {
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    height: 230px;
}
.feature-category-link a {
    font-size: 18px;
    color: var(--dark-300);
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}
.feature-category-link a:hover {
    color: var(--lime-300);
}
.feature-category-desc {
    color: var(--dark-200);
}
.feature-category-card:hover {
    border-color: var(--lime-300);
}
/**********************
Feature Categories End
**********************/

/**********************
Recent Job Post
**********************/

.job-post {
    padding: 20px;
    border-radius: 16px;
}
.job-type-badge {
    left: 20px;
}
.job-type-badge-primary,
.job-type-badge-secondary,
.job-type-badge-tertiary {
    display: inline;
    line-height: 1;
    border-radius: 30px;
    padding: 4px;
    font-size: 10px;
    text-align: center;
}
.job-type-badge-primary {
    background-color: var(--white);
    color: var(--dark-300);
}
.job-type-badge-secondary {
    background-color: var(--lime-300);
    color: var(--white);
}
.job-type-badge-tertiary {
    background-color: var(--dark-50);
    color: var(--dark-300);
}
.job-post-icon {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    background-color: #13544e;
    margin-bottom: 30px;
    display: inline-block;
}
.job-post-subtitle {
    font-size: 18px;
    color: var(--dark-300);
    margin-bottom: 10px;
}
.job-post-title a {
    font-size: 18px;
    color: var(--dark-300);
    margin-bottom: 35px;
    display: block;
    text-align: center;
}

.job-post-horizontal {
    padding: 10px;
    border-radius: 10px;
}
.job-price-range {
    font-size: 14px;
}
.job-post-horizontal-img img {
    border-radius: 8px;
}
.job-post-horizontal-title {
    color: var(--dark-300);
    font-size: 18px;
    line-height: 26px;
}
.job-post-horizontal-title:hover {
    color: var(--lime-300);
}
/**********************
Recent Job Post End
**********************/

/*****************
 Business Widget
 *****************/
.widget-wrapper {
    border-radius: 16px;
    /* padding: 50px 60px; */
}
.widget-title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
}
.widget-desc {
    margin-bottom: 20px;
    font-size: 18px;
}
.widget-list {
    position: relative;
}
.widget-list-item {
    font-size: 18px;
    position: relative;
    padding-left: 12px;
}
.widget-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--white);
    top: 50%;
    transform: translateY(-50%);
}
.widget-video {
    position: relative;
}
.widget-video-btn {
    background-color: var(--white);
    color: var(--lime-300);
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/*******************
Business Widget End
********************/

/**************
 Cta Start
 **************/
.cta-area-bg {
    padding: 60px;
    border-radius: 16px;
}
.cta-subtitle {
    font-size: 18px;
    color: var(--white);
}
.cta-counter {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-counter-item {
    background-color: var(--white);
    padding: 20px 35px;
    border-radius: 10px;
    text-align: center;
}
.cta-counter-title {
    font-size: 40px;
    color: var(--dark-300);
}
.cta-counter-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-200);
}
.cta-img img {
    border-radius: 10px;
}
.cta-wrapper {
    padding: 70px;
    border-radius: 16px;
}
.cta-people {
    top: -22%;
    right: 5%;
}
.cta-btn-link {
    padding: 20px 30px;
    border-radius: 50px;
    background-color: var(--lime-300);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 18px;
    color: var(--white);
    gap: 5px;
    position: relative;
    overflow: hidden;
}
/**************
 Cta End
 **************/

/* Top Seller Card */

.top-seller-card {
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.4s ease;
}
.top-seller-card.style-two:hover {
    background-color: var(--off-white);
}
.top-seller-card.style-two:hover .w-btn-primary-lg {
    background-color: var(--lime-300);
    color: var(--white);
}
.seller-type {
    display: flex;
    gap: 5px;
}
.seller-type-badge {
    background-color: var(--off-white);
    border-radius: 30px;
    padding: 4px 8px;
    font-size: 10px;
    color: var(--dark-300);
    display: inline-block;
}
.seller-type-badge.green {
    background-color: var(--lime-300);
    color: var(--white);
}
.seller-profile-img img {
    width: 110px;
    height: 110px;
    border-radius: 100%;
}

.top-seller-name {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--dark-300);
}
.top-seller-title {
    color: var(--dark-200);
    font-size: 14px;
    margin-bottom: 5px;
}
.top-seller-rating {
    color: var(--dark-300);
    gap: 5px;
}
.top-seller-review {
    color: var(--dark-200);
}
.freelancer-tab-link {
    background-color: var(--green-300);
    color: var(--white);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.freelancer-tab-link.active {
    background-color: var(--lime-300);
}

/* Top Seller Card End*/

/*******************
Testimonial
********************/
.testimonial-card {
    border-radius: 12px;
    position: relative;
    border-bottom: 4px solid var(--lime-300);
}

.testimonial-content {
    padding: 24px 30px;
    border-bottom: 1px solid #edebe7;
}
.testimonial-title {
    color: var(--dark-200);
    font-size: 18px;
}
.testimonial-feedback {
    color: var(--dark-200);
    font-size: 16px;
    line-height: 26px;
    padding-top: 20px;
}
.testimonial-meta {
    padding: 20px 30px;
}
.testimonial-author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.testimonial-author-name {
    font-size: 18px;
    color: var(--dark-300);
}
.testimonial-author-title {
    color: var(--dark-200);
    font-size: 14px;
}
.testimonialsSlider .swiper-wrapper,
.testimonialsSliderBottom .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}
/*******************
Testimonial End
********************/

/*******************
Service Card
********************/
/* Service Filter */
.service-filter-btn {
    padding: 14px 20px;
    border: 1px solid var(--lime-300);
    border-radius: 30px;
    height: 46px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    color: var(--dark-300);
    transition: all 0.3s ease;
}
.service-filter-btn:hover {
    background-color: var(--lime-300);
    color: var(--white);
}
.service-filter-btn.active {
    background-color: var(--lime-300);
    color: var(--white);
    border-color: transparent;
}

/* Service Card Two */
.service-card-two {
    border-radius: 8px;
    transition: all 0.4s ease;
    background-color: var(--white);
    transition: all 0.4 ease-in;
}
.service-card-two.style-three {
    background-color: transparent;
}
.service-card-two.style-three:hover {
    background-color: var(--off-white);
}

.service-card-two-img {
    border-radius: 8px;
}
.service-card-two-body {
    padding: 25px 20px;
}

/* Service Card One */

.service-card {
    border-radius: 16px;
    padding: 8px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    border-color: var(--lime-300);
}
.service-card-wishlist-btn {
    background-color: var(--white);
    color: var(--lime-300);
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    right: 16px;
}
.recently-view-card-img {
    border-radius: 12px;
}

.service-card-content {
    padding: 20px 12px 12px;
}
.service-card-price {
    color: var(--lime-300);
}
.service-card-rating {
    font-size: 16px;
    color: var(--dark-200);
    line-height: 1;
}
.service-card-title {
    line-height: 1.4;
    padding: 12px 0;
    color: var(--dark-200);
    font-size: 18px;
}
.service-card-title a {
    position: relative;
    background-image: linear-gradient(#000000, #000000),
        linear-gradient(#ffffff, #ffffff);
    background-size: 0 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: all 0.5s;
}

.service-card-title a:hover {
    background-size: 100% 1px;
}
.service-card-author {
    padding-top: 16px;
    border-top: 1px solid #edebe7;
    gap: 12px;
}
.service-card-author.style-two {
    padding: 16px 0;
    border-top: 1px solid #edebe7;
    border-bottom: 1px solid #edebe7;
}
.service-card-author.horizontal {
    border: 0;
    padding: 0;
}
.service-card-author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.service-card-author-name {
    font-size: 18px;
    color: var(--dark-300);
    line-height: 1;
}
.service-card-author-name:hover {
    color: var(--lime-300);
}
.service-card-horizontal {
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}
.service-card-horizontal:hover {
    border: 1px solid var(--lime-300);
}
.wishlist-btn-horizontal {
    background-color: #f7f5f0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--lime-300);
}
/* Service Card Horizontal */

.service-payment-btn {
    border-radius: 4px;
    background-color: var(--white);
    padding: 14px 30px;
    border: 1px solid transparent;
    position: relative;
    min-width: 180px;
}
.service-payment-btn.active {
    border: 1px solid var(--lime-300);
}
.payment-checked-icon {
    position: absolute;
    left: 10px;
    /* padding-right: 10px; */
}
/*******************
Service Card End
********************/

/*******************
About Pages
********************/

/***********************
Service Details Start
***********************/
.job-details-slider-img {
    border-radius: 16px;
}
.service-details-content {
    padding: 20px;
    border-radius: 16px;
}
.service-details-title {
    font-size: 40px;
    line-height: 50px;
}
.service-details-subtitle {
    font-size: 24px;
    line-height: 26px;
    color: var(--dark-300);
}
.service-title-secondary {
    font-size: 18px;
}

.swiper-nav-btn .swiper-button-next,
.swiper-nav-btn .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.swiper-nav-btn .swiper-button-next::after,
.swiper-nav-btn .swiper-button-prev::after {
    font-size: 16px;
    color: var(--dark-200);
}

.service-review-count {
    width: 200px;
    height: 190px;
}
.review-progress-wrapper {
    background-color: #d2d2d2;
    height: 12px;
    border-radius: 30px;
    width: 100%;
}
.review-progress-bar {
    background-color: var(--lime-300);
    height: 12px;
    border-radius: 30px;
}
.review-card {
    padding: 40px;
    border-radius: 10px;
}
.reply-btn {
    background-color: var(--dark-50);
    color: var(--green-300);
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s;
}
.reply-btn:hover {
    background-color: var(--green-300);
    color: var(--white);
}
.seller-reply {
    border-top: 1px solid var(--dark-50);
}
/*Package Tabs
 */
.package-tabs {
    background-color: var(--dark-50);
    padding: 16px 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.package-tab-content {
    padding: 30px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.package-tab-btn {
    color: var(--dark-300);
    font-size: 18px;
    font-family: var(--main-font-family);
}
.package-tab-btn.active {
    color: var(--lime-300);
    text-decoration: underline;
}
.package-name {
    font-size: 18px;
}
.package-price {
    font-size: 24px;
}
.package-title {
    font-size: 18px;
    color: var(--dark-200);
}

/***********************
Service Details End
***********************/

/***********************
Freelancer Details Start
***********************/
.freelancer-avatar {
    width: 110px;
    height: 110px;
}
.freelancer-name {
    font-size: 24px;
    line-height: 26px;
}
.freelancer-sidebar-title {
    font-size: 18px;
    margin-bottom: 20px;
}
.freelancer-single-info {
    border-color: var(--dark-50);
}
.single-skill {
    background-color: #f7f5f0;
    color: #333;
    padding: 10px 15px;
    border-radius: 30px;
    display: inline-block;
}
.freelancer-university-name {
    font-size: 18px;
}
.freelancer-tab {
    border-radius: 16px;
}
.freelancer-tab .tab-btn {
    border: 1px solid var(--lime-300);
    padding: 14px 28px;
    border-radius: 30px;
    color: var(--dark-300);
}
.freelancer-tab .tab-btn.active {
    background-color: var(--lime-300);
    color: var(--white);
}
.freelancer-tab-content {
    border-radius: 16px;
    padding: 30px;
}
.portfolio-card {
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.06);
    position: relative;
    width: 100%;
}
.portfolio-card img {
    border-radius: 12px;
}
.portfolio-card-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 16px;
    transform: scale(0.3);
    transition: all 0.5s ease-in-out;
    background-color: rgba(6, 19, 28, 0.5);
}
.portfolio-card:hover .portfolio-card-overlay {
    transform: scale(1);
    opacity: 1;
}
.portfolio-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
/**********************
Freelancer Details End
***********************/

/*******************
Job Details
********************/
.job-posts-container {
    padding: 40px;
    border-radius: 10px;
}
.job-post-details {
    border-top: 1px solid #edebe7;
}
.company-icon {
    width: 128px;
    height: 128px;
    background-color: var(--green-300);
    border-radius: 5px;
}
.job-type {
    color: var(--dark-200);
    font-size: 14px;
}
.job-type span {
    color: var(--dark-300);
    font-size: 14px;
}
.job-post-title {
    font-size: 24px;
    color: var(--dark-300);
    line-height: 26px;
}
.job-company {
    font-size: 16px;
    color: var(--dark-300);
}
.job-post-date,
.job-location {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.job-post-date {
    background-color: #e3ffdf;
    color: var(--lime-300);
}
.job-location {
    background-color: #edebe7;
    color: var(--green-300);
}
.job-wage {
    font-size: 24px;
    color: var(--dark-300);
}
.job-description-title {
    font-size: 18px;
    color: var(--dark-300);
    margin-bottom: 10px;
}
.job-desc {
    color: var(--dark-200);
    font-size: 16px;
    line-height: 26px;
}

/* Job Modal */

.company-profile-card {
    padding: 30px;
    border-radius: 10px;
}
.company-profile-card-header {
    padding-bottom: 30px;
    border-bottom: 1px solid #edebe7;
}
.company-profile-card-icon {
    width: 78px;
    height: 78px;
    background-color: var(--green-300);
    border-radius: 10px;
}
.company-profile-card-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.company-card-list li {
    border-bottom: 1px solid var(--dark-50);
}
.company-card-list li:last-child {
    border-bottom: none;
}
.proposal-container {
    padding: 0 0 30px 0;
    border-bottom: 1px solid var(--dark-50);
}
.proposal-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--dark-50);
}
.proposal-input-container .proposal-form-label {
    color: var(--dark-300);
    margin-bottom: 10px;
    display: block;
}

.proposal-input-container .form-select,
.proposal-input-container .form-control {
    border: 1px solid var(--dark-50);
    border-radius: 50px;
    padding: 16px 30px;
    height: 56px;
}

.proposal-input-container .form-textarea {
    border: 1px solid var(--dark-50);
    border-radius: 30px;
    padding: 16px 30px;
    height: 156px;
    width: 100%;
    resize: none;
}
.file-input__input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.file-input__label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    font-size: 14px;
    padding: 34px 40px;
    border-radius: 50px;
    border: 1px dashed #c9c9c9;
    background: #f7f5f0;
    justify-content: center;
    width: 100%;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

/* Job Modal End */
/* .content-details h3,
h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-300);
  font-weight: 600;
} */

/* .content-details ul,
li,
p,
a,
span {
  font-size: 16px;
  line-height: 26px;
  color: var(--dark-200);
} */
.content-details p {
    margin-bottom: 20px;
}
.content-details p:last-of-type {
    margin-bottom: 0;
}
.content-details ul li {
    list-style-type: disc;
    list-style-position: inside;
}

/*******************
Job Details End
********************/

/* Latest Features */

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    min-height: 250px;
}
.feature-card-title {
    margin-top: 30px;
    font-size: 24px;
    white-space: wrap;
}

/* About Company */
.about-desc {
    font-size: 16px;
    color: var(--dark-200);
}
.about-list {
    column-gap: 40px;
    border-bottom: 1px solid rgba(0, 35, 90, 0.15);
}
.about-list-item {
    color: var(--dark-200);
}
.ceo-avatar {
    width: 60px;
    height: 60px;
}
.about-img-group li img {
    border: 10px solid white;
    border-radius: 16px;
}
.about-img-group li:nth-child(1) {
    top: 0;
    left: 0;
}
.about-img-group li:nth-child(2) {
    bottom: 0;
    left: 10%;
    top: 65%;
}

/*******************
Feature Tab Start
********************/

.feature-tab {
    padding: 30px;
    border-radius: 10px;
}

.feature-tab.active {
    background-color: var(--off-white);
}
.feature-tab.feature-tab-two.active {
    background-color: var(--white);
}
.feature-tab-img-one {
    top: 22%;
    right: 0;
}
.feature-tab-img-two {
    left: -6%;
    top: 50%;
}
/*******************
Feature Tab End
********************/

/*******************
Accordion Start
********************/
.faq-accordions .accordion .accordion-item {
    background-color: var(--white);
    border: 0;
    margin-bottom: 20px;
    border-radius: 5px;
}
.faq-accordions .accordion .accordion-item .accordion-button {
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    padding: 20px 30px;
}
.faq-accordions .accordion .accordion-item .accordion-button:not(.collapsed) {
    color: var(--lime-300);
    background-color: white;
}
.accordion-body {
    border-top: 1px solid #ededed;
    padding: 20px 30px;
}
.accordion-body p {
    columns: var(--dark-100);
    line-height: 26px;
}
/*******************
Accordion End
********************/

/*******************
About Pages End
********************/

/*******************
Blog Page Start
********************/
.blog-card {
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.4s ease;
}
.blog-card:hover {
    background-color: var(--white);
}

.blog-thumb {
    border-radius: 10px;
}
.blog-date {
    background-color: var(--lime-300);
    border-radius: 30px;
    line-height: 1;
    font-size: 16px;
    color: var(--white);
    padding: 6px 12px;
    bottom: 8px;
    right: 8px;
}
.blog-meta {
    padding: 30px 20px;
}
.blog-title a {
    font-size: 24px;
    line-height: 1.3;
    color: var(--dark-300);
    position: relative;
    background-image: linear-gradient(#000000, #000000),
        linear-gradient(#ffffff, #ffffff);
    background-size: 0 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: all 0.5s;
}
.blog-title a:hover {
    background-size: 100% 1px;
}
.blog-link:hover {
    color: var(--lime-300);
}

.pagination-link {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--dark-50);
    color: var(--dark-200);
}
.pagination-link:hover {
    background-color: var(--lime-300);
    color: var(--white);
    border: transparent;
}
.pagination-link.active {
    background-color: var(--lime-300);
    border: transparent;
    color: var(--white);
}
.pagination-item:first-child span,
.pagination-item:last-child span {
    border: none;
}
/* Blog Details */
.blog-details-title {
    font-size: 40px;
}
.blog-highlight {
    background-color: var(--green-300);
    padding: 30px 40px;
    border-radius: 6px;
}
.blog-highlight svg {
    position: absolute;
    left: 20px;
    top: 20px;
}
.blog-highlight p {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--white);
}
.blog-tags-wrapper {
    padding: 20px 0;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}
.blog-tags-wrapper .blog-tag {
    color: var(--dark-200);
    font-size: 16px;
}
.blog-tags-wrapper .blog-tag:hover {
    color: var(--lime-300);
}

/* Social Links */
.social-links a {
    color: var(--dark-200);
}
.social-links a:hover {
    color: var(--lime-300);
}

.blog-single-comment {
    border-radius: 10px;
    padding: 40px;
}

.comment-reply-btn {
    color: var(--lime-300);
}
.comment-reply {
    border-top: 1px solid var(--dark-50);
}
/* Comment Form */
.comment-form {
    padding: 40px;
    border-radius: 10px;
}

.comment-form-input .form-control {
    border-radius: 30px;
    padding: 14px 28px;
    border: 1px solid #ededed;
    color: var(--dark-300);
}
.comment-form-input .form-control::placeholder {
    color: #b1b1b1;
}
.comment-form-input .form-control.form-textarea {
    border-radius: 20px;
    height: 110px;
    resize: none;
}
.comment-form-btn {
    background-color: var(--lime-300);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    line-height: 1;
    text-align: center;
}

/*******************
Blog Page End
********************/

/**********************
Subscription Plan Start
***********************/

.price-tabs .price-tab-link {
    background-color: var(--white);
    color: var(--dark-200);
    padding: 12px 24px;
}
.price-tabs .price-tab-link.active {
    background-color: var(--lime-300);
    color: var(--white);
}
.plan-table {
    border-radius: 10px;
    padding: 30px;
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    position: relative;
}
.plan-table:hover {
    border-color: var(--lime-300);
}
.plan-header {
    padding: 16px 24px;
    border-radius: 8px;
}
.plan-footer-btn {
    background-color: transparent;
    padding: 16px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #a1a1aa;
    font-family: var(--main-font-family);
    font-size: 18px;
    width: 100%;
}
.plan-footer-btn:hover {
    background-color: var(--lime-300);
    color: var(--white);
}
.popular-plan {
    background-color: var(--lime-300);
    position: absolute;
    display: inline-block;
    top: 11px;
    right: -38px;
    transform: rotate(45deg);
    padding: 10px 30px;
    color: var(--white);
    font-size: 14px;
    font-family: var(--main-font-family);
}

/**********************
Subscription Plan End
**********************/

/*******************
Job Post
********************/
.job-post-input {
    padding: 0 16px;
    border-right: 1px solid var(--dark-100);
}
.job-post-filter {
    gap: 10px;
    border-radius: 50px;
}
.job-post-input .form-control,
.job-post-input .form-select {
    border: none;
}
.job-filter-btn {
    padding: 16px 30px;
    border-radius: 30px;
    height: 48px;
    color: var(--white);
    background-color: var(--lime-300);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.tab-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green-300);
    color: var(--white);
}
.tab-link.active {
    background-color: var(--lime-300);
    color: var(--white);
}

/*******************
Job Post End
********************/

/*******************
Contact Page
********************/
.contact-widget-item .contact-widget-title {
    color: var(--dark-300);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-widget-item .contact-widget-info {
    color: var(--dark-200);
    font-size: 18px;
    line-height: 28px;
}
.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-300);
}
.contact-form-desc {
    color: var(--dark-200);
    font-size: 16px;
    line-height: 26px;
}
.contact-form-input .form-control {
    background-color: var(--white);
    border-radius: 50px;
    border: 1px solid transparent;
    padding: 16px 30px;
    height: 56px;
}
.contact-form-input .form-textarea {
    background-color: var(--white);
    border-radius: 30px;
    border: 1px solid transparent;
    padding: 16px 30px;
    height: 156px;
    width: 100%;
    resize: none;
}
.w-form-btn-inline {
    display: inline-block;
    background-color: var(--lime-300);
    border-radius: 30px;
    color: var(--white);
    padding: 14px 28px;
}
.contact-map {
    border-radius: 30px;
    width: 100%;
}
.contact-map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
}
.contact-social-links a {
    color: var(--dark-300);
}
.contact-social-links a:hover {
    color: var(--lime-300);
}
/*******************
Contact Page End
********************/

/*******************
Login Pages Start
********************/

.form-input .form-label {
    font-size: 18px;
    margin-bottom: 10px;
}
.form-input .form-control,
.form-input .form-select {
    border-radius: 50px;
    border: 1px solid #edebe7;
    padding: 16px 30px;
    height: 56px;
}
.form-input .form-control::placeholder {
    color: #b1b1b1;
}
.form-input .form-check-label {
    color: var(--dark-200);
}
.form-forget-pass {
    color: var(--lime-300);
}
.form-divider {
    border-bottom: 1px solid #edebe7;
}
.w-form-btn {
    width: 100%;
    border-radius: 30px;
    background-color: var(--lime-300);
    color: var(--white);
    padding: 14px 20px;
    display: block;
    text-align: center;
}
.w-form-btn-outline {
    width: 100%;
    border-radius: 30px;
    background-color: transparent;
    color: var(--dark-300);
    border: 1px solid var(--lime-300);
    padding: 14px 20px;
    display: block;
    text-align: center;
}
.form-divider-text {
    background: var(--white);
    position: absolute;
    color: #06131c;
    width: 30px;
    padding: 4px;
}
.social-login .social-login-item {
    background-color: #f7f5f0;
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    color: #06131c;
}
.social-login .social-login-item:hover {
    background-color: var(--green-300);
    color: var(--white);
}
.form-text a {
    color: var(--dark-200);
}
.form-text a {
    color: var(--dark-300);
}
/*******************
Login Pages End
********************/

/*******************
Dashboard CSS Start
********************/
.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    z-index: 20;
    top: 0;

    background-color: var(--green-300);
    overflow-y: scroll;
    height: calc(200vh - 80px);
    scrollbar-width: none;
}

.sidebar-nav-link {
    display: flex;
    padding: 15px 30px;
    border-radius: 5px;
    gap: 16px;
    font-size: 18px;
    align-items: center;
    color: #fff;
    font-size: 16px;
}
.sidebar-nav-link.active {
    background-color: var(--lime-300);
    color: var(--white);
}
.sidebar-nav-link svg {
    color: var(--lime-300);
}
.sidebar-nav-link.active svg {
    color: var(--white);
}
.dashboard-main {
    background-color: var(--off-white);
    padding: 30px;
    margin-left: 280px;
}
.dashboard-widget-title {
    font-size: 40px;
}
.dashboard-widget-icon {
    background-color: var(--green-300);
    border-radius: 8px;
    padding: 20px;
}
.dashboard-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}
.dashboard-table > thead > tr > th {
    background-color: rgba(34, 190, 13, 0.2);
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-300);
    padding: 20px 10px;
    white-space: nowrap;
    font-family: var(--main-font-family);
}
.dashboard-table.job-table > thead > tr > th {
    padding: 20px 25px;
}
.dashboard-table.applicant-table > thead > tr > th,
.dashboard-table.subscription-table > thead > tr > th,
.dashboard-table.withdraw-table > thead > tr > th {
    padding: 20px 35px;
}
.dashboard-table > thead > tr > th:first-of-type {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.dashboard-table > thead > tr > th:last-of-type {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.dashboard-table tbody {
    background-color: var(--white);
    border-radius: 10px;
}
.dashboard-table tbody tr {
    border-bottom: 1px solid var(--dark-50);
}
.dashboard-table tbody tr td {
    padding: 10px;
    white-space: normal;
}
.dashboard-table.applicant-table tbody tr td {
    padding: 10px 35px;
}
.dashboard-table.subscription-table tbody tr td,
.dashboard-table.withdraw-table tbody tr td {
    padding: 20px 35px;
}
.dashboard-table tbody tr td:first-of-type {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.dashboard-table tbody tr td:last-of-type {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.project-name img {
    background-color: var(--green-300);
    width: 60px;
    height: 60px;
    border-radius: 10px;
}
.order-category li {
    font-size: 14px;
}
.applicant-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2ffde;
    border-radius: 30px;
    color: var(--dark-200);
}
.applicant-link:hover {
    background-color: #e0fddc;
    color: #22be0d;
}
.project-link {
    color: var(--dark-200);
}
.project-link:hover {
    text-decoration: underline;
    color: var(--dark-300);
}
/* Dashboard Header */
.dashboard-header {
    margin-left: 280px;
}
.dashboard-header-btns .dashboard-header-btn {
    position: relative;
    background-color: var(--off-white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-self: center;
}

.header-btn-badge {
    position: absolute;
    width: 22px;
    height: 22px;
    font-size: 14px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--lime-300);
    top: 0;
}
.dashboard-profile .dashboard-profile-item.dropdown-item {
    color: var(--dark-200);
    padding: 10px;
}
.dashboard-profile .dashboard-profile-item.dropdown-item:hover {
    background-color: var(--off-white);
}

.dashboard-header-btn.dropdown-toggle::after {
    display: none;
}
.dashboard-notification {
    width: 300px;
}
.notification-bell {
    background-color: var(--off-white);
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
}
.notification-item.dropdown-item {
    padding: 10px;
    cursor: pointer;
}
.notification-item.dropdown-item:hover {
    background-color: var(--off-white);
}
.notification-item.dropdown-item:hover .notification-bell {
    background-color: var(--white);
}
.see-notification-btn {
    background-color: var(--lime-300);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s;
}
.see-notification-btn:hover {
    opacity: 0.8;
}
.offcanvas-backdrop {
    width: 100%;
    height: 100%;
}
.offcanvas-body {
    z-index: 20;
}
.offcanvas-body .btn-close {
    background-color: var(--dark-50);
    position: absolute;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
/* Create Gigs */

.gig-title-switch .form-check-input {
    background-color: transparent;
}
.gig-status .form-check-input:checked,
.gig-title-switch .form-check-input:checked {
    background-color: var(--lime-300);
    border-color: var(--lime-300);
}
.gig-info-header,
.profile-info-header {
    padding: 20px 30px;
    background-color: rgba(34, 190, 13, 0.2);
    border-radius: 8px 8px 0 0;
}
.profile-info-body,
.gig-info-body {
    padding: 20px 30px 30px;
    border-radius: 0 0 8px 8px;
}

/* Manage Gig */
.gig-edit-btn {
    background-color: var(--blue-300);
    border-radius: 30px;
    padding: 10px 18px;
    line-height: 1;
    color: var(--white);
    font-size: 14px;
}
/* Quill */
.w-editor-wrapper {
    border: 1px solid var(--dark-50);
    border-radius: 30px;
    padding: 20px;
    width: 100%;
}
.w-editor-wrapper .ql-toolbar.ql-snow {
    background-color: var(--dark-50);
    border: 0;
    border-radius: 30px;
}
.w-editor-wrapper .ql-container.ql-snow {
    border: 0;
}
.w-editor-wrapper .ql-editor {
    padding: 12px 0;
    height: 150px;
}

/* Price */
.price-pack-wrapper {
    border: 1px solid var(--dark-50);
    border-radius: 4px;
}

.pricing-pack-name {
    /* margin: 10px; */
    border-radius: 5px;
    padding: 10px;
    display: block;
    background-color: var(--dark-50);
}
.pack-description textarea {
    resize: none;
}
.pack-description textarea:focus {
    border: none;
}
.gig-file-upload {
    width: 130px;
    height: 130px;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
}

.gig-media-thumb {
    border-radius: 6px;
    border: 1px solid var(--dark-50);
    width: 130px;
    height: 130px;
    object-fit: cover;
}

.gig-img-delete-btn {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ff3838;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    top: 12px;
    right: 12px;
}
/* Dashboard Action */
.dashboard-action-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-50);
    border-radius: 50%;
}
.dashboard-action-btn.dropdown-toggle::before {
    display: none;
}
.dropdown-menu.table-dropdown {
    background-color: #dcdcdc;
    border-radius: 8px;
    border: 0;
    min-width: 80px;
}
.dropdown-menu.table-dropdown .dropdown-item {
    color: #5b5b5b;
    font-size: 14px;
}
.dropdown-menu.table-dropdown .dropdown-item:hover {
    color: var(--lime-300);
    background: none;
}
/* Dashboard Badge */
.status-badge {
    padding: 8px 16px;
    line-height: 1;
    border-radius: 30px;

    font-size: 16px;
    display: inline-block;
    white-space: nowrap;
}
.status-badge.pending {
    background-color: #fff0e2;
}
.status-badge.in-progress {
    background-color: #e2ffde;
    color: var(--dark-200);
}
.status-badge.canceled {
    background-color: #ffe2e2;
    color: var(--dark-200);
}
.status-badge.active {
    color: #22be0d;
    background-color: #ddffe6;
}
.status-badge.expired {
    color: #4b83fc;
    background-color: #eaf0ff;
}
.status-badge.in-active {
    color: #ff3838;
    background-color: #fde1e1;
}
/* Dashboard Tab */
.dashboard-tab-btn {
    background-color: var(--white);
    border-radius: 30px;
    padding: 16px 32px;
    color: var(--dark-200);
    font-size: 18px;
    line-height: 1;
}
.dashboard-tab-btn.active {
    background-color: var(--lime-300);
    color: var(--white);
}
/* Profile Settings */
.form-container {
    position: relative;
}

.form-container .form-label {
    font-size: 18px;
    color: var(--dark-300);
    line-height: 18px;
    margin-bottom: 10px;
}
.form-container .form-control {
    border: 1px solid #edebe7;
    border-radius: 30px;
    padding: 16px;
    height: 52px;
}
.form-container .form-control::placeholder {
    color: #b1b1b1;
}
.form-container .form-select {
    border: 1px solid #edebe7;
    border-radius: 30px;
    font-size: 16px;
    height: 52px;
    padding: 0 16px;
}
.form-container .form-control.form-textarea {
    height: 120px;
    resize: none;
}
.skill-cloud {
    border-radius: 30px;
    padding: 20px;
    border: 1px solid var(--dark-50);
}
.skill-cloud-item {
    background-color: #f8f8f8;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid #ededed;
    line-height: 1;
    font-size: 14px;
}
/* Message */
.message-sidebar-header {
    padding: 20px;
}
.message-search .form-control {
    height: 44px;
    padding: 12px 12px 12px 40px;
    background-color: #f3f9ff;
    border: 0;
}
.message-search-icon {
    left: 16px;
}
.message-person {
    border-top: 1px solid var(--dark-50);
    transition: all 0.3s ease;
    cursor: pointer;
}
.message-person:hover {
    background-color: #f3f3f3;
}
.conversation-text li:nth-child(odd) {
    justify-content: end;
}
.conversation-text li:nth-child(even) {
    justify-content: start;
}
.conversation-text li:nth-child(even) p {
    background-color: #f9fafb;
}

.msg-write-input .form-control {
    height: 50px;
    padding-left: 30px;
}
.msg-send-btn {
    background-color: var(--lime-300);
    padding: 16px 28px;
    border-radius: 30px;
    color: var(--white);
    height: 50px;
    line-height: 1;
}

.input-icon-end {
    right: 16px;
}
/*******************
Dashboard CSS End
********************/

/*******************
Footer
********************/
/* Newsletter */
.footer-newsletter {
    border-bottom: 1px solid #2c4253;
}
.footer-newsletter-desc {
    font-size: 14px;
    color: #fff3ed;
}
.footer-newsletter-form {
    border: 1px solid #2c4253;
    border-radius: 50px;
    padding: 10px;
    gap: 20px;
}
.footer-newsletter-form .form-control {
    background-color: #22323f;
    border-radius: 50px;
    border: 1px solid #22323f;
    padding: 18px 30px;
    color: var(--white);
}
.footer-newsletter-form .form-control:focus {
    border: 1px solid #22be0d;
}
.footer-newsletter-form .form-control::placeholder {
    color: #5e7080;
}
.footer-newsletter-btn {
    background-color: var(--lime-300);
    color: var(--white);
    padding: 18px 30px;
    font-size: 18px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease-in-out;
}
.footer-newsletter-btn:hover {
    background-color: var(--green-300);
}

/* Footer Widgets */
.footer-info-widget-item {
    color: var(--dark-100);
    font-size: 16px;
}
.footer-widget-title {
    color: var(--white);
    font-size: 24px;
}
.footer-nav-list .footer-nav-list-item .footer-nav-link {
    font-size: 18px;
    color: var(--dark-100);
    transition: all 0.3s ease-in-out;
}
.footer-nav-list .footer-nav-list-item .footer-nav-link:hover {
    color: var(--lime-300);
}
.footer-nav-list .footer-nav-list-item .footer-nav-link svg {
    transition: all 0.3s ease-in-out;
}
.footer-nav-list .footer-nav-list-item .footer-nav-link:hover svg {
    transform: rotate(-20deg);
}
/* Footer Copyright */
.footer-copyright {
    background-color: var(--dark-400);
}
.footer-social-link {
    color: #5b7081;
}
.footer-social-link:hover {
    color: var(--white);
}
/*******************
Footer   End
********************/
.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 40px 0px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.container {
    width: 100%;
    text-align: center;
    position: relative;
}

h1 {
    color: white;
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.search-container {
    background: white;
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    display: flex;
    align-items: center;
    max-width: 650px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1em;
    padding: 15px 10px;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #ebba1b;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: #ebba1b;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-primary {
    background: white;
    color: #16a085;
}

.btn-secondary {
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.features {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95em;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item::before {
    content: "✓";
    font-weight: bold;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1em;
    }

    .search-container {
        flex-direction: column;
        border-radius: 25px;
        padding: 15px;
    }

    .search-input {
        width: 100%;
        text-align: center;
    }

    .search-btn {
        width: 100%;
        margin-top: 10px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }
}
.user-name-minimal {
    color: #0e636b;
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
    padding: 6px 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: white;
}

.job-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.job-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #0e636b;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.company-brand {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #f1f5f9;
}

.company-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.job-type.full-time {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-wishlist-btn {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.job-wishlist-btn:hover {
    color: #ef4444;
    background: #fef2f2;
}

.job-card-body {
    margin-bottom: 1.5rem;
}

.job-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.job-title a {
    color: #1e293b;
    text-decoration: none;
}

.job-title a:hover {
    color: #0e636b;
}

.job-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.job-salary {
    text-align: right;
}

.salary-amount {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.salary-period {
    color: #64748b;
    font-size: 0.75rem;
}

.job-card-hover {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(14, 99, 107, 0.05),
        transparent
    );
    transition: left 0.6s ease;
}

.job-card-modern:hover .job-card-hover {
    left: 100%;
}

/* Design 2: Glass Morphism Styles */
.job-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 99, 107, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.job-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 99, 107, 0.12);
}

.glass-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 130px;
    background: linear-gradient(135deg, #0e636b 0%, #14b8a6 100%);
    opacity: 0.1;
    z-index: 0;
}

.job-card-content {
    position: relative;
    z-index: 1;
}

.job-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.company-section {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.company-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(14, 99, 107, 0.1);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.remote {
    background: rgba(34, 197, 94, 0.2);
    color: #166534;
}

.badge.urgent {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.save-job-btn {
    background: rgba(14, 99, 107, 0.05);
    border: 1px solid rgba(14, 99, 107, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    color: #0e636b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-job-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ef4444;
}

.job-title-glass {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-excerpt {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tech-icons {
    display: flex;
    gap: 0.5rem;
}

.tech-icon {
    padding: 4px 12px;
    height: auto;
    background: rgba(14, 99, 107, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0e636b;
    border: 1px solid rgba(14, 99, 107, 0.1);
    white-space: nowrap;
}

.experience-level {
    background: rgba(14, 99, 107, 0.1);
    color: #0e636b;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(14, 99, 107, 0.05);
}

.meta-cell {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #475569;
    font-size: 0.8rem;
}

.meta-icon-wrapper {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.meta-cell i {
    font-size: 0.85rem;
    color: #0e636b;
}

.meta-cell span {
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.job-card-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-apply-now,
.btn-view-details {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply-now {
    background: #0e636b;
    color: #ebba1b;
}

.btn-apply-now:hover {
    background: #0b4d53;
    transform: translateY(-2px);
}

.btn-view-details {
    background: rgba(255, 255, 255, 0.3);
    color: #0e636b;
    border: 1px solid #0e636b;
}

.btn-view-details:hover {
    background: rgba(14, 99, 107, 0.1);
}

.glass-reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.job-card-glass:hover .glass-reflection {
    left: 50%;
}

/* Design 3: Minimalist Styles */
.job-card-minimal {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.job-card-minimal:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.job-card-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #0e636b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.job-card-main {
    padding: 1.5rem;
}

.job-header-minimal {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-logo-mini {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.company-logo-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-basic-info {
    flex: 1;
}

.job-title-minimal {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.job-title-minimal a {
    color: inherit;
    text-decoration: none;
}

.job-title-minimal a:hover {
    color: #0e636b;
}

.company-name-minimal {
    margin: 0;
    color: #64748b;
    font-size: 0.875rem;
}

.job-highlights {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
}

.highlight-item i {
    color: #0e636b;
    width: 16px;
}

.job-summary {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-tag {
    background: #f8fafc;
    color: #475569;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.job-card-footer-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.post-time {
    color: #94a3b8;
    font-size: 0.75rem;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-quick-apply {
    background: #0e636b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quick-apply:hover {
    background: #0b4d53;
}

.btn-save-job {
    background: none;
    border: 1px solid #e2e8f0;
    padding: 0.5rem;
    border-radius: 8px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save-job:hover {
    color: #ef4444;
    border-color: #fecaca;
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-card-modern,
    .job-card-glass,
    .job-card-minimal {
        margin-bottom: 1rem;
    }

    .meta-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .job-highlights {
        flex-direction: column;
        gap: 0.75rem;
    }

    .job-card-actions {
        flex-direction: column;
    }
}
.w-form-btn,
.w-form-btn-outline {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid;
    background: none;
    cursor: pointer;
}

.w-form-btn {
    background-color: #0e636b;
    color: white;
    border-color: #0e636b;
}

.w-form-btn:hover {
    background-color: #0e636b;
    border-color: #0e636b;
    color: white;
}

.w-form-btn-outline {
    background-color: transparent;
    color: #0e636b;
    border-color: #0e636b;
}

.w-form-btn-outline:hover {
    background-color: #0e636b;
    color: white;
}

.section-title {
    font-weight: 700;
    color: #1e293b;
}

.section-desc {
    color: #64748b;
}

.form-control:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.mb-40 {
    margin-bottom: 40px;
}

.login-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-img img {
    max-height: 500px;
    object-fit: contain;
}

.form-text a {
    color: #0e636b;
    text-decoration: none;
    font-weight: 600;
}

.form-text a:hover {
    text-decoration: underline;
}

.role-active {
    background-color: #0e636b !important;
    color: white !important;
}

.recruiter-fields {
    transition: all 0.3s ease;
}
/* Job Details Sidebar */
.job-details-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    backdrop-filter: blur(5px);
}

.job-details-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: white;
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    flex-shrink: 0;
}

.sidebar-header h3 {
    margin: 0;
    font-weight: 600;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    padding: 5px;
}

.close-sidebar:hover {
    color: #374151;
}

.sidebar-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

/* Fixed Sidebar Actions */
.sidebar-actions-fixed {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.sidebar-actions-fixed .btn-apply-now-primary {
    flex: 2;
    background: #238182;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sidebar-actions-fixed .btn-apply-now-primary:hover {
    background: #238182;
    transform: translateY(-1px);
}

.sidebar-actions-fixed .btn-save-job,
.sidebar-actions-fixed .btn-share-job {
    flex: 1;
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.sidebar-actions-fixed .btn-save-job:hover,
.sidebar-actions-fixed .btn-share-job:hover {
    background: #f9fafb;
    border-color: #238182;
    color: #238182;
}

/* Company Header */
.company-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.company-avatar-large img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.company-info h4 {
    margin: 0 0 5px 0;
    color: #64748b;
    font-size: 0.9rem;
}

.company-info h2 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Job Meta Details */
.job-meta-details {
    margin-bottom: 25px;
}

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

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.meta-item i {
    color: #238182;
    margin-top: 2px;
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
}

.meta-value {
    display: block;
    font-weight: 500;
    color: #374151;
}

/* Sections */
.job-description-section,
.job-summary-section,
.selling-points-section,
.questions-section {
    margin-bottom: 25px;
}

.job-description-section h4,
.job-summary-section h4,
.selling-points-section h4,
.questions-section h4 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
}

.description-content,
.summary-content {
    line-height: 1.6;
    color: #4b5563;
}

/* Selling Points */
.points-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.point-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Questions */
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.question-item {
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #238182;
}

.question-text {
    margin: 0 0 8px 0;
    font-weight: 500;
}

.mandatory-badge {
    background: #fef2f2;
    color: #dc2626;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Scrollbar Styling */
.sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive */
@media (max-width: 768px) {
    .job-details-sidebar {
        width: 100%;
    }

    .meta-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-actions-fixed {
        flex-direction: column;
    }

    .sidebar-actions-fixed .btn-apply-now-primary,
    .sidebar-actions-fixed .btn-save-job,
    .sidebar-actions-fixed .btn-share-job {
        flex: 1;
        width: 100%;
    }
}
/* Questions Section Styles */
.question-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.question-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.question-badges .badge {
    font-size: 0.7rem;
}

.options-list .form-check {
    padding-left: 0;
}

.options-list .form-check-input {
    margin-right: 0.5rem;
}

/* Question Type Indicators */
.question-type-indicator {
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 0.375rem;
    border-left: 3px solid #6c757d;
}

/* Form Controls in Preview */
.form-control:disabled,
.form-select:disabled,
.form-check-input:disabled {
    background-color: #f8f9fa;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Required Field Indicator */
.required-indicator::after {
    content: " *";
    color: #dc3545;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .question-card .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .question-badges {
        align-self: flex-start;
    }

    .options-list .form-check-label {
        font-size: 0.9rem;
    }
}

/* Animation for question cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-card {
    animation: fadeInUp 0.5s ease forwards;
}

.question-card:nth-child(1) {
    animation-delay: 0.1s;
}
.question-card:nth-child(2) {
    animation-delay: 0.2s;
}
.question-card:nth-child(3) {
    animation-delay: 0.3s;
}
.question-card:nth-child(4) {
    animation-delay: 0.4s;
}
.question-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Search Container Styles */
.search-container {
    max-width: 1000px;
    margin: 40px auto 30px;
    background: white;
    border-radius: 12px;

    padding: 20px;
    border: 4px solid #ebba1b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.search-fields-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.search-field-group {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0e636b;
    font-size: 16px;
}

.search-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: #0e636b;
    background: white;
    box-shadow: 0 0 0 3px rgba(14, 99, 107, 0.1);
}

.search-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%230e636b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.search-btn {
    background: #0e636b;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background: #0a4a50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 99, 107, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-fields-wrapper {
        flex-direction: column;
    }

    .search-field-group {
        width: 100%;
        min-width: 100%;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0 30px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: white;
    font-size: 14px;
    opacity: 0.9;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item:before {
    content: "✓";
    background: #ebba1b;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* AI Match Card */
.ai-match-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ai-match-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.ai-match-main {
    flex: 1;
}

.ai-match-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ai-match-title span {
    color: #64748b;
}

.ai-match-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ai-btn-secondary {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ai-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.ai-match-logos {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 15px;
}

/* AI Mini Logo refined below in Premium section */

.user-avatar-stack {
    position: relative;
    margin-left: -10px;
}

.user-avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

.ai-match-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.beta-tag {
    font-size: 0.8rem;
    color: #94a3b8;
}

.feedback-btns {
    display: flex;
    gap: 15px;
}

.feedback-btns button {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}

.feedback-btns button:hover {
    color: #475569;
}

/* Premium Sidebar Design */
.job-details-sidebar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.company-header-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(14, 99, 107, 0.05) 0%, rgba(235, 186, 27, 0.05) 100%);
    border-radius: 20px;
}

.company-avatar-glass {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    padding: 10px;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-avatar-glass img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    object-fit: contain;
}

.company-info-premium {
    flex: 1;
}

.company-name-pill {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.job-title-sidebar {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0e636b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.job-badges-premium {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-glass {
    padding: 6px 14px;
    background: rgba(14, 99, 107, 0.08);
    color: #0e636b;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(14, 99, 107, 0.1);
}

.badge-urgent-glass {
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

/* AI Logo Glow */
.ai-logo-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
 
   
}

.ai-logo-mini {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain; /* Changed to contain to preserve logo proportions */
    display: block;
    padding: 6px; /* Added some breathing room for the logo */
}

.ai-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #0e636b 0%, #ebba1b 100%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.5;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sidebar-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.sidebar-content h4::before {
    content: '';
    width: 4px;
    height: 18px;
    background: #0e636b;
    border-radius: 2px;
}

/* Premium Meta Details */
.job-meta-details-premium {
    margin-bottom: 30px;
}

.meta-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.meta-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.meta-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #0e636b;
    transform: translateY(-2px);
}

.meta-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: #0e636b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.meta-info {
    flex: 1;
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
}

/* Premium Fixed Footer Actions */
.sidebar-actions-fixed-premium {
    position: sticky;
    bottom: 0;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 10;
}

.actions-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-apply-premium {
    flex: 1;
    height: 54px;
    background: linear-gradient(135deg, #0e636b 0%, #238182 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(14, 99, 107, 0.3);
}

.btn-apply-premium:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 12px 25px rgba(14, 99, 107, 0.4);
    color: white;
}

.btn-apply-premium i {
    transition: transform 0.3s ease;
}

.btn-apply-premium:hover i {
    transform: translateX(5px);
}

.secondary-actions {
    display: flex;
    gap: 10px;
}

.btn-icon-premium {
    width: 54px;
    height: 54px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-icon-premium:hover {
    border-color: #0e636b;
    color: #0e636b;
    background: #f8fafc;
}

.btn-icon-premium.saved {
    background: #0e636b;
    color: white;
    border-color: #0e636b;
}

/* AI Chat-like Modal - Positioned Bottom Right */
.ai-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 23, 42, 0.2); /* Lighter backdrop */
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 30px;
}

.ai-chat-window {
    width: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px) translateY(20px); }
    to { opacity: 1; transform: translateX(0) translateY(0); }
}

.ai-chat-header {
    padding: 16px 24px;
    background: linear-gradient(135deg, #0e636b 0%, #238182 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-icon-circle {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ai-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: #f8fafc;
}

.chat-bubble {
    max-width: 90%;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
}

.ai-bubble .bubble-content {
    background: white;
    padding: 16px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    color: #334155;
    line-height: 1.5;
    font-size: 0.95rem;
}

.ai-loading-dots {
    display: flex;
    gap: 5px;
    padding: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #0e636b;
    border-radius: 50%;
    animation: bounce 1s infinite alternate;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    to { opacity: 0.3; transform: translateY(-5px); }
}

.analysis-result {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.score-badge-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 5px solid #22be0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.score-num { font-size: 1.75rem; font-weight: 800; color: #0e636b; }
.score-text { font-size: 0.75rem; text-transform: uppercase; color: #64748b; font-weight: 600; }

.result-section {
    background: white;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #e2e8f0;
}

.result-section h6 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag-strength { background: #f0fdf4; color: #166534; }
.tag-improvement { background: #fff7ed; color: #9a3412; }
.tag-missing { background: #fef2f2; color: #991b1b; }

.ai-chat-footer {
    padding: 20px 24px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
}

.close-chat-btn {
    padding: 10px 25px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.close-chat-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}
