@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: "IBM Plex Sans", sans-serif;
    --body-font-family: "Roboto", sans-serif;
    /* Dark */
    --dark-50: #edebe7;
    --dark-100: #d9d9d9;
    --dark-200: #5b5b5b;
    --dark-300: #06131c;
    --dark-400: #0c1e2b;
    /* Light */
    --off-white: #f7f5f0;
    --white: #fff;
    /* lime */
    --lime-300: #ffcc00;
    --green-300: #ffcc00;
    /* Blue */
    --blue-300: #4b83fc;
    --black-300: #101010;
    --black-400: #1C1C1E;
    --yellow-300: #f5c400;
    --gray-100: #f8f8f8;
    --gray-200: #f3f3f3;
    --gray-300: #EAEAEA;
}

* {
    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-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;
}


/* Mixed */

.mask-type {
    mask-type: luminance;
}

.map-radius {
    border-radius: 16px !important;
}

.h-100vh {
    min-height: 100vh;
}

.not-found-text p {
    font-size: 24px;
    font-weight: 600;
}

.withdraw-card {
    background: rgba(34, 190, 13, 0.2);
    border: 0;
    color: black;
}


/* Button */

.header-btn {
    background-color: #235351;
    padding: 8px 20px;
    border-radius: 20px;
    color: #ffcc00 !important;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
}

.header-btn svg {
    margin-right: 4px;
}

.header-btn:hover {
    background-color: #1a4645;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(35, 83, 81, 0.3);
    color: #ffcc00 !important;
}

.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: #ffcc00 !important;
    background-color: #235351;
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.w-btn-secondary-lg:hover {
    background-color: #1a4645;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(35, 83, 81, 0.3);
    color: #ffcc00 !important;
}

.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;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.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;
}

.footer-newsletter-btn::before,
.hero-form-btn::before,
.w-btn-secondary-sm::before,
.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;
}

.footer-newsletter-btn:hover::before,
.hero-form-btn:hover::before,
.w-btn-secondary-sm:hover::before,
.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-input .form-control {
    background-color: var(--white);
    border-radius: 6px;
    padding: 16px 16px;
    min-width: 250px;
    border: 0;
    height: auto;
    width: 100%;
}

.custom-style-select.select-dropdown {
    background-color: var(--white);
    border-radius: 6px;
    padding: 8px 16px;
    min-width: 200px;
    height: auto;
    width: 100%;
}

.nice-select .list {
    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: #ffcc00;
    background-color: var(--dark-50);
}

.custom-dropdown-menu input[type="range"]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 70%;
    background: #ffcc00;
    pointer-events: auto;
    -webkit-appearance: none;
}

.custom-dropdown-menu.dropdown-menu .form-check-input:checked {
    background-color: #ffcc00;
    border-color: #ffcc00;
}


/* 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: #ffcc00;
}

.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: #ffcc00;
}

.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: #ffcc00;
    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(--white);
    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: var(--white);
}

.header-primary.header-transparent.sticky .become-seller-link {
    color: var(--dark-300);
}

.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(--white);
    }
    .header-primary.header-transparent {
        background-color: transparent;
        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: var(--dark-300);
    }
    .header-primary.header-transparent .navbar .navbar-nav .nav-link {
        color: var(--white);
    }
    .header-primary.header-transparent.sticky .navbar .navbar-nav .nav-link::after,
    .header-primary .navbar .navbar-nav .nav-link::after {
        color: var(--dark-300);
    }
    .header-primary.header-transparent .navbar .navbar-nav .nav-link::after {
        color: var(--white);
    }
    .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: #ffcc00;
    }
    .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: #ffcc00;
    }
    .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(--white);
    }
    .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: #ffcc00;
    }
}

@-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: var(--white);
}

.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: #ffcc00;
}

/* .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: #ffcc00;
    text-decoration: underline;
}


/* Category Modal End*/


/*****************
 Secondary Nav End
 *****************/


/************
Breadcrumb
************/

.w-breadcrumb-area {
    position: relative;
    padding: 150px 0 90px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.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: #ffcc00;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}


/**************
Breadcrumb End
***************/


/**************
Hero Start
***************/

.hero-one {
    padding: 170px 0 50px 0;
    background-image: url(../img/hero/hero-bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-one-title {
    font-size: 72px;
    color: var(--white);
}

.hero-one-title span {
    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;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.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 {
    padding: 300px 0 170px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-two::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 19, 28, 0.8);
}

.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: var(--dark-100);
    border-radius: 500px;
    background: #1d2c32;
    box-shadow: 20px 20px 45px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-align: center;
    display: inline-block;
    line-height: 1;
}


/**************
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 3px;
    font-size: 12px;
    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: #edebe7;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.job-post-icon img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.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: 24px;
    border-radius: 10px;
}

.job-price-range {
    font-size: 14px;
}

.job-post-horizontal-img {
    background-color: #edebe7;
    border-radius: 50%;
    height: 110px;
    width: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.job-post-horizontal-img img {
    border-radius: 50%;
    height: 70px;
    width: 70px;
    object-fit: cover;
}

.job-post-horizontal-title {
    line-height: 1.1;
}

.job-post-horizontal-title a {
    color: var(--dark-300);
    font-size: 18px;
    line-height: 1;
    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;
}

.job-post-horizontal-title a:hover {
    background-size: 100% 1px;
}

.horizontal-img-sm {
    width: 150px;
    height: 180px;
}

.horizontal-img-sm img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .horizontal-img-sm {
        width: 100%;
    }
}


/**********************
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;
    background-image: url(../img/cta/cta-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cta-people {
    bottom: 0;
    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;
}

@media (min-width: 1200px) {
    .cta-people {
        top: -20%;
    }
}


/**************
 Cta End
 **************/


/* Top Seller Card */

.top-seller-card {
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.06);
}

.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: 100px;
    height: 100px;
}

.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);
}

.w-64 {
    width: 64px;
    height: 64px;
}

.w-56 {
    width: 56px;
    height: 56px;
}

.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);
}

.freelancer-sidebar-card .freelancer-single-info {
    border-bottom: 1px solid rgba(128, 128, 128, 0.3);
}

.freelancer-sidebar-card .freelancer-single-info:last-child {
    border-bottom: 0;
}


/* Top Seller Card End*/

/* Modern Talent Card Styles */
.talent-card-link {
    display: block;
    color: inherit;
    text-decoration: none !important;
}

.talent-card-link:hover {
    color: inherit;
    text-decoration: none !important;
}

.modern-talent-card {
    border-radius: 20px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.talent-card-link:hover .modern-talent-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.talent-badges-side {
    top: 15px;
    right: 10px;
    z-index: 2;
    max-width: 80px;
}

.talent-badge-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 15px;
    padding: 5px 8px;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    min-width: 60px;
}

.talent-badge-compact.talent-badge-top {
    background-color: var(--dark-50);
    color: var(--dark-300);
}

.talent-badge-compact.talent-badge-rate {
    background-color: #295b59;
    color: #ffd700;
}

.talent-profile-img {
    position: relative;
    margin-bottom: 15px;
}

.talent-profile-img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.talent-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--dark-300);
    transition: color 0.3s ease;
}

.talent-card-link:hover .talent-name {
    color: var(--lime-300);
}

.talent-designation {
    color: var(--dark-200);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
    font-weight: 500;
}

.talent-location {
    color: var(--dark-200);
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.talent-location i {
    color: var(--lime-300);
    font-size: 10px;
}

.talent-description {
    color: var(--dark-200);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.talent-rating {
    margin-top: auto;
    padding-top: 10px;
    padding-bottom: 5px;
}

.rating-score {
    color: var(--dark-300);
    font-weight: 600;
    font-size: 14px;
}

.rating-reviews {
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .modern-talent-card {
        min-height: 280px;
        padding: 18px 12px;
    }

    .talent-profile-img img {
        width: 80px;
        height: 80px;
    }

    .talent-name {
        font-size: 16px;
    }

    .talent-description {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .modern-talent-card {
        min-height: 260px;
        padding: 15px;
    }

    .talent-badges-side {
        top: 10px;
        right: 8px;
        max-width: 70px;
    }

    .talent-badge-compact {
        font-size: 7px;
        padding: 4px 6px;
        min-width: 50px;
        gap: 2px;
    }

    .talent-description {
        font-size: 10px;
    }

    .talent-location {
        font-size: 11px;
    }
}

/* Modern Job Card Styles */
.modern-job-card {
    border-radius: 20px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
}

.job-card-link:hover .modern-job-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.job-badges-side {
    top: 15px;
    right: 10px;
    z-index: 2;
    max-width: 80px;
}

.job-badge-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 15px;
    padding: 5px 8px;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    min-width: 60px;
}

.job-badge-compact.job-badge-type {
    background-color: var(--dark-50);
    color: var(--dark-300);
}

.job-badge-compact.job-badge-urgent {
    background-color: #dc3545;
    color: white;
}

.job-company-img {
    position: relative;
    margin-bottom: 15px;
}

.job-company-img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--dark-300);
    transition: color 0.3s ease;
}

