.user-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 8px;
}

.header-area .main-menu ul li a {
    padding: 25px 20px !important;
}

.required::after {
    content: " *";
    color: red;
}

.no-arrow::-webkit-inner-spin-button,
.no-arrow::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no-arrow {
    -moz-appearance: textfield;
}

.header-area {
    position: relative;
    z-index: 999;
    /* z-index: 99999; */
}

.card,
.table-responsive {
    position: relative;
    z-index: 1;
}

.header-area .main-menu ul ul.submenu {
    z-index: 999999;
}

.pagination {
    justify-content: center;
    margin-top: 20px;
    gap: 6px;
}

.pagination li {
    list-style: none;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 8px;
    border: 1px solid #eee;
    color: #555;
    background: #fff;
    transition: all 0.25s ease;
}

/* Hover */
.pagination li a:hover {
    background: #F58634;
    color: #fff;
    border-color: #F58634;
    transform: translateY(-1px);
}

/* Active */
.pagination .active span {
    background: #F58634 !important;
    color: #fff !important;
    border-color: #F58634 !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 10px rgba(251, 36, 106, 0.3) !important;
}

/* Disabled */
.pagination .disabled span {
    color: #aaa;
    background: #f8f9fa;
    cursor: not-allowed;
}

/* Previous / Next */
.pagination li:first-child a,
.pagination li:last-child a {
    font-weight: 600;
}

.ts-hidden-accessible {
    display: none !important;
}

/* CARD */
.form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    animation: fadeIn 0.4s ease;
}

.form-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.form-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

/* NOTE */
.note {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
    display: block;
}

/* INPUT */
.form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #dcdfe6;
    padding: 10px 14px;
    font-size: 14px;
    background-color: #f9fafc;
    transition: all 0.2s ease;
}

/* TEXTAREA */
textarea.form-control {
    height: 90px;
    resize: none;
}

/* SELECT */
select.form-control {
    height: 48px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

/* PLACEHOLDER */
.form-control::placeholder {
    color: #9aa0a6;
    font-size: 13px;
}

/* FOCUS */
.form-control:focus {
    background: #ffffff;
    border-color: #F58634;
    box-shadow: 0 0 0 2px rgba(251, 36, 106, 0.1);
}

/* FORM GROUP */
.form-group {
    margin-bottom: 18px;
}

/* BUTTON */
.btn-submit {
    background: linear-gradient(135deg, #F58634, #6a82fb);
    color: #fff;
    border: none;
    height: 45px;
    padding: 0 30px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #eb9c63, #ec8fae);
}

/* RADIO BUTTON STYLE (IMPORTANT FOR YOUR UI) */
.radio-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-btn-group input[type="radio"] {
    display: none;
}

.radio-btn-group label {
    padding: 8px 16px;
    border: 1px solid #F58634;
    border-radius: 6px;
    font-size: 13px;
    color: #F58634;
    cursor: pointer;
    margin: 0;
    transition: 0.2s;
}

.radio-btn-group input[type="radio"]:checked+label {
    background: #F58634;
    color: #fff;
}

.radio-btn-group label:hover {
    background: #eb9c63;
    color: #fff;
    border-color: #eb9c63;
}

/* SIMPLE RADIO (YES / NO) */
.simple-radio label {
    border: none;
    padding: 0;
    margin-right: 15px;
    font-size: 13px;
}

.simple-radio input {
    display: inline-block;
    margin-right: 5px;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .page-section {
        padding: 30px 8px;
    }

    .form-card {
        padding: 18px;
    }

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

    label {
        font-size: 12px;
    }

    .form-control {
        height: 44px;
        font-size: 13px;
    }

    textarea.form-control {
        height: 80px;
    }

    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .page-section {
        padding: 20px 5px;
    }

    label {
        font-size: 11px;
    }

    .form-control {
        height: 42px;
    }
}

.ts-control {
    min-height: 50px;
    /* same as your input */
    border-radius: 8px;
    border: 1px solid #ced4da;
    background: #f9fafc;
    padding: 8px 10px;
    font-size: 14px;
}

.ts-control.focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .25);
}

