/* Theme (from user) + small additions */

/* Hiring Type Selection Styles */
.hiring-type-selection {
    padding: 60px 0;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.main-title-onboardbuyer {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #222;
    text-align: left;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: left;
    color: #666;
    font-size: 1.1rem;
}

.hiring-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    /* padding: 0 1rem; */
}
.containindex-buyer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hiring-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.hiring-card:hover {
    border-color: #00cedc;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 206, 220, 0.15);
}

.card-content {
    /* padding: 30px 20px; */
    text-align: center;
    position: relative;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: #e1f8f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-container i {
    font-size: 32px;
    color: #00cedc;
}

.icon-container.company {
    background: #fff0e6;
}

.icon-container.company i {
    color: #ff6b00;
}

.hiring-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hiring-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wp-badge-style {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 12px;
    color: #334155;
    border: 1px solid #e2e8f0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hiring-options {
        grid-template-columns: 1fr;
    }

    .main-title-onboardbuyer {
        font-size: 20px;
        /* padding: 0 1rem; */
        margin-bottom: 10px;
    }

    .subtitle {
        margin-bottom: 10px;
    }

    .hiring-type-selection {
        padding: 40px 0;
    }
}
:root {
    --title-font-family: var(--artdeco-reset-typography-font-family-sans);
    --body-font-family: var(--artdeco-reset-typography-font-family-sans);

    --artdeco-reset-typography-font-family-sans: -apple-system, system-ui,
        BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans",
        Ubuntu, "Oxygen", "Oxygen Sans", Cantarell, "Droid Sans",
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;

    --icon-font-family: "Font Awesome 6 Pro";
    --icon-font-family2: "Flaticon";
    --container-width: 1460px;
    --divder-space: 200px;
    --headings-color: #222222;
    --body-text-color: #6b7177;
    --brand: #00cedc;
    --line: #e5e7eb;
    --soft: 0 10px 25px rgba(0, 0, 0, 0.1);
    --brand: #00cedc;
    --line: #e5e7eb;
    --soft: 0 10px 25px rgba(0, 0, 0, 0.1);
    --brand: #00cedc;
    --line: #e5e7eb;
    --soft: 0 10px 30px rgba(2, 12, 27, 0.06);
    --r-lg: 16px;
    --header-h: 0px;
    --border: #e5e7eb;
    --sidebar-link: #000;
    --sidebar-link-hover: #fff;
    --sidebar-link-hover-bg: #00cedc;
    --sidebar-icon-size: 18px;
}

/* Team Search Styles */
.team-search-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.filters-row {
    display: flex;
    gap: 20px;
    padding: 24px;
    margin-bottom: 24px;
    background: #fff;
    border-radius: var(--r-lg);
}

.filter-item {
    flex: 1;
}

.filter-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--headings-color);
}

.filter-item select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.team-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--soft);
}

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

.team-header h3 {
    margin: 0;
    font-size: 20px;
}

.badge.verified {
    background: #e8f7f7;
    color: var(--brand);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.team-meta {
    margin-bottom: 20px;
}

.team-meta p {
    margin: 0 0 8px;
}

.team-roles {
    color: var(--headings-color);
    font-weight: 500;
}

/* .btn-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
} */

/* Layout */
.buyerflow-wrap {
    display: grid;
    min-height: 100vh;
}

/* Sidebar Styles */
.freelancersidebaarthreeoption {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #fff;
    border-right: 1px solid var(--border);
    width: 230px;
    z-index: 100;
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.02);
    background: #ffffff;
    color: #000;
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
}

.freelancersidebaarthreeoption .links {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.freelancersidebaarthreeoption .links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    color: var(--sidebar-link);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 14px;
}

.freelancersidebaarthreeoption .links a:hover {
    color: #fff;
    background: var(--sidebar-link-hover-bg);
}

.freelancersidebaarthreeoption .links a.active {
    color: #fff;
    background: var(--sidebar-link-hover-bg);
}

.freelancersidebaarthreeoption .links .icon {
    font-family: "Material Symbols Rounded";
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    font-size: var(--sidebar-icon-size);
    line-height: 1;
    color: var(--sidebar-icon);
    transition: color 0.2s;
}

/* Content Area */
.buyerflow-content {
    background: #f1f1f1;
    /* min-height: 100vh; */
}

.muted {
    color: #6b7280;
}

/* Support Form Styles */
.support-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.support-form select,
.support-form input,
.support-form textarea {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-size: 14px;
    line-height: 1.25;
    padding: 0.625rem 0.75rem;
    width: 100%;
    margin-bottom: 1rem;
}

.support-form select option {
    padding: 8px;
    background-color: #fff;
    color: #374151;
}

.support-form select option:checked,
.support-form select option:hover {
    background-color: #f3f4f6 !important;
    color: #374151 !important;
}

/* Override default select styles */
.support-form select::-ms-expand {
    display: none;
}