.job-card-link:hover .job-title {
    color: var(--lime-300);
}

.job-company {
    color: var(--dark-200);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
    font-weight: 500;
}

.job-location {
    color: var(--dark-200);
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-description {
    color: var(--dark-200);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    flex-grow: 1;
}

.job-salary {
    margin-top: auto;
    padding-top: 15px;
}

.salary-label {
    color: var(--dark-200);
    font-size: 12px;
    font-weight: 500;
}

.salary-amount {
    color: var(--lime-300);
    font-size: 16px;
    font-weight: 700;
}

/* Apply Button Overlay */
.job-apply-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #265654;
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.job-card-link:hover .job-apply-overlay {
    transform: translateY(0);
}

.apply-button-modern {
    color: #ffcc00;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Job Cards */
@media (max-width: 1199px) {
    .modern-job-card {
        min-height: 300px;
        padding: 18px 12px;
    }

    .job-company-img img {
        width: 80px;
        height: 80px;
    }

    .job-title {
        font-size: 16px;
    }

    .job-description {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .modern-job-card {
        min-height: 280px;
        padding: 15px;
    }

    .job-badges-side {
        top: 10px;
        right: 8px;
        max-width: 70px;
    }

    .job-badge-compact {
        font-size: 7px;
        padding: 4px 6px;
        min-width: 50px;
        gap: 2px;
    }

    .job-description {
        font-size: 10px;
    }

    .job-location {
        font-size: 11px;
    }
}

/* Modern Service Card Styles */
.modern-service-card {
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
}

.service-card-link:hover .modern-service-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image-container {
    position: relative;
    overflow: hidden;
}

.service-image {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-link:hover .service-image {
    transform: scale(1.05);
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--dark-300);
    transition: color 0.3s ease;
}

.service-card-link:hover .service-title {
    color: var(--lime-300);
}

.service-description {
    color: var(--dark-200);
    font-size: 12px;
    line-height: 1.4;
    flex-grow: 1;
}

.service-rating {
    margin-bottom: 12px;
}

.rating-text {
    font-size: 12px;
    color: var(--dark-200);
    font-weight: 500;
}

.service-owner {
    margin-bottom: 15px;
}

.owner-name {
    font-size: 13px;
    color: var(--dark-300);
    font-weight: 500;
}

.service-price {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price-label {
    color: var(--dark-200);
    font-size: 12px;
    font-weight: 500;
}

.price-amount {
    color: var(--lime-300);
    font-size: 16px;
    font-weight: 700;
}

/* Service View Overlay */
.service-view-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #265654;
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-card-link:hover .service-view-overlay {
    transform: translateY(0);
}

.view-button-modern {
    color: #ffcc00;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern Horizontal Service Card Styles */
.modern-service-horizontal {
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    overflow: hidden;
}

.service-horizontal-link:hover .modern-service-horizontal {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--lime-300);
}

.service-horizontal-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.service-horizontal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-horizontal-link:hover .service-horizontal-image {
    transform: scale(1.1);
}

.service-horizontal-price {
    color: var(--lime-300);
    font-size: 16px;
    font-weight: 700;
}

.service-horizontal-rating {
    font-size: 12px;
    color: var(--dark-200);
}

.service-horizontal-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-300);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-horizontal-link:hover .service-horizontal-title {
    color: var(--lime-300);
}

.owner-name-sm {
    font-size: 12px;
    color: var(--dark-300);
    font-weight: 500;
}

/* Service Horizontal Overlay */
.service-horizontal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(38, 86, 84, 0.95), rgba(38, 86, 84, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.service-horizontal-link:hover .service-horizontal-overlay {
    opacity: 1;
}

.view-button-horizontal {
    color: #ffcc00;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Service Cards */
@media (max-width: 1199px) {
    .modern-service-card {
        min-height: 360px;
    }

    .service-image {
        height: 180px;
    }

    .service-title {
        font-size: 15px;
    }

    .service-description {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .modern-service-card {
        min-height: 340px;
    }

    .service-image {
        height: 160px;
    }

    .service-title {
        font-size: 14px;
    }

    .service-description {
        font-size: 10px;
    }

    .rating-text {
        font-size: 11px;
    }

    .owner-name {
        font-size: 12px;
    }

    .price-amount {
        font-size: 15px;
    }

    /* Horizontal Service Cards Mobile */
    .service-horizontal-img {
        width: 60px;
        height: 60px;
    }

    .service-horizontal-price {
        font-size: 14px;
    }

    .service-horizontal-title {
        font-size: 13px;
    }

    .service-horizontal-rating {
        font-size: 11px;
    }

    .owner-name-sm {
        font-size: 11px;
    }
}

/* Modern Talent Card Styles 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 Details Grid */

.grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.main-item {
    grid-row: span 2;
    border-radius: 12px;
    max-width: 656px;
    height: 500px;
}

.main-item img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-item {
    border-radius: 12px;
    max-width: 328px;
    height: 240px;
}

.small-item img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 575px) {
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .main-item {
        grid-row: span 1;
    }
    .small-item {
        max-width: 100%;
    }
    .small-item img {
        width: 100%;
    }
}


/*******************
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);
    min-height: 400px;
    max-height: 420px;
    transition: all 0.4 ease-in;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.06);
}

.service-card-two-img {
    border-radius: 8px;
}

.service-card-two.style-three .service-card-two-img-thumb {
    height: 250px;
    width: 100%;
}

.service-card-two.style-three .service-card-two-img-thumb .service-card-two-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-card-two-body {
    padding: 25px 20px;
}


/* Service Card One */

.service-card {
    border-radius: 16px;
    min-height: 370px;
    max-height: 440px;
    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.w-shadow .freelancer-service-thumb {
    height: 230px;
}

.service-card.w-shadow .freelancer-service-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-card.admin-end {
    max-height: 600px;
    min-height: auto;
}

.service-card.admin-end .service-thumb {
    height: 200px;
    width: 100%;
}

.service-card.admin-end .service-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.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-thumb {
    height: 200px;
}

.recently-view-card-img {
    border-radius: 12px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 20px 12px 12px;
}

.service-card-price {
    color: var(--lime-300);
    font-size: 20px;
}

.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-300);
    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
********************/


/* Translation */

.crancy-product-card__title {
    font-weight: 600;
    font-size: 20px;
}


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


/*******************
Privacy Pages Start
********************/

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #06131c;
}

.legal-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #06131c;
}

.legal-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #06131c;
}

.legal-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #06131c;
}

.legal-content h5,
h6 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #06131c;
    font-weight: 600;
}

.legal-content .content-details p {
    margin-bottom: 20px;
    color: #5b5b5b;
}

.legal-content .content-details ul {
    margin: 20px 0;
}

.legal-content .content-details ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-content .content-details ul li {
    padding: 5px 0;
    font-size: 16px;
    color: #5b5b5b;
}

.legal-content .content-details img {
    height: 618px;
    max-height: 620px;
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .legal-content .content-details img {
        height: auto;
    }
}


/*******************
Privacy Pages End
********************/


/* Gallery Start*/

.gallery-img-item {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-img-item-thumb img {
    width: 100px;
    height: 100px;
}

.gallery-img-item-thumb .car-delet-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    border: 0;
    background-color: transparent;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.gallery-img-item-thumb {
    border-radius: 8px;
    position: relative;
    border: 1px solid #ededed;
    padding: 10px;
    height: 150px;
    width: 150px;
}

.gallery-img-item-thumb img {
    width: 100%;
    height: 100%;
}


/* Gallery End */


/***********************
Service Details Start
***********************/

.job-details-slider-img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    height: 756px;
}

.job-details-slider-img img {
    width: 100%;
    height: 100%;
    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;
}

.service-thumb-sm .job-details-slider-img-thumb {
    width: 100%;
    height: 130px;
}

.service-thumb-sm .job-details-slider-img-thumb img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.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;
}

.review-card i {
    color: var(--lime-300);
}

.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: 25px;
    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 a {
    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;
}

.freelancer-tab-content.for_buyer {
    padding: 0 !important;
}

.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 img {
    width: 78px;
    height: 78px;
}

.company-profile-card-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #06131c;
}

.company-card-list li {
    border-bottom: 1px solid var(--dark-50);
    padding: 16px 0;
}

.company-card-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.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 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 p {
    font-size: 16px;
    color: #5b5b5b;
    line-height: 26px;
}