.ts-dropdown {
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.ts-control .item {
    background: #e7f1ff;
    color: #0d6efd;
    border-radius: 4px;
    padding: 2px 6px;
    margin: 2px;
}

.custom-table thead th {
    font-size: 13px;
    font-weight: 600;
    background: #f8f9fc;
    border-bottom: 1px solid #eee;
}

.custom-table tbody td {
    font-size: 14px;
    vertical-align: middle;
}

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

.fw-600 {
    font-weight: 600;
    font-size: 14px;
}

.action-btns .btn {
    padding: 3px 8px;
    font-size: 12px;
}

.card {
    border: none;
    border-radius: 8px;
}

.card-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.card-body {
    padding: 0;
}

.sales-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sales-card .card-header {
    background: #f8f9fc;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
}

.sales-card .card-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.sales-table td {
    padding: 12px 20px;
    font-size: 14px;
    border-top: 1px solid #f1f1f1;
}

.sales-table td:first-child {
    color: #666;
    width: 20%;
}

.sales-table td:last-child {
    color: #222;
}

.badge {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .sales-table td {
        display: block;
        width: 100%;
        text-align: left !important;
        padding: 10px 15px;
    }

    .sales-table tr {
        display: block;
        margin-bottom: 10px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    }

    .sales-table td:first-child {
        font-size: 12px;
        color: #888;
        padding-bottom: 0;
        width: 100%;
    }

    .sales-table td:last-child {
        font-size: 14px;
        font-weight: 600;
    }
}

.section-title td {
    background: #f1f3f9;
    font-weight: 600;
    font-size: 13px;
    color: #444;
    text-transform: uppercase;
    padding: 10px 20px;
}

/* Better mobile spacing */
@media (max-width: 576px) {
    .section-title td {
        font-size: 12px;
    }
}

.badge-soft-success {
    background: #e6f7ee;
    color: #1ca56b;
}

.badge-soft-danger {
    background: #fdeaea;
    color: #e74c3c;
}

.pricing-section {
    background: #f4f7fb;
}

/* Toggle */
.toggle-btn {
    background: #eaeef7;
    border-radius: 50px;
    padding: 5px;
}

.toggle-btn .btn {
    border-radius: 50px;
    font-size: 14px;
    padding: 8px 20px;
    background: transparent;
}

.toggle-btn .btn.active {
    background: #3f51b5;
    color: #fff;
}

/* Card */
.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Popular Card */
.pricing-card.popular {
    border: 2px solid #28a745;
}

.popular-tag {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #28a745;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* Price */
.pricing-card h3 {
    font-size: 28px;
    font-weight: bold;
}

.pricing-card h3 span {
    font-size: 14px;
    color: #777;
}

/* List */
.pricing-card ul {
    padding: 0;
    margin-top: 15px;
}

.pricing-card ul li {
    list-style: none;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        text-align: center;
    }
}

.profile-img-wrapper img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4c63d2;
    display: block;
    margin: auto;
}

.profile-img-wrapper button {
    font-size: 13px;
    padding: 6px 12px;
}

.step-wrapper {
    max-width: 420px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    min-height: 700px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.step-header {
    background: #eb9c63;
    padding: 15px 10px;
    color: #fff;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    top: 14px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    line-height: 28px;
    font-size: 12px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.step.active .step-circle {
    background: #fff;
    color: #eb9c63;
    font-weight: 600;
}

.step.completed .step-circle {
    background: #28a745;
}

.step-label {
    font-size: 11px;
}

.step-body {
    flex: 1;
    padding: 20px;
}

.title-box {
    background: #f1f2f4;
    padding: 12px 14px;
    font-size: 13px;
    color: #666;
}

.question {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.option-grid .option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
    display: block;
    background: #fff;
}

.option-grid .option input {
    display: none;
}

.option-grid .option span {
    display: block;
}

.option-grid .option:has(input:checked) {
    border: 1px solid #eb9c63;
    background: rgba(235, 156, 99, 0.1);
    color: #eb9c63;
    font-weight: 600;
}

.step-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    background: #fff;
}

.btn-custom {
    height: 45px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.btn-back {
    border: 1px solid #eb9c63;
    color: #eb9c63;
    background: #fff;
}

.btn-back:hover {
    color: #fff;
}

.btn-next {
    background: #eb9c63;
    color: #fff;
    border-radius: 8px;
    height: 45px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.btn-next:hover {
    background: #3b4fc1;
    color: #fff;
}

@media(max-width: 576px) {
    .profile-card {
        padding: 20px 15px;
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.skills-search-box {
    background: #f4d2b5;
    padding: 10px;
    font-weight: 600;
}

.skills-search-box input {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0 10px;
    font-size: 13px;
}

.skill-section {
    background: #f7f8fa;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
}

.skill-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.skill-tag {
    border: 1px solid #cfd3dc;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    background: #f8f9fb;
    display: inline-block;
    transition: 0.2s;
}

.skill-tag input {
    display: none;
}

.skill-tag span {
    display: inline-block;
}

.skill-tag:has(input:checked) {
    border-color: #eb9c63;
    background: rgba(235, 156, 99, 0.15);
    color: #eb9c63;
    font-weight: 600;
}

.profile-card {
    max-width: 420px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.profile-title {
    font-size: 18px;
    font-weight: 600;
    color: #eb9c63;
}

.profile-subtitle {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #eef1f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    font-size: 40px;
    color: #bbb;
}

.upload-btn {
    font-size: 13px;
    color: #eb9c63;
    cursor: pointer;
    margin-bottom: 15px;
    display: inline-block;
}

.profile-card label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: #444;
}

.gender-box {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 5px;
}

.gender-box label {
    font-weight: 500;
    font-size: 13px;
    margin: 0;
}

.header-divider {
    color: #aaa;
    margin-left: 10px;
    font-size: 14px;
}


.bottom-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    color: #9ca3af;
    cursor: pointer;
    transition: 0.2s;
}

.footer-item i {
    font-size: 16px;
    margin-bottom: 2px;
}

.footer-item.active {
    color: #e58b47;
    font-weight: 600;
}

.footer-item.active::before {
    content: "";
    width: 20px;
    height: 3px;
    background: #e58b47;
    border-radius: 10px;
    margin-bottom: 4px;
}


/* Keep select hidden but usable */
.hidden-select2 {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Fix icon spacing */
.location-block .city {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* Optional: smooth click feel */
.location-block {
    position: relative;
}

.free-plan-fixed {
    position: fixed;
    top: 28px;
    right: 20px;
    background: linear-gradient(135deg, #dc3545, #ff4d4d);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.free-plan-fixed::before {
    content: "✖ ";
}

.verified-plan-fixed {
    position: fixed;
    top: 28px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #28a745, #4cd964);
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.verified-plan-fixed::before {
    content: "✔";
}