.support-form select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(0, 206, 220, 0.1);
    outline: none;
}

.grid {
    display: grid;
    gap: 18px;
}
.grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
    .grid.cols-2 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.card.hover:hover {
    transform: translateY(-2px);
    border-color: var(--sidebar-link-hover-bg);
}
/* Layout helpers */

.grid {
    display: grid;
    gap: 18px;
}
.grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
    .grid.cols-3,
    .grid.cols-4 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--soft);
    padding: 18px;
}
.card.hover {
    cursor: pointer;
}
.card.hover:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
}

.panel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    /* border: 1px solid var(--line); */
    border-radius: 12px;
    background: #fff;
    font-weight: 700;
}
.btn.primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.btn.ghost {
    background: transparent;
}
.btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.list {
    display: grid;
    gap: 12px;
    padding: 0;
}
.list .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
}
.kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.kpi {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}
.kpi strong {
    display: block;
    font-size: 22px;
    color: #111;
}
table {
    border-collapse: collapse;
    width: 100%;
}
th,
td {
    padding: 8px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}
footer {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    margin-top: 40px;
    color: #6b7280;
}
.muted {
    color: #6b7280;
}
.help {
    color: #6b7280;
    font-size: 13px;
}
label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="file"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font: inherit;
    color: #111;
}
textarea {
    min-height: 120px;
    resize: vertical;
}
.form {
    display: grid;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 700px) {
    .form .row {
        grid-template-columns: 1fr;
    }
}
.drafffffbuyerr {
    background-color: #fff;
}

.helpbar {
    background: #f8fafc;
    border: 1px dashed var(--border);
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
}
/*	All kind Of btns Styles  */
.ud-btnnnn {
    /* width: 100%; */
    border-radius: 8px;
    display: inline-block;
    font-family: var(--title-font-family);
    font-weight: 700;
    font-size: 15px;
    font-style: normal;
    letter-spacing: 0em;
    padding: 10px 28px;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.ud-btnnnn i {
    margin-left: 10px;
    font-size: 16px;
    transform: rotate(-45deg);
}
.ud-btnnnn:hover,
.ud-btnnnn:focus,
.ud-btnnnn:active {
    outline: none;
    box-shadow: none;
}

@media (max-width: 767.98px) {
    .ud-btnnnn {
        padding: 13px 25px !important;
    }
}

@media (max-width: 339px) {
    .ud-btnnnn {
        padding: 13px 25px;
    }
}

.btnup-thmmm {
    background-color: #fff;
    border: 2px solid #1f1f1f;
    color: #1f1f1f;
}

.btnup-thmmm:before {
    background-color: #1f1f1f;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: width 0.6s;
    -moz-transition: width 0.6s;
    -o-transition: width 0.6s;
    transition: width 0.6s;
    transform-origin: top left;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btnup-thmmm:hover {
    color: #ffffff;
    border: 2px solid #1f1f1f;
}

.btnup-thmmm:hover:before,
.btn-light-thm:hover:before,
.btn-light-white:hover:before,
.btnup-thmmm2:hover:before,
.btn-home3:hover:before,
.btnup-thmmm3:hover:before,
.btnup-thmmm4:hover:before,
.btnup-thmmm-border:hover:before {
    width: 200%;
}

.input,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="file"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.input,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="file"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea {
    display: block;
    margin-left: 0;
}

.input {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    font: inherit;
}
label {
    display: block;
    font-weight: 700;
    margin: 0.5rem 0 0.25rem;
}

/* Help Pages Styling */
.help-content-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    padding: 25px 30px;
    margin: 20px 0;
}

.help-content-wrapper h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #1f2937;
}

.help-content-wrapper h2:first-child {
    margin-top: 0;
}

.help-content-wrapper p,
.help-content-wrapper ul,
.help-content-wrapper ol {
    margin-bottom: 20px;
    line-height: 1.6;
}

.help-content-wrapper ul li,
.help-content-wrapper ol li {
    margin-bottom: 8px;
}

.help-content-wrapper .muted {
    font-size: 14px;
    padding-top: 15px;
    margin-top: 25px;
}

/* --- Team Cards 2.0 --- */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 20px 0;
    max-width: 100%;
    margin: 0 auto;
}

/* Responsive grid adjustments */
@media (max-width: 1400px) {
    .teams-grid {
        grid-template-columns: repeat(
            2,
            1fr
        ); /* 2 cards per row on medium screens */
    }
}

@media (max-width: 900px) {
    .teams-grid {
        grid-template-columns: 1fr; /* 1 card per row on mobile */
    }
}

.team-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
}

/* Cover / badge / save */
.team-cover {
    height: 140px;
    position: relative;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.4)
        ),
        var(--img) center/cover no-repeat;
}

.verified-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f7f7;
    color: var(--brand);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.verified-badge .material-symbols-rounded {
    font-size: 16px;
}

.save-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.save-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--soft);
}