.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-radius: 16px;
}


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

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

.feature-tab {
    background-color: transparent;
    margin-bottom: 20px;
}

.feature-tab:hover {
    background-color: var(--off-white);
}

.feature-tab.feature-tab-two:hover {
    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-wrapper {
    height: 220px;
}

.blog-thumb {
    border-radius: 10px;
}

.blog-thumb {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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: 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(--white);
    overflow-y: scroll;
    height: calc(100vh - 80px);
    scrollbar-width: none;
}

.sidebar-nav-link {
    display: flex;
    padding: 15px 30px;
    border-radius: 5px;
    gap: 16px;
    font-size: 18px;
    align-items: center;
    color: var(--dark-200);
    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: 300px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Fix for billing/subscription pages specifically */
.container-fluid {
    position: relative;
    z-index: 1;
}

/* Ensure main content doesn't overlap with sidebar */
@media (min-width: 1200px) {
    .d-xl-flex .dashboard-main,
    .d-xl-flex main {
        margin-left: 300px !important;
        width: calc(100% - 300px) !important;
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Mobile responsive sidebar fixes */
@media (max-width: 1199px) {
    .dashboard-main {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 20px;
    }
    
    .dashboard-sidebar {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
    }
}

.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;
}

.admin-job-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.project-name img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
}

.order-img img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
}

.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: #ffcc00;
}

.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;
}

.dashboard-header-btns .dashboard-header-btn i {
    color: var(--lime-300);
    font-size: 20px;
}

.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;
}

.tagify tag>div::before {
    box-shadow: none;
    background-color: #e5e5e5;
}


/* 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;
    display: inline-block;
}


/* 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;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gig-img-icon {
    width: 80px;
    width: 80px;
}

.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: #ffcc00;
    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: #ffcc00;
    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;
    min-height: 52px;
}

.form-container .form-control.tags {
    padding: 4px 8px;
}

.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 {
    justify-content: end;
    margin: 20px 0;
}

.conversation-text li.left-side {
    justify-content: start;
}

.conversation-text li.left-side p {
    background-color: #f9fafb;
    color: #5b5b5b
}

.msg-write-input .form-control {
    height: 50px;
    padding-left: 30px;
}

.text-p-message {
    max-width: fit-content !important;
}

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

.body-h-535 {
    height: 535px;
}

.person-list-h-535 {
    height: 535px;
}

.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: 16px 32px;
    color: var(--white);
}

.footer-newsletter-form .form-control:focus {
    border: 1px solid #ffcc00;
}

.footer-newsletter-form .form-control::placeholder {
    color: #5e7080;
}

.footer-newsletter-btn {
    background-color: var(--lime-300);
    color: var(--white);
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 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);
}


/* Modal */

.report-modal-btn {
    color: #ffcc00 !important;
    border: 1px solid #ffcc00 !important;
}

.toTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcc00 0%, #f5c400 100%);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toTopBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #f5c400 0%, #eab808 100%);
}

.toTopBtn svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.3s ease;
}

.toTopBtn:hover svg {
    transform: translateY(-2px);
}

/* Hide scroll to top button on mobile devices */
@media (max-width: 768px) {
    .toTopBtn, #toTopBtn {
        display: none !important;
    }
}

.person-image {
    width: 40px;
    height: 40px;
}

.no-message {
    font-size: 37.98px;
    line-height: 53.8px;
    color: #06131C;
    text-align: center;
    margin-top: 20px;
}

.no-message-des {
    font-size: 25.32px;
    line-height: 41.14px;
    text-align: center;
    color: #5B5B5B
}

.unread-message-qty {
    width: 20px;
    height: 20px;
    background: #14a800;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 99999999px;
    position: absolute;
    right: -7px;
    top: -5px;
}

.unread-message-qty span {
    color: white;
    font-size: 10px;
}


/*******************
Footer   End
********************/


/* Custom Drop zone */

.custom-dropzone .dropzone {
    max-width: 100%;
    margin: 0;
}

.gslide-description.description-bottom {
    display: none !important;
}

.varified-badge {
    padding: 0;
    border: none;
    background: none;
    position: absolute;
    top: 175px;
}

.varified-badge.detail-varified-badge {
    padding: 0;
    border: none;
    background: none;
    position: absolute;
    right: -28px;
    top: 10px;
}

.varified-badge span {
    margin: 0;
    color: var(--lime-300);
    background: none;
    display: inline;
    padding: 0;
}

.varified-badge svg {
    width: 24px;
    height: 24px;
}


.varified-badge1 {
    padding: 0;
    border: none;
    background: none;
    position: relative;
    right: 11px;
    top: -5px;
}

.varified-badge1.detail-varified-badge {
    padding: 0;
    border: none;
    background: none;
    position: absolute;
    right: -28px;
    top: 10px;
}

.varified-badge1 span {
    margin: 0;
    color: var(--lime-300);
    background: none;
    display: inline;
    padding: 0;
}

.varified-badge1 svg {
    width: 24px;
    height: 24px;
}

.varified-badge2 {
    padding: 0;
    border: none;
    background: none;
    position: absolute;
    top: 147px;
}

.varified-badge2.detail-varified-badge {
    padding: 0;
    border: none;
    background: none;
    position: absolute;
    right: -28px;
    top: 148px;
}

.varified-badge2 span {
    margin: 0;
    color: var(--lime-300);
    background: none;
    display: inline;
    padding: 0;
}

.varified-badge2 svg {
    width: 24px;
    height: 24px;
}

.seller-profile-img {
    position: relative;
}

.service-card-author {
    position: relative;
}

.custom-reletive {
    position: relative;
    width:fit-content;
}

.online-indicator {
    width: 15px;
    height: 15px;
    background-color: #4CAF50;
    border-radius: 50%;
    position: absolute;
    top: 78px;
    right: 3px;
    border: 2px solid white; /* Adds a white border around the dot */
}

.online-indicator1 {
    width: 15px;
    height: 15px;
    background-color: #4CAF50;
    border-radius: 50%;
    position: absolute;
    bottom: 30px;
    right: 10px;
    border: 2px solid white; /* Adds a white border around the dot */
}
.online-indicator2 {
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    right: -2px;
    border: 2px solid white;
}

.offline-indicator2 {
    width: 12px;
    height: 12px;
    background-color: #f44336;
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    right: -2px;
    border: 2px solid white;
}

.offline-indicator {
    width: 15px;
    height: 15px;
    background-color: #f44336;
    border-radius: 50%;
    position: absolute;
    top: 78px;
    right: 3px;
    border: 2px solid white;
}

.offline-indicator1 {
    width: 15px;
    height: 15px;
    background-color: #f44336;
    border-radius: 50%;
    position: absolute;
    bottom: 30px;
    right: 10px;
    border: 2px solid white;
}

.online-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border: 3px solid white;
    border-radius: 50%;
}

.offline-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #f44336;
    border: 3px solid white;
    border-radius: 50%;
}

/* toggle button  */
.nav-toggle{
    --bs-form-switch-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 12 12'%3e%3ccircle r='6' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e) !important;
    width: 3em !important;
    border-radius: 3em !important;
    height: 25px !important;
    margin-left: 27px !important;
}

.nav-toggle>input{
    --bs-form-switch-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 12 12'%3e%3ccircle r='6' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e) !important;
    width: 3em !important;
    border-radius: 3em !important;
    height: 25px !important;
}

.nav-toggle> .form-check-input:checked{
    background-color: var(--lime-300) !important;
    border-color: var(--lime-300) !important;
}

.li-line {
    width: 100%;
    height:1px;
    background:#e9ecef
}

.li-activation {
    margin-top:10px;
    margin-left:27px
}

/* Responsive button styles */
@media (max-width: 768px) {
    .w-btn-secondary-lg {
        padding: 6px 16px;
        font-size: 13px;
        border-radius: 18px;
        color: #ffffff !important;
    }
    
    .header-btn {
        padding: 6px 16px;
        font-size: 13px;
        border-radius: 18px;
        color: #ffffff !important;
    }
    
    .w-btn-secondary-lg svg,
    .header-btn svg {
        width: 10px;
        height: 12px;
    }
}

/* Company Profile Modern Design Styles */

/* Company Profile Header */
.company-profile-header {
    padding: 2rem 0;
}

.company-logo-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

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

.company-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.company-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0.5rem 0 1rem 0;
}

.company-meta .meta-item {
    color: #6b7280;
    font-size: 0.875rem;
}