.save-btn.is-saved {
    background: #ffe9a8;
    border-color: #facc15;
}

.save-btn .material-symbols-rounded {
    font-size: 20px;
    color: #374151;
}

/* Body */
.team-body {
    padding: 16px 20px 20px;
}

.team-head {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
    margin-top: -28px;
}

.team-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    background: #fff;
}

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

.team-title h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: #111827;
}

.team-title .subtitle {
    margin: 6px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.5;
}

/* Rating */
.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
}

.stars .material-symbols-rounded {
    font-size: 18px;
}

/* Meta chips */
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 12px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 999px;
    background: #f8fafc;
    font-size: 13px;
    color: #374151;
    white-space: nowrap;
}

.chip .material-symbols-rounded {
    font-size: 18px;
}

/* Role tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 8px 0 16px;
    list-style: none;
}

.tag {
    border: 1px solid var(--line);
    background: #fff;
    color: #374151;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
}

/* KPIs */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.kpi {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.kpi strong {
    display: block;
    font-size: 20px;
    color: #111;
    line-height: 1.2;
}

.kpi .muted {
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

/* Buttons */
.btns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.team-card .btn {
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid var(--line);
    color: #374151;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.team-card .btn.primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    font-weight: 600;
}

.team-card .btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--soft);
    border-color: #d1d5db;
}

.team-card .btn.primary:hover {
    background: #00bbc8;
    border-color: #00bbc8;
}

/* Focus states (a11y) */
.team-card a.btn,
.save-btn {
    outline: none;
}

.team-card a.btn:focus-visible,
.save-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 206, 220, 0.25);
}

/* Panels hover polish */
.team-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--soft);
}

.hidden-radio {
    display: none;
}

.buyer-radio-circle {
    position: absolute;
    top: 0rem;
    right: 0rem;
    width: 22px;
    height: 22px;
    border: 2px solid #00c8d2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.buyer-radio-circle::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #00c8d2;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

/* when checked */
.hiring-card input:checked + .card-content .buyer-radio-circle::before {
    opacity: 1;
}

.hiring-card input:checked + .card-content .buyer-radio-circle {
    box-shadow: 0 0 0 4px rgba(0, 200, 210, 0.2);
    border-color: #00c8d2;
}

.continue-btn-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Tab buttons media query */
@media (max-width: 767px) {
    .tab-buttons {
        display: none !important;
    }
}

/* Hire Grid - Desktop View */
@media (min-width: 768px) {
    .hire-desktop-view {
        display: block !important;
    }

    .hire-mobile-view {
        display: none !important;
    }
}

/* Hire Grid - Mobile View 3x2 without descriptions */
@media (max-width: 767px) {
    .hire-desktop-view {
        display: none !important;
    }

    .hire-mobile-view {
        display: block !important;
    }

    .hire-animated-wrapper-mobile {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        /* padding: 0 10px; */
        margin: 0;
    }

    .hire-animated-box-mobile {
        flex: 1;
        min-width: 80px;
        background: #ffffff;
        border-radius: 12px;
        padding: 16px 10px;
        text-align: center;
        text-decoration: none;
        color: #333;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hire-animated-box-mobile:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    }

    .hire-animated-box-mobile .hire-icon {
        font-size: 24px;
        color: #00cedc;
        margin-bottom: 10px;
    }

    .hire-animated-box-mobile .hire-title {
        font-size: 13px;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
        color: #333;
    }
}

/* Mobile Buyer Sidebar Styles */
.mobile-buyer-sidebar {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-welcome-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sidebar-subtitle {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.mobile-buyer-menu {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    flex: 1;
}

.mobile-buyer-menu li {
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-buyer-menu li:last-child {
    border-bottom: none;
}

.menu-item-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    color: #1f1f1f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

/* .menu-item-link:hover {
    background-color: #f0f4f8;
    border-left-color: #0a66c2;
    color: #0a66c2;
} */

.menu-item-link i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: inherit;
}

.menu-item-link .mobile-befo-menu-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.logout-link {
    color: #d32f2f;
    margin-top: auto;
}

.logout-link:hover {
    background-color: #ffebee;
    border-left-color: #d32f2f;
    color: #d32f2f;
}

.switch-role-link {
    background-color: #f0f8ff;
    color: #00cedc;
    border-left-color: #00cedc;
}

.switch-role-link:hover {
    background-color: #e6f3ff;
    border-left-color: #00cedc;
    color: #00cedc;
}

.menu-divider {
    list-style: none;
    padding: 0;
    margin: 0;
    height: auto;
}

/* Rising Freelancer Carousel Styles */
/* Rising Freelancer Styles */
.rising-freelancer-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.rising-freelancer-carousel .slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.rising-freelancer-carousel .slider-track::-webkit-scrollbar {
    display: none;
}

.rising-freelancer-carousel .carousel-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.rising-freelancer-carousel .carousel-slide .freelancer-style1 {
    height: 100%;
}