.company-meta .meta-item svg {
    width: 16px;
    height: 16px;
    fill: #9ca3af;
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.company-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-contact {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-contact:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.btn-quote {
    background: transparent;
    color: #f59e0b;
    border: 1px solid #f59e0b;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-quote:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-1px);
}

.btn-share {
    background: transparent;
    color: #6b7280;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-share:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Quick Connect Card */
.quick-connect-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.quick-connect-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.quick-connect-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.connect-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}

.connect-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon {
    background: #dbeafe;
    color: #2563eb;
}

.phone-icon {
    background: #dcfce7;
    color: #16a34a;
}

.website-icon {
    background: #fef3c7;
    color: #d97706;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: #e4405f;
    color: white;
}

.social-link.tiktok {
    background: #000000;
    color: white;
}

.social-link.twitter {
    background: #1da1f2;
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modern Navigation Tabs */
.profile-navigation {
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.modern-tabs {
    border: none;
    gap: 0.25rem;
}

.modern-tabs .nav-link {
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    background: transparent;
}

.modern-tabs .nav-link:hover {
    background: #f3f4f6;
    color: #374151;
}

.modern-tabs .nav-link.active {
    background: #f59e0b;
    color: white;
}

.modern-tabs .nav-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Tab Content */
.tab-content {
    margin-top: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Company About Section */
.company-about-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.about-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Company Details Card */
.company-details-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.details-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-item label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.detail-item span {
    font-size: 0.875rem;
    color: #1f2937;
    font-weight: 500;
}

/* Service Cards */
.services-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Portfolio Items */
.portfolio-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.portfolio-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content {
    padding: 1rem;
}

.portfolio-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.portfolio-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Jobs Content */
.jobs-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Team Members */
.team-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.team-member {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.member-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.member-info p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Reviews Content */
.reviews-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.reviews-summary {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-score .score {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.review-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.reviews-list {
    margin-top: 1.5rem;
}

.review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.review-item:last-child {
    border-bottom: none;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.review-rating {
    display: flex;
    gap: 0.125rem;
}

.review-text {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.review-date {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 1.5rem;
    }
    
    .company-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .company-actions {
        flex-direction: column;
    }
    
    .btn-contact,
    .btn-quote {
        width: 100%;
        text-align: center;
    }
    
    .modern-tabs {
        flex-wrap: wrap;
    }
    
    .modern-tabs .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Company Category Badge */
.company-category {
    margin-bottom: 12px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ffcc00 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

.category-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
    transition: all 0.2s ease;
}

/* Company Profile Mobile Responsive Styles */
@media (max-width: 768px) {
    .company-profile-header .row {
        flex-direction: column;
    }
    
    .company-profile-header .col-lg-8,
    .company-profile-header .col-lg-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
    
    .company-profile-header .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .company-logo-wrapper {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .company-info {
        text-align: center;
    }
    
    .company-name {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
    }
    
    .company-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .company-meta {
        justify-content: center;
        gap: 1rem !important;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
    
    .company-stats {
        justify-content: center;
        gap: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .company-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem !important;
    }
    
    .btn-contact,
    .btn-quote,
    .btn-share {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .quick-connect-card {
        margin-top: 0;
    }
    
    .quick-connect-title {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .connect-item {
        padding: 0.75rem 0;
        justify-content: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Tab Navigation Mobile */
    .company-tabs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .company-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .company-tabs .nav-link {
        white-space: nowrap;
        min-width: 100px;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    /* Tab Content Mobile */
    .tab-content {
        padding: 1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .overview-card {
        padding: 1rem !important;
    }
    
    .overview-card h4 {
        font-size: 1rem;
    }
    
    .overview-card p {
        font-size: 0.85rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .service-card {
        padding: 1rem !important;
    }
    
    .service-card h5 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .portfolio-item {
        margin-bottom: 1rem;
    }
    
    .portfolio-item img {
        height: 200px !important;
    }
    
    .portfolio-item h5 {
        font-size: 1rem;
    }
    
    .portfolio-item p {
        font-size: 0.85rem;
    }
    
    /* Team Mobile */
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .team-member {
        padding: 1rem !important;
        text-align: center;
    }
    
    .team-member img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .team-member h5 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .team-member .position {
        font-size: 0.75rem;
    }
    
    .team-member .bio {
        font-size: 0.8rem;
        display: none; /* Hide bio on mobile to save space */
    }
    
    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .review-card {
        padding: 1rem !important;
    }
    
    .review-card .reviewer-name {
        font-size: 0.9rem;
    }
    
    .review-card .review-text {
        font-size: 0.85rem;
    }
    
    /* Jobs Mobile */
    .jobs-list .job-item {
        padding: 1rem !important;
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .job-item .job-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .job-item .job-meta {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.25rem !important;
    }
    
    .job-item .job-salary {
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .company-name {
        font-size: 1.25rem !important;
    }
    
    .company-stats {
        gap: 1rem !important;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .company-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-contact,
    .btn-quote,
    .btn-share {
        width: 100%;
        max-width: 200px;
    }
    
    .team-grid {
        grid-template-columns: 1fr !important;
    }
    
    .company-tabs .nav-link {
        min-width: 80px;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Dark Sidebar Theme for Company Dashboard */
.dashboard-sidebar {
    background-color: #1a1a1a !important;
    border-right: 1px solid #333 !important;
}

.sidebar-nav-item .sidebar-nav-link {
    color: #e0e0e0 !important;
    border-radius: 8px;
    margin-bottom: 4px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.sidebar-nav-item .sidebar-nav-link:hover {
    background-color: #2d2d2d !important;
    color: #ffcc00 !important;
}

.sidebar-nav-item .sidebar-nav-link.active {
    background-color: #ffcc00 !important;
    color: #1a1a1a !important;
}

.sidebar-nav-item .sidebar-nav-link svg {
    fill: currentColor !important;
}

.dashboard-sidebar .sidebar-nav {
    background-color: transparent !important;
}

/* Mobile sidebar dark theme */
.offcanvas .dashboard-sidebar {
    background-color: #1a1a1a !important;
}

.offcanvas .sidebar-nav-item .sidebar-nav-link {
    color: #e0e0e0 !important;
}

.offcanvas .sidebar-nav-item .sidebar-nav-link:hover {
    background-color: #2d2d2d !important;
    color: #ffcc00 !important;
}

.offcanvas .sidebar-nav-item .sidebar-nav-link.active {
    background-color: #ffcc00 !important;
    color: #1a1a1a !important;
}

/* Company Profile Mobile Responsive Styles */
@media (max-width: 768px) {
    .company-profile-header .row {
        flex-direction: column;
    }
}

/* Company Cards - Exact match to design */
.company-card {
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.company-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.company-card-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffcc00 0%, #ffd700 100%);
}

.company-logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.company-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.company-info {
    margin-bottom: 16px;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.company-category {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.company-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.company-job-stats {
    text-align: center;
    margin: 20px 0;
    padding: 16px 0;
}

.job-number {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 4px;
}

.job-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.company-location-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

.company-location-info svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.company-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.company-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Responsive adjustments for company cards */
@media (max-width: 768px) {
    .company-card {
        padding: 20px;
    }
    
    .company-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .job-number {
        font-size: 28px;
    }
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    margin-left: 8px;
}

/* Modern Talent Profile Styles */

/* Profile Header */
.modern-profile-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

/* Profile Image */
.profile-image-container {
    position: relative;
    display: inline-block;
}

.modern-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Profile Image Styling - Talent Rounded, Company Square */

/* Talent Profile Images - Rounded */
.seller-profile-img img,
.top-seller-card .seller-profile-img img,
.talent-profile-img,
.talent-avatar img,
.freelancer-profile-img img {
    border-radius: 50% !important;
    object-fit: cover;
}

/* Company Profile Images - Rounded */
.company-logo-img,
.company-profile-card-icon img,
.company-avatar img,
.buyer-profile-img img {
    border-radius: 50% !important;
    object-fit: cover;
}

/* Service card author images - Rounded */
.service-card-author-img {
    border-radius: 50% !important;
    object-fit: cover;
}

/* ========== COMPACT SERVICE CARD OPTIMIZATIONS ========== */

/* Reduce service image height for better proportions */
.recently-view-card-thumb {
    height: 160px !important; /* Reduced from 200px */
}

/* More compact service card content */
.service-card-content {
    padding: 15px 10px 10px !important; /* Reduced from 20px 12px 12px */
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Compact title area */
.service-card-title {
    padding: 8px 0 !important; /* Reduced from 12px 0 */
    font-size: 16px !important; /* Reduced from 18px for better fit */
    line-height: 1.3 !important; /* Tighter line height */
}

/* Compact author section - moved to bottom with smaller elements */
.service-card-author {
    padding-top: 8px !important; /* Even smaller padding */
    gap: 6px !important; /* Smaller gap */
    margin-top: auto !important; /* Push to bottom */
}

/* Smaller author profile image */
.service-card-author-img {
    width: 24px !important; /* Much smaller - reduced from 32px */
    height: 24px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

/* Smaller author name */
.service-card-author-name {
    font-size: 12px !important; /* Much smaller - reduced from 18px */
    line-height: 1.2 !important;
    font-weight: 500 !important;
    color: #6b7280 !important; /* Subtle gray color */
}

/* Make price more prominent */
.service-card-price {
    font-size: 18px !important; /* Reduced from 20px but still prominent */
    font-weight: 700 !important;
}

/* Compact rating */
.service-card-rating {
    font-size: 14px !important; /* Reduced from 16px */
}

/* Overall card optimization */
.service-card {
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    min-height: 320px !important; /* Set a reasonable min-height */
    max-height: 360px !important; /* Prevent cards from being too tall */
}

/* Ensure image maintains aspect ratio */
.recently-view-card-img {
    height: 160px !important;
    object-fit: cover !important;
    width: 100% !important;
}

/* Compact horizontal service cards */
.service-card-horizontal {
    padding: 8px !important; /* Reduced from 10px */
}

/* Better price and rating layout */
.service-card-content > .d-flex.align-items-center.justify-content-between {
    margin-bottom: 8px !important;
}

/* Ensure all content fits within card */
.service-card .service-card-content * {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card-content {
        padding: 12px 8px 8px !important;
    }
    
    .service-card-title {
        font-size: 15px !important;
        padding: 6px 0 !important;
    }
    
    .service-card-author-name {
        font-size: 13px !important;
    }
    
    .service-card-price {
        font-size: 16px !important;
    }
    
    .recently-view-card-thumb {
        height: 140px !important;
    }
}

/* ========== END COMPACT SERVICE CARD OPTIMIZATIONS ========== */

/* General profile images - Rounded */
.profile-image,
.gig-img-icon,
.reviewer-avatar img {
    border-radius: 50% !important;
    object-fit: cover;
}

/* Dashboard profile images - Rounded */
.dashboard-header-btn img,
.w-56 {
    border-radius: 50% !important;
    object-fit: cover;
}

/* Talent pages - Force rounded corners */
.talent-detail-profile img,
.freelancer-card .freelancer-profile-img img,
.freelancer-detail-profile img,
.talent-list-item img {
    border-radius: 50% !important;
    object-fit: cover;
}

/* Company pages - Force rounded corners */
.company-detail-profile img,
.company-card .company-logo-img,
.buyer-detail-profile img,
.company-list-item img {
    border-radius: 50% !important;
    object-fit: cover;
}

/* Override rounded-circle class based on context */
.talent-section .rounded-circle,
.seller-section .rounded-circle,
.freelancer-section .rounded-circle {
    border-radius: 50% !important;
}

.company-section .rounded-circle,
.buyer-section .rounded-circle {
    border-radius: 50% !important;
}

/* Online Status */
.online-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Profile Info */
.profile-info {
    flex: 1;
}

/* Profile Name */
.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Profile Designation */
.profile-designation {
    font-size: 1.25rem;
    color: #f59e0b;
    font-weight: 600;
    margin: 8px 0;
}

/* Profile Badges */
.profile-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Badge */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Rising Badge */
.badge-rising {
    background: #fef3c7;
    color: #92400e;
}

/* Available Badge */
.badge-available {
    background: #d1fae5;
    color: #065f46;
}

/* Profile Meta */
.profile-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

/* Rating Display */
.rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Star */
.star {
    color: #fbbf24;
}

/* Filled Star */
.star.filled {
    color: #fbbf24;
}

/* Rating Text */
.rating-text {
    font-weight: 600;
    color: #374151;
}

/* Location Display */
.location-display {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
}

/* Profile Stats Card */
.profile-stats-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

/* Hourly Rate */
.hourly-rate {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

/* Rate Amount */
.rate-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    display: block;
}

/* Rate Period */
.rate-period {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

/* Stat Item */
.stat-item {
    text-align: center;
}

/* Stat Number */
.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

/* Stat Label */
.stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Contact Button */
.btn-contact {
    background: #f59e0b;
    color: white;
}

/* Hire Button */
.btn-hire {
    background: #10b981;
    color: white;
}

/* Share Button */
.btn-share {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

/* Profile Sidebar */
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sidebar Card */
.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

/* Sidebar Title */
.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f59e0b;
}

/* Sidebar Text */
.sidebar-text {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Tags Styling */
.skills-tags,
.specialties-tags,
.languages-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Skill Tag */
.skill-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #fde68a;
}

/* Specialty Tag */
.specialty-tag {
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #bfdbfe;
}

/* Language Tag */
.language-tag {
    background: #d1fae5;
    color: #065f46;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #a7f3d0;
}

/* Education Section */
.education-item {
    margin-bottom: 16px;
}

.education-item:last-child {
    margin-bottom: 0;
}

/* Education Title */
.education-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

/* Education Details */
.education-details {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.info-value {
    color: #6b7280;
    font-size: 14px;
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.achievement-badge.rising {
    background: #fef3c7;
    color: #92400e;
}

.achievement-badge.expert {
    background: #dbeafe;
    color: #1e40af;
}

.achievement-badge.favorite {
    background: #fce7f3;
    color: #be185d;
}

/* Modern Tab Navigation */
.modern-tabs-container {
    background: white;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.modern-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modern-tabs::-webkit-scrollbar {
    display: none;
}

.modern-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    min-width: fit-content;
}

.modern-tab:hover {
    background: #f3f4f6;
    color: #374151;
}

.modern-tab.active {
    background: #f59e0b;
    color: white;
}

.modern-tab svg {
    width: 16px;
    height: 16px;
}

/* Tab Content */
.modern-tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.content-card {
    padding: 24px;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.content-text {
    color: #4b5563;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

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

.service-content {
    padding: 16px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
    font-size: 14px;
}

.service-title {
    margin: 0;
}

.service-title a {
    color: #111827;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.service-title a:hover {
    color: #f59e0b;
}

/* Reviews Section */
.reviews-section {
    padding: 24px;
}

.review-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.overall-rating {
    text-align: center;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rating-count {
    color: #6b7280;
    font-size: 14px;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.star-count {
    width: 60px;
    font-size: 14px;
    color: #6b7280;
}

.progress {
    flex: 1;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #fbbf24;
    transition: width 0.3s;
}

.count {
    width: 30px;
    text-align: right;
    font-size: 14px;
    color: #6b7280;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-date {
    color: #6b7280;
    font-size: 14px;
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .profile-sidebar {
        margin-top: 2rem;
    }
    
    .modern-tabs {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .modern-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .modern-profile-header .row {
        flex-direction: column;
    }
    
    .profile-stats-card {
        margin-top: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .profile-name {
        font-size: 1.75rem;
    }
    
    .modern-profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .action-buttons {
        width: 100%;
    }
    
    .sidebar-card {
        padding: 16px;
    }
    
    .content-card {
        padding: 20px;
    }
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Modern Talent Profile Styles */
.talent-profile-section {
    background: #f8fafc;
    padding: 40px 0;
}

.talent-profile-header {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.profile-main-info {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.profile-avatar {
    position: relative;
    flex-shrink: 0;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e7eb;
}

.profile-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: 700;
    border: 4px solid #e5e7eb;
}

.online-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border: 3px solid white;
    border-radius: 50%;
}

.verified-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.profile-details {
    flex: 1;
}

.profile-badges {
    margin-bottom: 12px;
}

.rising-talent-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 8px 0;
    line-height: 1.2;
}

.profile-title {
    font-size: 20px;
    font-weight: 600;
    color: #f59e0b;
    margin: 0 0 16px 0;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 16px;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #d1d5db;
    font-size: 18px;
}

.star.filled {
    color: #fbbf24;
}

.rating-score {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.rating-count {
    color: #6b7280;
    font-size: 16px;
}

.availability-badge {
    margin-top: 8px;
}

.available-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.unavailable-badge {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* Stats Card */
.stats-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.hourly-rate {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.rate-amount {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    display: block;
    line-height: 1;
}

.rate-period {
    font-size: 16px;
    color: #6b7280;
    margin-top: 4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-contact {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-hire {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-hire:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-share {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.btn-share:hover {
    background: #e5e7eb;
    color: #374151;
    transform: translateY(-2px);
}

/* Profile Sections */
.profile-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

/* Skills */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.skill-yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

/* Specialties */
.specialties-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.specialty-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.specialty-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

/* Languages */
.languages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.language-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.language-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

/* Tab Navigation */
.profile-tabs {
    background: white;
    border-radius: 16px;
    padding: 8px;
    margin: 32px 0 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.tab-btn.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.tab-btn svg {
    width: 16px;
    height: 16px;
}

/* Tab Content */
.tab-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

/* About Content */
.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
}

.education-section {
    margin: 32px 0;
}

.education-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.education-item {
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 16px;
}

.education-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.education-item .institution {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 4px;
}

.education-item .year {
    font-size: 14px;
    color: #9ca3af;
}

.member-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.member-info p {
    font-size: 16px;
    color: #4b5563;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.portfolio-item {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 16px 16px 8px 16px;
}

.portfolio-item p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 16px 16px 16px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-card {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 16px 16px 8px 16px;
}

.service-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 16px 16px 16px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #f59e0b;
    margin: 0 16px 16px 16px;
}

/* Experience Content */
.experience-item {
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 24px;
}

.experience-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.experience-item .company {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 4px;
}

.experience-item .duration {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.experience-item .description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

/* Reviews Content */
.reviews-summary {
    margin-bottom: 32px;
}

.rating-overview {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    font-size: 24px;
}

.total-reviews {
    font-size: 16px;
    color: #6b7280;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
}

.reviewer-info {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.reviewer-details h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.review-rating .star {
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: #9ca3af;
}

.review-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .talent-profile-section {
        padding: 20px 0;
    }
    
    .talent-profile-header {
        padding: 20px;
    }
    
    .profile-main-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-title {
        font-size: 18px;
    }
    
    .stats-card {
        padding: 20px;
        position: static;
    }
    
    .rate-amount {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .tab-nav {
        justify-content: flex-start;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .portfolio-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-container,
    .specialties-container,
    .languages-container {
        justify-content: center;
    }
}

/* Modern Services Grid - New Design */
.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.modern-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid #e5e7eb;
}

.modern-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.service-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.service-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-star {
    color: #fbbf24;
    font-size: 14px;
}

.service-content {
    padding: 16px;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: #f59e0b;
}

.no-services-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.no-services-state svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-services-state p {
    font-size: 16px;
    margin: 0;
}

/* Responsive for modern services */
@media (max-width: 768px) {
    .modern-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-image-wrapper {
        height: 160px;
    }
}

/* Skills & Languages Combined Section */
.skills-subsection,
.languages-subsection {
    margin-bottom: 24px;
}

.skills-subsection:last-child,
.languages-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f3f4f6;
}

/* Modern Tags Container */
.modern-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modern-tag {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s ease;
}

.modern-tag.skill-tag {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.modern-tag.language-tag {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.modern-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Modern Talent Profile Styles - Compact Version */
.talent-profile-section {
    background: #f8fafc;
    padding: 24px 0;
}

.talent-profile-header {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.profile-main-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.profile-avatar {
    position: relative;
    flex-shrink: 0;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.profile-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    border: 3px solid #e5e7eb;
}

.online-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 2px solid white;
    border-radius: 50%;
}

.verified-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: white;
    border-radius: 50%;
    padding: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.verified-icon svg {
    width: 16px;
    height: 16px;
}

.verified-icon-yellow {
    position: absolute;
    bottom: -2px;
    right: 25px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.verified-icon-yellow svg {
    width: 18px;
    height: 18px;
}

.verified-icon-inline {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    vertical-align: middle;
}

.verified-icon-inline svg {
    width: 20px;
    height: 20px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    font-weight: bold;
}

.profile-details {
    flex: 1;
}

.profile-badges {
    margin-bottom: 8px;
}

.rising-talent-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 6px 0;
    line-height: 1.2;
}

.profile-title {
    font-size: 16px;
    font-weight: 600;
    color: #f59e0b;
    margin: 0 0 12px 0;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 1px;
}

.star {
    color: #d1d5db;
    font-size: 14px;
}

.star.filled {
    color: #fbbf24;
}

.rating-score {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.rating-count {
    color: #6b7280;
    font-size: 14px;
}

.availability-badge {
    margin-top: 6px;
}

.available-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Stats Card - Compact */
.stats-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
}

.hourly-rate {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.rate-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    display: block;
    line-height: 1;
}

.rate-period {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

/* Profile Sections - Compact */
.profile-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

/* Skills & Languages Combined Section - Compact */
.skills-subsection,
.languages-subsection {
    margin-bottom: 16px;
}

.skills-subsection:last-child,
.languages-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #f3f4f6;
}

/* Tab Navigation - Compact */
.profile-tabs {
    background: white;
    border-radius: 12px;
    padding: 6px;
    margin: 20px 0 16px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tab-nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 2px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn svg {
    width: 14px;
    height: 14px;
}

/* Tab Content - Compact */
.tab-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tab-pane h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

/* Modern Services Grid - Compact */
.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.service-image-wrapper {
    position: relative;
    height: 140px;
    overflow: hidden;
}

/* Responsive Design - Enhanced Mobile */
@media (max-width: 768px) {
    .talent-profile-section {
        padding: 16px 0;
    }
    
    .talent-profile-header {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .profile-main-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .profile-image,
    .profile-placeholder {
        width: 70px;
        height: 70px;
    }
    
    .profile-placeholder {
        font-size: 20px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .profile-title {
        font-size: 14px;
    }
    
    .stats-card {
        padding: 16px;
        position: static;
        margin-bottom: 16px;
    }
    
    .rate-amount {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .profile-section {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .tab-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .tab-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .tab-content {
        padding: 16px;
    }
    
    .tab-pane h3 {
        font-size: 18px;
    }
    
    .modern-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-image-wrapper {
        height: 120px;
    }
    
    .modern-tags-container {
        justify-content: center;
    }
}

/* Experience Section Styles */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.experience-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.experience-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.experience-header {
    margin-bottom: 12px;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    color: #f59e0b;
    margin: 0;
}

.experience-period {
    margin-bottom: 12px;
}

.period {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    background: #e5e7eb;
    padding: 4px 12px;
    border-radius: 16px;
    display: inline-block;
}

.experience-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.no-experience-state {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.no-experience-state svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-experience-state p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Mobile Responsive for Experience */
@media (max-width: 768px) {
    .experience-item {
        padding: 16px;
    }
    
    .job-title {
        font-size: 16px;
    }
    
    .company-name {
        font-size: 14px;
    }
    
    .experience-description {
        font-size: 13px;
    }
    
    .no-experience-state {
        padding: 40px 16px;
    }
}

/* Settings Dropdown Styles */
.sidebar-dropdown-menu {
    min-width: 200px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
}

.sidebar-dropdown-menu .dropdown-item {
    padding: 10px 16px;
    color: #374151;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}

.sidebar-dropdown-menu .dropdown-item:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

.sidebar-dropdown-menu .dropdown-item svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex-shrink: 0;
}

.sidebar-dropdown-menu .dropdown-divider {
    margin: 8px 0;
    border-color: #e5e7eb;
}

.sidebar-nav-item.dropdown .dropdown-toggle::after {
    margin-left: auto;
}

/* Mobile Settings Dropdown */
.offcanvas .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    background: transparent;
}

.offcanvas .dropdown.show .dropdown-menu {
    display: block;
}

/* Portfolio styling for freelancer detail page */
.portfolio-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.portfolio-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.portfolio-meta {
    margin-bottom: 1rem;
}

.portfolio-meta p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.portfolio-technologies {
    margin-bottom: 1rem;
}

.portfolio-technologies .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
}

.portfolio-actions {
    margin-top: auto;
}

.no-portfolio-state {
    padding: 3rem 1rem;
}

.no-portfolio-state svg {
    opacity: 0.3;
}

/* Sidebar dropdown improvements */
.sidebar-dropdown-menu {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
}

.sidebar-dropdown-menu .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #374151;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.sidebar-dropdown-menu .dropdown-item:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

.sidebar-dropdown-menu .dropdown-item svg {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.sidebar-dropdown-menu .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e5e7eb;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .portfolio-card {
        margin-bottom: 1.5rem;
    }
    
    .portfolio-content {
        padding: 1rem;
    }
    
    .portfolio-title {
        font-size: 1.1rem;
    }
}

/* Featured Services Swiper Fix */
.serviceSlider {
    overflow: hidden;
    padding: 20px 0;
}

.serviceSlider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.serviceSlider .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.serviceSlider .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.serviceSlider .service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ensure proper spacing for service navigation */
.servicePrev, .serviceNext {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
    cursor: pointer;
}

.servicePrev:hover, .serviceNext:hover {
    background: #22BE0D;
    color: white;
    border-color: #22BE0D;
}

.servicePrev svg, .serviceNext svg {
    width: 20px;
    height: 20px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #9ca3af;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: white;
}

.portfolio-overlay-content svg {
    margin-bottom: 8px;
}

.portfolio-overlay-content span {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
}

.portfolio-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.portfolio-type {
    padding: 4px 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-date {
    padding: 4px 12px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 6px 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.tech-more {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.portfolio-modal-image img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

.portfolio-detail-item {
    font-size: 14px;
    color: #374151;
}

.portfolio-detail-item strong {
    color: #1f2937;
    font-weight: 600;
}

.no-portfolio-state {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.no-portfolio-state svg {
    margin-bottom: 16px;
}

.no-portfolio-state p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Experience Section */
.experience-timeline {
    margin-top: 24px;
}

.experience-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #f59e0b;
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.experience-main {
    flex: 1;
}

.experience-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.experience-company {
    font-size: 16px;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 8px;
}

.experience-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.experience-duration {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.duration-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.employment-type {
    padding: 4px 8px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.experience-description {
    margin-bottom: 16px;
}

.experience-description p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.experience-skills {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.experience-skills strong {
    font-size: 14px;
    color: #374151;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    padding: 6px 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.no-experience-state {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.no-experience-state svg {
    margin-bottom: 16px;
}

.no-experience-state p {
    font-size: 16px;
    color: #6b7280;
}

/* Modern Reviews Section */
.reviews-summary {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 20px;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-number {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .star {
    font-size: 18px;
    color: #d1d5db;
}

.rating-stars .star.filled {
    color: #fbbf24;
}

.total-reviews {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.reviews-list {
    display: grid;
    gap: 16px;
}

.review-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.reviewer-details {
    flex: 1;
}

.reviewer-details h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.review-rating .star {
    font-size: 14px;
    color: #d1d5db;
}

.review-rating .star.filled {
    color: #fbbf24;
}

.review-date {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.review-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .experience-duration {
        align-items: flex-start;
    }
    
    .duration-badge {
        font-size: 11px;
    }
    
    .rating-overview {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .overall-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Talent Response Styles */
.talent-response {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    position: relative;
}

.response-header {
    margin-bottom: 10px;
}

.talent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.talent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.talent-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.talent-details h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
}

.response-date {
    margin: 0;
    font-size: 12px;
    color: #6c757d;
}

.response-text {
    margin: 0;
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
}

.response-form {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    display: none;
}

.response-form .form-group {
    margin-bottom: 15px;
}

.response-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.response-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    min-height: 80px;
}

.response-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-respond {
    margin-top: 10px;
    padding: 8px 16px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-respond:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.btn-primary.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
    background: #ff6b35;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary.btn-sm:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.btn-secondary.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
    background: #6c757d;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary.btn-sm:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Responsive Design for Response Components */
@media (max-width: 768px) {
    .talent-response {
        padding: 12px;
        margin-top: 12px;
    }
    
    .response-form {
        padding: 12px;
        margin-top: 12px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-actions .btn {
        margin-bottom: 5px;
    }
    
    .talent-info {
        gap: 8px;
    }
    
    .talent-avatar,
    .talent-avatar-placeholder {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Review Form Styles */
.review-form-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #e9ecef;
}

.review-form-section h4 {
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.rating-input {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 1rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s ease;
    order: 0;
}

.star-label .star {
    display: inline-block;
}

/* Style for 5-star system (1st star gets order 1, 2nd gets order 2, etc.) */
.rating-input input[type="radio"][value="1"] + .star-label { order: 1; }
.rating-input input[type="radio"][value="2"] + .star-label { order: 2; }
.rating-input input[type="radio"][value="3"] + .star-label { order: 3; }
.rating-input input[type="radio"][value="4"] + .star-label { order: 4; }
.rating-input input[type="radio"][value="5"] + .star-label { order: 5; }

/* When a radio is checked, color it and all previous stars */
.rating-input input[type="radio"][value="1"]:checked ~ .star-label[for*="star1"],
.rating-input input[type="radio"][value="2"]:checked ~ .star-label[for*="star1"],
.rating-input input[type="radio"][value="2"]:checked ~ .star-label[for*="star2"],
.rating-input input[type="radio"][value="3"]:checked ~ .star-label[for*="star1"],
.rating-input input[type="radio"][value="3"]:checked ~ .star-label[for*="star2"],
.rating-input input[type="radio"][value="3"]:checked ~ .star-label[for*="star3"],
.rating-input input[type="radio"][value="4"]:checked ~ .star-label[for*="star1"],
.rating-input input[type="radio"][value="4"]:checked ~ .star-label[for*="star2"],
.rating-input input[type="radio"][value="4"]:checked ~ .star-label[for*="star3"],
.rating-input input[type="radio"][value="4"]:checked ~ .star-label[for*="star4"],
.rating-input input[type="radio"][value="5"]:checked ~ .star-label[for*="star1"],
.rating-input input[type="radio"][value="5"]:checked ~ .star-label[for*="star2"],
.rating-input input[type="radio"][value="5"]:checked ~ .star-label[for*="star3"],
.rating-input input[type="radio"][value="5"]:checked ~ .star-label[for*="star4"],
.rating-input input[type="radio"][value="5"]:checked ~ .star-label[for*="star5"] {
    color: #ffcc00 !important;
}

/* Star Rating System - Working Version */
.rating-input {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-bottom: 1rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.star-label:hover {
    color: #ffcc00;
}

.star-label.selected {
    color: #ffcc00;
}

/* Submit Button App Color */
.review-form .btn-primary,
.btn-primary.submit-review {
    background-color: #ff6b35 !important;
    border-color: #ff6b35 !important;
    color: white !important;
}

.review-form .btn-primary:hover,
.btn-primary.submit-review:hover {
    background-color: #e55a2b !important;
    border-color: #e55a2b !important;
    transform: translateY(-1px);
}

/* Mobile-First Talent Profile Styles */
@media (max-width: 768px) {
    /* Talent Profile Section */
    .talent-profile-section {
        padding: 0;
        background: #f8f9fa;
    }
    
    .talent-profile-section .container {
        padding: 0;
        max-width: 100%;
    }
    
    /* Profile Header - Mobile App Style */
    .talent-profile-header {
        background: linear-gradient(135deg, #235351 0%, #1a4645 100%);
        padding: 20px 16px;
        margin: 0;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .profile-main-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    /* Profile Avatar - Mobile App Style */
    .profile-avatar {
        position: relative;
        margin-bottom: 8px;
    }
    
    .profile-image {
        width: 100px !important;
        height: 100px !important;
        border-radius: 50% !important;
        border: 4px solid #ffcc00 !important;
        object-fit: cover;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    
    .profile-placeholder {
        width: 100px !important;
        height: 100px !important;
        border-radius: 50% !important;
        border: 4px solid #ffcc00 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
        color: white;
        font-size: 2rem;
        font-weight: 600;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    
    .online-status, .offline-status {
        position: absolute;
        bottom: 8px;
        right: 8px;
        width: 24px;
        height: 24px;
        border: 3px solid #235351;
        border-radius: 50%;
    }
    
    .online-status {
        background: #10b981;
    }
    
    .offline-status {
        background: #6b7280;
    }
    
    /* Profile Details - Mobile App Style */
    .profile-details {
        width: 100%;
        color: white;
    }
    
    .profile-badges {
        margin-bottom: 8px;
    }
    
    .rising-talent-badge {
        background: rgba(255,204,0,0.2);
        color: #ffcc00;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        border: 1px solid rgba(255,204,0,0.3);
    }
    
    .profile-name {
        font-size: 1.75rem !important;
        font-weight: 700;
        color: white !important;
        margin: 8px 0 4px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .verified-icon-inline {
        display: inline-flex;
    }
    
    .profile-title {
        font-size: 1.1rem;
        color: #ffcc00 !important;
        margin: 0 0 12px 0;
        font-weight: 500;
    }
    
    .profile-location {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: rgba(255,255,255,0.8) !important;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .profile-location svg {
        stroke: #ffcc00;
    }
    
    .profile-rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .profile-rating .stars .star {
        color: #ffcc00;
        font-size: 1.1rem;
    }
    
    .profile-rating .rating-score {
        color: white;
        font-weight: 600;
        font-size: 0.95rem;
    }
    
    .profile-rating .rating-count {
        color: rgba(255,255,255,0.8);
        font-size: 0.85rem;
    }
    
    .availability-badge {
        display: flex;
        justify-content: center;
    }
    
    .available-badge {
        background: #10b981;
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .unavailable-badge {
        background: #6b7280;
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    /* Stats Card - Mobile App Style */
    .stats-card {
        margin: 16px;
        background: white;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        border: 1px solid #e5e7eb;
    }
    
    .hourly-rate {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .rate-amount {
        font-size: 2.5rem !important;
        font-weight: 700;
        color: #235351 !important;
        display: block;
        line-height: 1;
    }
    
    .rate-period {
        font-size: 0.9rem;
        color: #6b7280;
        margin-top: 4px;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .stat-item {
        text-align: center;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 1.25rem;
        font-weight: 700;
        color: #235351;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 0.75rem;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }
    
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-contact, .btn-hire {
        padding: 16px 24px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: block;
        width: 100%;
    }
    
    .btn-contact {
        background: linear-gradient(135deg, #ffcc00 0%, #f5c400 100%);
        color: #235351;
    }
    
    .btn-contact:hover {
        background: linear-gradient(135deg, #f5c400 0%, #eab808 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(245, 196, 0, 0.3);
        color: #235351;
    }
    
    .btn-hire {
        background: linear-gradient(135deg, #235351 0%, #1a4645 100%);
        color: white;
    }
    
    .btn-hire:hover {
        background: linear-gradient(135deg, #1a4645 0%, #0f2e2b 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(35, 83, 81, 0.3);
        color: white;
    }
    
    /* Profile Section - Mobile App Style */
    .profile-section {
        background: white;
        margin: 16px;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .section-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #235351;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .subsection-title {
        font-size: 1rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 12px;
    }
    
    .modern-tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .modern-tag {
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        display: inline-block;
        text-align: center;
    }
    
    .skill-tag {
        background: linear-gradient(135deg, #ffcc00 0%, #f5c400 100%);
        color: #235351;
    }
    
    .language-tag {
        background: linear-gradient(135deg, #235351 0%, #1a4645 100%);
        color: white;
    }
    
    .skills-subsection, .languages-subsection {
        margin-bottom: 20px;
    }
    
    .skills-subsection:last-child, .languages-subsection:last-child {
        margin-bottom: 0;
    }
    
    /* Tab Navigation - Mobile App Style */
    .profile-tabs {
        background: white;
        margin: 16px;
        border-radius: 20px;
        padding: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .tab-nav {
        display: flex;
        gap: 4px;
        overflow-x: auto;
        padding: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tab-nav::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 12px 16px;
        border: none;
        background: transparent;
        border-radius: 12px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #6b7280;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .tab-btn:hover {
        background: #f3f4f6;
        color: #374151;
    }
    
    .tab-btn.active {
        background: linear-gradient(135deg, #ffcc00 0%, #f5c400 100%);
        color: #235351;
        box-shadow: 0 4px 12px rgba(245, 196, 0, 0.3);
    }
    
    .tab-btn svg {
        width: 14px;
        height: 14px;
    }
    
    /* Tab Content - Mobile App Style */
    .tab-content {
        background: white;
        margin: 0 16px 16px 16px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .tab-pane {
        display: none;
        padding: 24px;
    }
    
    .tab-pane.active {
        display: block;
    }
    
    .tab-pane h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #235351;
        margin-bottom: 20px;
        text-align: center;
    }
    
    /* About Content - Mobile */
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #4b5563;
        margin-bottom: 16px;
        text-align: justify;
    }
    
    /* Portfolio Grid - Mobile */
    .portfolio-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .portfolio-item {
        background: #f9fafb;
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.3s ease;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    
    .portfolio-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .portfolio-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .portfolio-item h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #235351;
        margin: 16px 16px 8px 16px;
    }
    
    .portfolio-item p {
        color: #6b7280;
        font-size: 0.9rem;
        margin: 0 16px 16px 16px;
        line-height: 1.4;
    }
    
    /* Services Grid - Mobile */
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card-modern {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border: 1px solid #e5e7eb;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .service-card-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    /* Reviews Section - Mobile */
    .review-card {
        background: #f9fafb;
        border-radius: 16px;
        padding: 16px;
        margin-bottom: 16px;
        border: 1px solid #e5e7eb;
    }
    
    /* Education Section - Mobile */
    .education-item {
        padding: 16px;
        background: #f9fafb;
        border-radius: 12px;
        margin-bottom: 12px;
        border: 1px solid #e5e7eb;
    }
    
    .education-item h5 {
        font-size: 1rem;
        font-weight: 600;
        color: #235351;
        margin-bottom: 4px;
    }
    
    .education-item .institution {
        font-size: 0.9rem;
        color: #6b7280;
        margin-bottom: 2px;
    }
    
    .education-item .year {
        font-size: 0.8rem;
        color: #9ca3af;
    }
    
    /* Contact Modal - Mobile App Style */
    .modal-content {
        border-radius: 20px;
        border: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .modal-header {
        background: linear-gradient(135deg, #235351 0%, #1a4645 100%);
        color: white;
        border-radius: 20px 20px 0 0;
        padding: 20px;
        border-bottom: none;
    }
    
    .modal-title {
        font-weight: 700;
        font-size: 1.25rem;
    }
    
    .btn-close {
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        width: 32px;
        height: 32px;
        opacity: 1;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .form-label {
        font-weight: 600;
        color: #374151;
        margin-bottom: 8px;
    }
    
    .form-control {
        border-radius: 12px;
        border: 2px solid #e5e7eb;
        padding: 12px 16px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: #ffcc00;
        box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
    }
    
    .modal-footer {
        padding: 16px 24px 24px 24px;
        border-top: none;
        gap: 12px;
    }
    
    .modal-footer .btn {
        border-radius: 12px;
        padding: 12px 24px;
        font-weight: 600;
        flex: 1;
    }
    
    .btn-secondary {
        background: #f3f4f6;
        color: #6b7280;
        border: none;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #ffcc00 0%, #f5c400 100%);
        color: #235351;
        border: none;
    }
    
    /* General Mobile Improvements */
    .col-lg-8, .col-lg-4 {
        padding: 0;
    }
    
    .container .row {
        margin: 0;
    }
    
    /* Hide desktop-only elements on mobile */
    .d-lg-block {
        display: none !important;
    }
    
    /* Ensure proper spacing */
    body {
        padding-top: 0;
    }
    
    /* Responsive text sizes */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
    
    /* Improve touch targets */
    button, .btn, a[role="button"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Smooth scrolling for tabs */
    html {
        scroll-behavior: smooth;
    }
}

/* Response Button */
.btn-respond {
    background-color: #ff6b35;
    border: 1px solid #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-respond:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-1px);
}

/* Review Form Styles */
.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.review-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 100px;
}

.review-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Company Response Styling */
.company-response {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
}

.company-response .response-header {
    margin-bottom: 10px;
}

.company-response .company-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-response .company-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.company-response .company-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff6b35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.company-response .company-details h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.company-response .response-date {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.company-response .response-text {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

/* Star Rating Fix */
.star-label {
    cursor: pointer !important;
    font-size: 1.5rem !important;
    color: #ddd !important;
    transition: color 0.2s ease !important;
}

.star-label:hover,
.star-label.selected {
    color: #ffcc00 !important;
}

/* ========== SMART SEARCH STYLING ========== */

.smart-search-container {
    position: relative;
    flex: 1;
}

.smart-search-container .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.smart-search-input {
    padding-left: 50px !important;
    font-size: 15px !important;
    border: none !important;
    background: transparent !important;
}

.smart-search-input::placeholder {
    color: #999 !important;
    font-style: italic;
}

.smart-search-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ========== END SMART SEARCH STYLING ========== */

/* Fix for dropdown menu text visibility - make text black instead of white */
.header-primary.header-transparent .select-dropdown.nice-select span,
.header-primary.header-transparent .select-dropdown.nice-select option {
    color: #333 !important;
}

.header-primary.header-transparent .select-dropdown.nice-select::after {
    color: #333 !important;
}

/* Comprehensive dropdown fixes for category visibility */
.nice-select {
    color: #333 !important;
}

.nice-select .current {
    color: #333 !important;
}

.nice-select .list {
    background: #fff !important;
    color: #333 !important;
}

.nice-select .option {
    color: #333 !important;
    background: #fff !important;
}

.nice-select .option:hover {
    color: #ffcc00 !important;
    background: #f8f9fa !important;
}

.nice-select .option.selected {
    color: #ffcc00 !important;
    background: #f8f9fa !important;
}

.nice-select .option.focus {
    color: #ffcc00 !important;
    background: #f8f9fa !important;
}

/* Category dropdown specific fixes */
.select-dropdown.nice-select {
    color: #333 !important;
}

.select-dropdown.nice-select .current {
    color: #333 !important;
}

.select-dropdown.nice-select .list {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.select-dropdown.nice-select .option {
    color: #333 !important;
    background: #fff !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid #f3f4f6 !important;
}

.select-dropdown.nice-select .option:hover {
    color: #ffcc00 !important;
    background: #f8f9fa !important;
}

/* Ensure dropdown options are also visible */
.header-primary.header-transparent .select-dropdown.nice-select .list {
    background-color: white !important;
}

.header-primary.header-transparent .select-dropdown.nice-select .list .option {
    color: #333 !important;
}

.header-primary.header-transparent .select-dropdown.nice-select .list .option:hover {
    background-color: #f8f9fa !important;
    color: #333 !important;
}
