
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    /* Updated font */
    background-color: #fff;
    /* Light gray background */
    min-height: 100vh;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
button,
span,
input,
textarea,
input::placeholder,
div {
    font-family: "IBM Plex Sans Arabic", sans-serif;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
    direction: rtl !important;
}

a {
    text-decoration: none;
}


/* Hero Header */
.hero-header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 30px 0;
    background-color: #29292a;
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(10px);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: #F64E60;
}

.logo-section .logo img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0px 20px;
    border-radius: 10px;
    height: 32px;
    line-height: 30px;
}

.nav-link.login {
    border: 0;
}

.nav-link:hover {
    color: #20c997;
    border-color: #20c997;
}

.globe-icon {
    color: white;
    font-size: 18px;
    margin-left: 10px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 30px;
    background: #ffffff;
    margin-left: 0;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 18px;
    background: linear-gradient(135deg, #0C7D81 0%, #1a9a92 100%);
    border-radius: 4px;
    clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
}

.menu-toggle {
    background-color: #0C7D81;
    border: none;
    color: white;
    padding: 15px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1003;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
}

.menu-toggle:hover {
    background-color: #0a6b6f;
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 4px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -4px);
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 135px;
    right: -400px;
    width: 350px;
    height: calc(100vh - 135px);
    background: white;
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0C7D81;
    font-weight: 700;
    font-size: 20px;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: #0C7D81;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-search {
    margin-bottom: 25px;
}

.sidebar-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #f8f9fa;
    transition: border-color 0.3s ease;
}

.sidebar-search-input:focus {
    outline: none;
    border-color: #0C7D81;
}

.sidebar-menu-item {
    margin-bottom: 15px;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.sidebar-menu-item .dropdown-toggle::after {
    display: none !important;
}

.sidebar-menu-link:hover {
    background: #f0f8f9;
    color: #0C7D81;
}

.sidebar-menu-icon {
    margin-left: 12px;
    font-size: 18px;
    color: #0C7D81;
}

.sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 5px;
}

.sidebar-submenu.active {
    max-height: 300px;
}

.sidebar-submenu-item {
    padding: 10px 20px 10px 45px;
    color: #666;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-submenu-item:hover {
    color: #0C7D81;
    background: #e8f4f5;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.dropdown-arrow.active {
    transform: rotate(180deg);
}


/* Header Styles - Exact Match */
.header {
    background-color: #2c2c2c;
    /* Darker gray to match image */
    padding: 12px 0;
    border-bottom: none;
    direction: ltr;
}

.profile-section {
    display: flex;
    align-items: center;
}

.profile-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0 10px;
}

.header-icon {
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.header-icon:hover {
    color: #20b2aa;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    gap: 10px;
}

.logo img {
    height: 60px;
}

.logo-icon {
    width: 40px;
    height: 30px;
    background: #ffffff;
    margin-left: 0;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 18px;
    background: linear-gradient(135deg, #20b2aa 0%, #1a9a92 100%);
    border-radius: 4px;
    clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
}

.logo-text {
    line-height: 1.2;
    font-weight: 500;
    text-transform: lowercase;
}

.menu-toggle {
    background-color: #0c7d81;
    border: none;
    color: white;
    padding: 13px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: #0c7d81;
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Main Content Layout */
.main-content-wrapper {
    padding: 40px 0;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.breadcrumb-nav a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-nav span {
    color: #20b2aa;
    font-weight: 500;
}

/* Sidebar Navigation */
.sidebar {
    background-color: #f5f5f6;
    border-radius: 12px;
    padding: 25px 0 10px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    padding: 0 25px 20px;
    border-bottom: 1px solid #ddd;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.sidebar-nav a:hover {
    background-color: #e0e0e0;
}

.sidebar-nav a.active {
    background-color: #0c7d81;
    /* Teal active background */
    color: white;
    position: relative;
    z-index: 1;
}

.sidebar-nav a.active i {
    color: white;
}

.sidebar-nav i {
    font-size: 16px;
    margin-left: 15px;
    /* Space between icon and text */
    color: #666;
}

/* Account Completion Steps */
.completion-steps {
    background-color: #f5f5f6;
    /* Light gray background */
    border-radius: 12px;
    padding: 0;
}



.completion-steps-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 1px solid #D8D8D8;
    padding: 30px 15px 15px;
}

.completion-steps ul {
    list-style: none;
    padding: 0 15px 10px;
}

.completion-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
}

.completion-steps .step-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #0C7D81;
    /* Teal border */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: #0C7D81;
    font-size: 12px;
}

.completion-steps .step-icon.completed {
    background-color: #0C7D81;
    /* Teal background for completed */
    color: white;
}

/* Strikethrough for completed steps */
.completion-steps li.completed-text {
    color: #0C7D81;
}

.completion-steps li.completed-text .completed-text-doc {
    text-decoration: line-through;
}

.completion-steps.owner li {
    color: #0c7d81 !important;
}

.completion-steps.owner .step-icon {
    border: 1px solid #D0D5DD !important;
}

/* New Profile Header Banner */
.profile-header-banner {
    background-color: #aed4d5;
    /* Light teal color from image */
    border-radius: 12px;
    height: 170px;
    /* Adjust height as needed */
    margin-bottom: -45px;
    /* Pull the form content up to overlap */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align items to the bottom */
    padding-bottom: 0;
    /* Remove padding from bottom */
    z-index: 1;
    /* Ensure it's above the form content */
}

.profile-header-banner .profile-img-container {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
    top: 60%;
}

.profile-header-banner .profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: url("/placeholder.svg?height=90&width=90") center / cover;
    /* Placeholder image */
    border: 4px solid #ffffff;
    /* White border */
    box-shadow: 0 0 0 2px #20b2aa;
    /* Teal outline */
}

.profile-header-banner .edit-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #20b2aa;
    /* Teal */
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #ffffff;
    /* White border to match image */
    cursor: pointer;
}

/* Main Form Content */
.main-form-content {
    background-color: #f5f5f6;
    /* Light gray background */
    border-radius: 12px;
    padding: 30px;
    padding-top: 75px;
    /* Add padding to account for the overlapping profile image */
    position: relative;
    /* Needed for z-index context */
    z-index: 0;
    /* Ensure it's below the banner */
}

.profile-form-title-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.profile-form-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.star-required {
    color: red;
    margin-right: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: #0c7d81;
    box-shadow: 0 0 0 2px rgba(32, 178, 170, 0.1);
}

.form-check {
    margin-bottom: 10px;
}

/* Custom Checkbox Styling */
.form-check-input {
    width: 1.25em;
    /* Standard checkbox size */
    height: 1.25em;
    /* Standard checkbox size */
    margin-left: 10px;
    /* Space for RTL */
    border: 1px solid #0c7d81;
    /* Teal border */
    background-color: white;
    /* White background by default */
    -webkit-appearance: none;
    /* For cross-browser consistency */
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
    /* Prevent shrinking in flex containers */
    vertical-align: middle;
    /* Align with text */
}

.form-check-input:checked {
    background-color: white;
    /* Keep background white when checked */
    border-color: #0c7d81;
    /* Teal border when checked */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2320b2aa' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* Ensure no tiling */
    background-position: center;
    /* Center the checkmark */
}

.form-check-label {
    font-size: 14px;
    color: #333;
    vertical-align: middle;
    /* Align with checkbox */
}

.form-text-muted {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    display: block;
}

/* intl-tel-input specific styles */
.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    /* Stretch items to fill height */
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    /* Ensures inner elements respect border-radius */
    background-color: white;
    /* Background for the whole container */
}

.phone-input-wrapper .iti {
    flex-grow: 1;
    /* Allow the intl-tel-input part to take available space */
    width: auto;
    /* Override default width if necessary */
    display: flex;
    /* Make the iti container a flex container */
}

.phone-input-wrapper .iti__flag-container {
    /* This is the dropdown button part */
    background-color: #f0f0f0;
    /* Light gray background for the flag/code part */
    border-left: 1px solid #ddd;
    /* Vertical separator */
    border-radius: 0;
    /* Remove any default border-radius from plugin */
    display: flex;
    align-items: center;
    padding: 0 10px;
    /* Adjust padding */
}

.phone-input-wrapper .iti__selected-flag {
    height: 100%;
    /* Ensure flag takes full height */
    padding: 0;
    /* Remove default padding from selected-flag */
    background-color: transparent;
    /* No background here, it's on flag-container */
    border-radius: 0;
}

.phone-input-wrapper .iti__flag {
    margin-right: 5px;
    /* Space between flag and dial code */
}

.phone-input-wrapper .iti__dial-code {
    color: #333;
    /* Ensure dial code color is visible */
    font-weight: 500;
}

.phone-input-wrapper .form-control {
    border: none;
    /* Remove individual border from input */
    box-shadow: none;
    padding: 12px 15px;
    border-radius: 0;
    /* Remove individual border-radius */
    text-align: right;
    /* Align text to the right for RTL */
    flex-grow: 1;
    /* Allow input to grow */
}

.phone-input-wrapper .phone-verify-btn {
    background-color: #20b2aa;
    border-color: #20b2aa;
    color: white;
    border-radius: 0;
    /* Remove default border-radius */
    padding: 12px 20px;
    margin-right: 0;
    /* Remove default margin-right */
    border-top-left-radius: 6px;
    /* Apply rounded corners to the button */
    border-bottom-left-radius: 6px;
    flex-shrink: 0;
    /* Prevent button from shrinking */
    border-right: 1px solid #20b2aa;
    /* Add a border to the right of the button to match the image */
}

/* Adjust the dropdown list for RTL */
.iti__country-list {
    text-align: right;
}

.iti__dropdown-content {
    direction: rtl;
    /* Ensure dropdown content is RTL */
}

.iti__country {
    direction: rtl;
    /* Ensure individual country items are RTL */
}

.iti__country-name {
    margin-right: 10px;
    /* Space for flag */
}

.iti__dial-code {
    margin-left: 10px;
    /* Space for dial code */
}

/* Ensure the dropdown arrow is visible and correctly positioned */
.iti__arrow {
    margin-left: 6px;
    /* Adjust arrow position for RTL */
}

/* Fix for dropdown list positioning in RTL */
.iti--container {}

.skills-input-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    background-color: white;
}

.skill-tag {
    background-color: #20b2aa;
    /* Teal background for tags */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.skill-tag .remove-tag {
    color: white;
    cursor: pointer;
    font-size: 10px;
    margin-right: 5px;
    /* Space for RTL */
}

.skills-input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 5px 0;
    font-size: 14px;
    min-width: 80px;
    /* Ensure input is visible */
}

.change-password-link {
    display: block;
    margin-top: 25px;
    font-size: 14px;
    color: #0c7d81;
    text-decoration: none;
    font-weight: 700;
}

.change-password-link:hover {
    text-decoration: underline;
}

.save-changes-btn {
    background-color: #0c7d81;
    color: white;
    border: none;
    padding: 0px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
    transition: background-color 0.3s ease;
    height: 44px;
    line-height: 44px;
    transition: background-color 0.3s ease;
}

.save-changes-btn:hover {
    background-color: #1a9a92;
}

.hidden-field {
    display: none;
}

/* Footer - Exact Match */
.footer {
    background: #0c7d81;
    color: #fff;
    padding: 60px 0 20px 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    /* direction: ltr; */
    /* text-align: end; */
}

.footer .footer-section {
    padding: 0 10px 0;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d9dbe1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #e0e0e0;
}

.footer-brand {
    text-align: right;
}

.footer-logo {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: url('../images/logo_v1.png') no-repeat center/contain;
    display: inline-block;
}

.footer-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.social-links a {
    color: #fff;
    font-size: 26px;
    margin-left: 15px;
    transition: color 0.2s;
}

.social-links a i {
    color: #14898b;
    background: #FFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    font-size: 18px;
}

.social-links a:hover {
    color: #e0e0e0;

}

.footer-bottom {

    padding-top: 15px;
    text-align: center;
    color: #b1c2c2;
    font-size: 13px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .sidebar {
        padding: 20px;
    }

    .sidebar-nav a {
        padding: 10px 20px;
    }

    .sidebar-nav a.active {
        margin-right: 0;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .main-content-wrapper.dashboard .row {
        flex-direction: row
            /* Puts sidebar below form on small screens */
    }

    .sidebar,
    .main-form-content {
        margin-bottom: 20px;
    }

    .sidebar-nav a.active {
        border-radius: 8px;
    }
}

.iti.iti--allow-dropdown.iti--separate-dial-code.iti--show-flags {
    width: 90%;
}

[dir="rtl"] .iti--allow-dropdown .iti__flag-container,
[dir="rtl"] .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0;
}

#phoneNumber {
    padding-left: 100px;
    padding-right: 6px;
    border-radius: 7px 0 0 7px;
    border-color: #0c7d81;
    direction: ltr !important;
}

.phone-input-container {
    direction: ltr;
}

.phone-input-container button {
    background: #0c7d81;
    border-color: #0c7d81;
    border-radius: 0 7px 7px 0 !important;
}

.phone-input-container button:hover,
.phone-input-container button:focus,
.phone-input-container button:active {
    background: #0c7d81 !important;
    border-color: #0c7d81 !important;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
    background: #fff;
    direction: rtl;
    border-radius: 7px 0 0 7px;
    border-right: 1px solid #0c7d81;
}

/* Select2 RTL adjustments */
.select2-container--default .select2-selection--single {
    height: 40px;
    /* Match form-control height */
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    /* Vertically center text */
    padding-right: 15px;
    /* Adjust padding for RTL */
    padding-left: 30px;
    /* Space for arrow */
    text-align: right;
    /* Align text to right */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 8px;
    /* Position arrow on the left for RTL */
    right: auto;
    top: 7px;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    padding: 8px 12px;
    /* Match skills-input-container padding */
    min-height: 40px;
    /* Ensure minimum height */
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* Match skills-input-container gap */
    padding: 0;
    /* Remove default padding */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0c7d81;
    /* Teal background for tags */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    float: right;
    /* Align tags to the right for RTL */
    margin-left: 5px;
    /* Space between tags */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    cursor: pointer;
    font-size: 10px;
    margin-right: 5px;
    /* Space for RTL */
    float: left;
    /* Position remove icon on the left */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #f0f0f0;
}

.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
    border: none;
    outline: none;
    padding: 5px 0;
    font-size: 14px;
    min-width: 80px;
    text-align: right;
    /* Align input text to right */
}

.select2-dropdown {
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: right;
    /* Align dropdown content to right */
}

.select2-results__option {
    padding: 10px 15px;
    text-align: right;
    /* Align option text to right */
}

.select2-results__option--highlighted {
    background-color: #20b2aa !important;
    /* Teal highlight */
    color: white !important;
}

.select2-results__option[aria-selected="true"] {
    background-color: #e0e0e0;
    /* Light gray for selected */
    color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-right: 0 !important;
}



/* webiste */



/* Hero Content */
.website-page .hero-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 70%;
    padding: 0 20px;
}

.website-page .main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 27px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFEFD5;
}

.website-page .subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 40px;
    opacity: 0.95;
    margin-left: auto;
    margin-right: auto;
}

/* Search Section */
.website-page .search-section {
    margin-bottom: 30px;
}

.website-page .search-container {
    background: white;
    border-radius: 20px;
    padding: 8px;
    display: flex;
    align-items: center;
    max-width: 65%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.website-page .search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 28px;
    font-size: 14px;
    background: transparent;
    color: #333;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.website-page .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

.website-page .search-input::placeholder {
    color: #999;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.website-page .search-btn {
    background: #0C7D81;
    border: none;
    color: white;
    padding: 0px 50px;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 600;
    height: 44px;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 44px;
}

.website-page .search-btn:hover {
    background: #0a6b6f;
}

/* CTA Button */
.website-page .cta-btn {
    background: #0C7D81;
    border: none;
    color: white;
    padding: 0px 80px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    margin-top: 15px;
    line-height: 44px;
    height: 44px;
}

.website-page .cta-btn:hover {
    background: #0a6b6f;
    transform: translateY(-2px);
}

/* Footer Styles */
.website-page .footer {
    background: #0c7d81;
    color: #fff;
    padding: 60px 0 20px 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.website-page .footer .footer-section {
    padding: 0 10px 0;
}

.website-page .footer-section h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 24px;
}

.website-page .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.website-page .footer-links li {
    margin-bottom: 12px;
}

.website-page .footer-links a {
    color: #d9dbe1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.website-page .footer-links a:hover {
    color: #e0e0e0;
}

.website-page .footer-brand {
    text-align: right;
}

.website-page .footer-logo {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.website-page .footer-logo-icon {
    width: 60px;
    height: 60px;
    background: url('../images/logo_v1.png') no-repeat center/contain;
    display: inline-block;
}

.website-page .footer-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.website-page .social-links a {
    color: #fff;
    font-size: 26px;
    margin-left: 15px;
    transition: color 0.2s;
}

.website-page .social-links a i {
    color: #14898b;
    background: #FFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    font-size: 18px;
}

.website-page .social-links a:hover {
    color: #e0e0e0;
}

.website-page .footer-bottom {
    padding-top: 15px;
    text-align: center;
    color: #b1c2c2;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .website-page .nav-links {
        display: none;
    }

    .website-page .main-title {
        font-size: 36px;
    }

    .website-page .subtitle {
        font-size: 16px;
        line-height: 25px;
        font-weight: 400;
    }

    .website-page .search-container {
        max-width: 90%;
        position: relative;
    }

    .website-page .hero-content {
        padding: 0 15px;
    }

    .website-page .sidebar-menu {
        width: 300px;
        right: -300px;
    }
}

@media (max-width: 480px) {
    .website-page .main-title {
        font-size: 28px;
    }

    .website-page .search-input {
        padding: 12px 25px;
        font-size: 14px;
    }

    .website-page .search-btn {
        padding: 0 25px;
        font-size: 14px;
        position: absolute;
        left: 8px;
    }

    .website-page .cta-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .website-page .sidebar-menu {
        width: 280px;
        right: -280px;
    }

    .password-recovery-card {
        max-width: 95%;
    }
}

/* Work Section Styles - Complete Redesign */
.website-page .work-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.website-page .work-title {
    font-size: 40px;
    font-weight: 700;
    color: #0C7D81;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.website-page .work-content-wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
}

.website-page .work-image-side {
    flex: 0 0 45%;
}

.website-page .work-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.website-page .work-main-image {
    width: 100%;
    height: auto;
    min-height: 360px;
    object-fit: cover;
    border-radius: 20px;
}

.website-page .work-features-side {
    flex: 1;
}

.website-page .features-container {
    background: linear-gradient(135deg, #FFFFFF00 0%, #CEE5E6 100%);
    border-radius: 25px;
    padding: 50px 35px 50px 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-left: -130px;
}

.website-page .feature-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.website-page .feature-text {
    flex: 1;
    text-align: right;
    padding-left: 75px;
    margin-bottom: 5px;
}

.website-page .feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.website-page .feature-description {
    font-size: 16px;
    color: #29292A;
    line-height: 26px;
    margin: 0;
    font-weight: 600;
}

.website-page .feature-icon {
    flex-shrink: 0;
    background: #0C7D81;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.website-page .feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: #0a6b6f;
}

/* Responsive Design */
@media (max-width: 992px) {
    .website-page .features-container {
        margin-left: 0 !important;
    }

    .website-page .work-content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .website-page .work-image-side {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .website-page .work-features-side {
        width: 100%;
    }

    .website-page .features-container {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .website-page .hero-content {
        max-width: 95%;
    }

    .website-page .work-content-wrapper {
        gap: 30px;
        padding: 0 15px;
    }

    .website-page .features-container {
        padding: 25px 20px;
        gap: 20px;
    }

    .website-page .feature-card {
        padding: 20px 25px;
    }

    .website-page .work-title {
        font-size: 32px;
    }

    .website-page .feature-title {
        font-size: 18px;
    }

    .website-page .feature-description {
        font-size: 14px;
    }

    .website-page .cta-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .website-page .work-section {
        padding: 40px 0;
    }

    .website-page .work-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .website-page .feature-content {
        text-align: center;
        gap: 15px;
    }

    .website-page .feature-text {
        padding-left: 0;
    }

    .website-page .feature-icon {
        width: 30px;
        height: 30px;
    }

    .website-page .feature-icon {
        align-self: center;
    }

    .website-page .features-container {
        padding: 20px 15px;
    }
}

/* Talent Flow Helps Section */
.website-page .talent-flow-helps-section {
    padding: 90px 0 100px;
    background-color: #f8f9fa;
}

.website-page .helps-title {
    font-size: 40px;
    font-weight: 700;
    color: #0C7D81;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.website-page .helps-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.website-page .helps-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: #e8f4f5;
    border: 1px solid rgba(12, 125, 129, 0.1);
}

.website-page .helps-card-highlighted {
    background: #e8f4f5;
    border: 1px solid rgba(12, 125, 129, 0.1);
}

.website-page .helps-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
}

.website-page .helps-icon {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.website-page .helps-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.website-page .helps-card-description {
    font-size: 14px;
    color: #29292A;
    line-height: 1.6;
    margin: 0;
    font-weight: 700;
    width: 90%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .website-page .helps-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .website-page .talent-flow-helps-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .website-page .helps-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .website-page .helps-title {
        font-size: 24px;
    }

    .website-page .helps-card-title {
        font-size: 18px;
    }

    .website-page .helps-card-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .website-page .talent-flow-helps-section {
        padding: 40px 0;
    }

    .website-page .helps-icon {
        width: 50px;
        height: 50px;
    }
}

/* Mobile App Section Styles */
.website-page .mobile-app-section {
    background: linear-gradient(135deg, #0C7D81 0%, #14898b 100%);
    position: relative;
    overflow: hidden;
}

.website-page .app-content {
    color: white;
    padding-right: 20px;
}

.website-page .app-badge {
    background: #ffefd5;
    padding: 7px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #0c7d81;
}

.website-page .app-title {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.website-page .app-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    font-weight: 400;
}

.website-page .app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.website-page .app-store-btn,
.website-page .google-play-btn {
    transition: transform 0.3s ease;
}

.website-page .app-store-btn:hover,
.website-page .google-play-btn:hover {
    transform: translateY(-3px);
}

.website-page .store-badge {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.website-page .app-phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 460px;
}

.website-page .app-phone-image {
    max-width: 280px;
    height: 465px;
    z-index: 3;
    position: relative;
    margin-bottom: -60px;
    object-fit: contain;
}

.website-page .decorative-circle {
    position: absolute;
    width: 410px;
    height: 410px;
    background: #d9d9d9;
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    top: 80%;
}

.website-page .decorative-dots-1 {
    position: absolute;
    width: 100%;
    height: 50%;
    background-image: url(https://hebbkx1anhila5yf.public.blob.vercel-storage.com/dotted-shape01%201-9u9r7xRz5kBHdY0jnipI0G45r7OLFZ.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    opacity: 0.6;
    z-index: 2;
    left: -239px;
    right: auto;
}

.website-page .decorative-dots-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url(https://hebbkx1anhila5yf.public.blob.vercel-storage.com/dotted-shape02%201-ys6aPuMiz01kwxMquX7j0fydyS0trO.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    right: -10px;
    opacity: 1;
    z-index: 2;
}

/* Responsive Design for Mobile App Section */
@media (max-width: 992px) {
    .website-page .app-content {
        padding-right: 0;
        margin-bottom: 30px;
        margin-top: 35px;
    }

    .website-page .app-title {
        font-size: 28px;
    }

    .website-page .app-phone-container {
        height: 400px;
    }

    .website-page .app-phone-image {
        max-width: 240px;
    }

    .website-page .decorative-circle {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .website-page .app-title {
        font-size: 24px;
    }

    .website-page .app-description {
        font-size: 16px;
    }

    .website-page .app-buttons {
        justify-content: center;
    }

    .website-page .store-badge {
        height: 45px;
    }

    .website-page .app-phone-container {
        height: 350px;
    }

    .website-page .app-phone-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .website-page .store-badge {
        height: 40px;
    }

    .website-page .decorative-dots-1,
    .website-page .decorative-dots-2 {
        display: none;
    }
}

/* Professional Freelancers Categories Section */
.website-page .freelancer-categories-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.website-page .categories-title {
    font-size: 40px;
    font-weight: 700;
    color: #0C7D81;
    text-align: center;
    margin-bottom: 60px;
    line-height: 25px;
}

.website-page .category-card {
    background: #f5f5f6;
    border-radius: 15px;
    padding: 0px 0px 25px 0;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    overflow: hidden;
}

.website-page .category-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background: #0C7D81;
    color: white;
    border: 0;
}

.website-page .category-card:hover>.category-title {
    color: white;
}

.website-page .category-image-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.website-page .category-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    background: #f5f5f6;
    width: 100%;
}

.website-page .category-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .website-page .search-btn {
        position: absolute;
        left: 8px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .website-page .categories-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .website-page .freelancer-categories-section {
        padding: 60px 0;
    }

    .website-page .category-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .website-page .categories-title {
        font-size: 24px;
    }

    .website-page .category-card {
        margin-bottom: 15px;
    }

    .website-page .category-title {
        font-size: 14px;
        min-height: 40px;
    }

    .website-page .category-image-wrapper {
        height: 250px;
        margin-bottom: 15px;
    }

    .website-page .faq-subtitle {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .website-page .freelancer-categories-section {
        padding: 40px 0;
    }

    .website-page .category-title {
        font-size: 13px;
    }
}

/* Freelancer Showcase Section - Swiper Slider */
.website-page .freelancer-showcase-section {
    padding: 80px 0;
    background-color: #f5f5f6;
}

.website-page .showcase-title {
    font-size: 40px;
    font-weight: 700;
    color: #0C7D81;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.website-page .showcase-subtitle {
    font-size: 22px;
    color: #29292A;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.website-page .freelancer-swiper {
    padding-bottom: 50px;
}

.website-page .freelancer-card {
    background: white;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.website-page .freelancer-card:hover {
    transform: translateY(-5px);
}

.website-page .freelancer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
}

.website-page .freelancer-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.website-page .freelancer-specialty {
    font-size: 14px;
    color: #29292A;
    margin-bottom: 15px;
}

.website-page .freelancer-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-bottom: 20px;
}

.website-page .star {
    color: #ffc107;
    font-size: 12px;
}

.website-page .star.empty {
    color: #e0e0e0;
}

.website-page .rating-text {
    font-size: 12px;
    color: #29292A;
    margin-left: 5px;
}

.website-page .view-profile-btn {
    background: transparent;
    border: 1px solid #0C7D81;
    color: #0C7D81;
    padding: 0px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    height: 32px;
    line-height: 32px;
    display: inline-block;
}

.website-page .view-profile-btn:hover {
    background: #0C7D81;
    color: white;
}

.website-page .discover-more-btn {
    background: #0C7D81;
    border: none;
    color: white;
    padding: 0px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    height: 44px;
    line-height: 44px;
    display: inline-block;
}

.website-page .discover-more-btn:hover {
    background: #0a6b6f;
    transform: translateY(-2px);
}

/* Swiper Pagination Custom Styles */
.website-page .swiper-pagination {
    bottom: 10px !important;
}

.website-page .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
}

.website-page .swiper-pagination-bullet-active {
    background: #0C7D81;
}

/* Responsive Design */
@media (max-width: 992px) {
    .website-page .showcase-title {
        font-size: 32px;
    }

    .website-page .freelancer-showcase-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .website-page .showcase-title {
        font-size: 28px;
    }

    .website-page .showcase-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .website-page .freelancer-card {
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .website-page .freelancer-showcase-section {
        padding: 40px 0;
    }

    .website-page .showcase-title {
        font-size: 24px;
    }

    .website-page .freelancer-avatar {
        width: 60px;
        height: 60px;
    }

    .website-page .freelancer-name {
        font-size: 16px;
    }
}

/* FAQ Section Styles - Matching the provided image */
.website-page .faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.website-page .faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #0C7D81;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.website-page .faq-subtitle {
    font-size: 22px;
    color: #29292A;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.website-page .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.website-page .faq-section-ques {
    margin-bottom: 50px;
}

.website-page .faq-section-ques h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0C7D81;
    margin-bottom: 40px;
}

.website-page .faq-section-ques .faq-item {
    background-color: #eeeeee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    /* Hide overflow for smooth collapse */
}

.website-page .faq-section-ques .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    background-color: #f5f5f6;
    transition: background-color 0.2s ease;
}

.website-page .faq-section-ques .faq-question:hover {
    background-color: #e0e0e0;
}

.website-page .faq-section-ques .faq-question .toggle-icon {
    font-size: 18px;
    color: #444446;
    transition: transform 0.3s ease;
}

.website-page .faq-section-ques .faq-question.active .toggle-icon {
    transform: rotate(45deg);
    /* Rotate to form an 'X' or simply indicate open */
}

.website-page .faq-section-ques .faq-answer {
    padding: 10px 25px 5px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    display: none;
    /* Hidden by default */
}




/* ************************  */
/******** membership  ********/
/* ************************  */

.membership-plans-section {
    margin-bottom: 50px;
}

.membership-plans-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.plan-card {
    background-color: #f5f5f6;
    border-radius: 12px;
    padding: 25px 21px;
    text-align: start;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card.featured {
    background: #cee5e6 !important;
    border-color: #20b2aa;
}


.plan-header h3 {
    font-size: 30px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 13px;
}

.plan-header .period {
    font-weight: 500;
    color: #29292ABA;
}

.plan-price {
    margin-bottom: 25px;
}

.plan-price .original-price {
    font-size: 18px;
    color: #29292ABA;
    text-decoration: line-through;
    margin-bottom: 5px;
    display: block;
}

.plan-card .discound-price {
    display: flex;
    color: #29292ABA;
    font-weight: 500;
}

.plan-card .discound-price .discound-currency {
    margin: 2px 4px;
    font-size: 17px;
}

.plan-price .current-price {
    font-size: 48px;
    font-weight: 700;
    color: #0c7d81;
    line-height: 60px;
}

.plan-price .currency {
    font-size: 20px;
    color: #29292AAF;
    font-weight: 500;
}

.plan-price .period {
    font-size: 16px;
    color: #666;
    display: block;
    margin-top: 5px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;

}

.plan-features li {
    font-size: 13px;
    color: #29292A;
    margin-bottom: 17px;
    display: flex;

}

.plan-features i {
    color: #1C9D61;
    margin-left: 10px;
    font-size: 10px;
    background: #4DC18B1A;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
}

.plan-button {
    background-color: white;
    color: #333;
    padding: 9px 30px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-weight: 700;
}


.plan-card.featured .plan-button {
    background: #0C7D81;
    background: linear-gradient(90deg, rgba(12, 125, 129, 1) 0%, rgba(3, 26, 27, 1) 50%);
    color: #fff;
}


/* FAQ Section */
.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0C7D81;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #eeeeee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    /* Hide overflow for smooth collapse */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    background-color: #f5f5f6;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-question .toggle-icon {
    font-size: 18px;
    color: #444446;
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(45deg);
    /* Rotate to form an 'X' or simply indicate open */
}

.faq-answer {
    padding: 10px 25px 5px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    display: none;
    /* Hidden by default */
}

/* Responsive */
@media (max-width: 992px) {

    .main-form-content {
        padding: 20px;
    }

    .plan-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .main-content-wrapper.dashboard .row {
        flex-direction: row;
    }

}


/*  personal info */





.change-password-section {
    /* No background or border as per image, it's part of the main-form-content */
    padding-top: 25px;
    /* Space from previous section */
}

.change-password-title {
    display: block;
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    color: #0c7d81;
    margin-bottom: 15px;
}

.password-fields-container {
    display: block;
}

.password-fields-container .form-group {
    margin-bottom: 15px;
    /* Smaller margin for internal form groups */
}

.no-password-link {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #0c7d81;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    font-weight: bolder;
}

.no-password-link:hover {
    text-decoration: underline;
}

.new-password-fields {
    display: none;
    /* Hidden by default, shown on click of no-password-link */
}


.save-changes-btn:hover {
    background-color: #1a9a92;
}


.profile-header-banner-personal {
    height: 20px;
    margin-bottom: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0;
    z-index: 1;
}

.profile-header-banner-personal .profile-img-container {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
    top: 60%;
}

.profile-header-banner-personal .profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: url("/placeholder.svg?height=90&width=90") center / cover;
    /* Placeholder image */
    border: 4px solid #ffffff;
    /* White border */
    box-shadow: 0 0 0 2px #20b2aa;
    /* Teal outline */
}

.profile-header-banner-personal .edit-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #20b2aa;
    /* Teal */
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #ffffff;
    /* White border to match image */
    cursor: pointer;
}


/* email profile */




/* Email Settings Content */
.email-settings-content {
    background-color: #f5f5f6;
    /* Light gray background */
    border-radius: 12px;
    padding: 30px;
}

.email-settings-content h1 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.email-settings-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.email-item-wrapper {
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    /* For the border-bottom */
}

.email-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.email-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.email-address {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.email-date {
    font-size: 13px;
    color: #888;
}

.email-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #FFF;
    border: 1px solid #ddd;
    color: #2F384C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    font-weight: 100;
}

.email-action-btn:hover {
    background-color: #e0e0e0;
    border-color: #c0c0c0;
}

.email-separator {
    border-bottom: 1px solid #ddd;
    margin: 0 20px;
    /* Match padding of email-item */
}

.add-email-container {

    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: flex;
    /* Ensure flex for header and form */
    flex-direction: column;
    /* Stack header and form */
    align-items: stretch;
    /* Stretch items to fill width */
}

.add-email-container:hover {
    background-color: #f0f0f0;
    border-color: #20b2aa;
}

.add-email-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align to right */
    width: 100%;
    /* Take full width */
}

.add-email-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    margin-right: 15px;
    /* Space between text and icon */
    flex-grow: 1;
    /* Allow text to take available space */
}

.add-email-text .main-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #29292A;
}

.add-email-text .sub-text {
    font-size: 13px;
    color: #888;
}

.add-email-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    /* Square corners */
    background-color: #fff;
    /* Light gray background */
    border: 1px solid #ddd;
    /* Subtle border */
    color: #2F384C;
    /* Teal icon color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    /* Prevent shrinking */
    transition: transform 0.3s ease;
    /* For icon rotation */
}

.add-email-header.active .add-email-icon {
    transform: rotate(45deg);
    /* Rotate to form a minus */
}

.add-email-form {
    padding-top: 15px;
    /* Space between header and form */
    border-top: 1px solid #eee;
    /* Separator line */
    margin-top: 15px;
}

.add-email-form-add {
    width: 100%;
    background: #0c7d81;
    border-color: #0c7d81;
    color: #FFF;
    font-weight: 600;
}

.add-email-form-add:hover {
    background: #0c7d81;
    border-color: #0c7d81;
    color: #FFF;
}

.cancel-add-email {
    width: 100%;
    border-color: #0c7d81;
    color: #0c7d81;
}

.cancel-add-email:hover {
    border-color: #0c7d81;
    color: #0c7d81;
    background: transparent;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    .email-settings-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .main-content-wrapper.dashboard .row {
        flex-direction: row;
        /* Puts sidebar below form on small screens */
    }

    .email-item,
    .add-email-container {
        flex-direction: row;
        align-items: flex-end;
        text-align: right;
    }

    .email-action-btn,
    .add-email-icon {
        margin-bottom: 10px;
        margin-left: 0;
    }

    .add-email-text {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* profile reset password */

/* Main Content for Password Recovery Form */
.main-content-wrapper.password {
    flex-grow: 1;
    /* Occupy available space */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    /* Add padding for smaller screens */
}

.password-recovery-card {
    background-color: #f5f5f6;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 65%;
    width: 100%;
}

.password-recovery-card h1 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}



.submit-btn {
    background-color: #0c7d81;
    /* Teal button */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    /* Space above button */
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a9a92;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .password-recovery-card {
        padding: 25px;
    }

    .password-recovery-card h1 {
        font-size: 20px;
    }
}



/* profile cards */

/* Main Form Content (Credit Cards) */
.main-form-content.cards {
    background-color: #f5f5f6;
    border-radius: 12px;
    padding: 30px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.credit-cards-header {
    width: 100%;
    /* Take full width */
    margin-bottom: 30px;
    text-align: right;
    /* Align text to the right */
}

.credit-cards-header h1 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-cards-message {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    width: 100%;
    /* Ensure it takes full width */
    text-align: right;
    /* Align text to the right */
}

.add-card-button {
    border: 1px solid #0c7d81;
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between icon and text */
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: fit-content;
    /* Shrink to content */
    flex-direction: row-reverse;
    text-decoration: none;
}



.add-card-button .icon {
    font-size: 24px;
    /* Icon size */
    color: #0c7d81;
    /* Teal color */
}

.add-card-button .text {
    font-size: 16px;
    font-weight: 600;
    color: #0c7d81;
}

.manage-cards-link {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between icon and text */
    font-size: 14px;
    color: #0c7d81;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    flex-direction: row-reverse;
}

.manage-cards-link:hover {
    opacity: 0.8;
}

.manage-cards-link .icon {
    font-size: 14px;
}

.cards-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    /* Space from the message above */
}

/* add credits cards pages */



/* Main Form Content (Credit Cards) */
.main-form-content.cards-credits {
    background-color: #f5f5f6;
    /* Light gray background */
    border-radius: 12px;
    padding: 30px;
    min-height: 400px;
    /* Ensure enough height */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Align content to the right for RTL */
}

.cards-credits .credit-cards-info {
    width: 100%;
    /* Take full width */
    margin-bottom: 30px;
    text-align: right;
    /* Align text to the right */
}

.cards-credits .credit-cards-info h1 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.cards-credits .credit-cards-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    width: 65%;
}

.cards-credits .add-card-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
    transition: background-color 0.2s ease;
    width: 100%;
}



.cards-credits .add-card-icon {
    font-size: 25px;
    color: #2F384C;
    padding: 15px;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #D8D8D8;
    font-weight: 300;
    width: 50px;
    height: 50px;
}

.cards-credits .add-card-text-container {
    flex-grow: 1;
    /* Allow text container to take remaining space */
    text-align: right;
    /* Align text to the right */
}

.cards-credits .add-card-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    /* Dark text color */
    margin-bottom: 5px;
    /* Space between main text and subtext */
}

.cards-credits .add-card-subtext {
    font-size: 14px;
    color: #555;
}

.cards-credits .add-card-btn {
    background: transparent;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cards-credits .add-card-section {
        flex-direction: column;
        /* Stack icon and text vertically on small screens */
        text-align: center;
        padding: 20px;
    }

    .cards-credits .add-card-icon {
        margin-bottom: 15px;
        /* Add space below icon when stacked */
    }

    .cards-credits .add-card-text-container {
        text-align: center;
        /* Center text when stacked */
    }
}


/* Main Form Content (Credit Card Form) */
.main-form-content.add-card-form {
    background-color: #f5f5f6;
    /* Light gray background */
    border-radius: 12px;
    padding: 30px;
    min-height: 400px;
    /* Ensure enough height */
}

.main-form-content.add-card-form .credit-card-form-header {
    margin-bottom: 30px;
    text-align: right;
}

.main-form-content.add-card-form .credit-card-form-header h1 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}


.main-form-content.add-card-form .back-button {
    background-color: transparent;
    border: 1px solid #0c7d81;
    color: #0c7d81;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;

    /* Prevent text wrapping */
}



.main-form-content.add-card-form .save-button {
    background-color: #0c7d81;
    /* Teal button */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    /* Full width as per image */
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.main-form-content.add-card-form .save-button:hover {
    background-color: #1a9a92;
}

@media (max-width: 768px) {
    .form-check-row {
        flex-direction: column;
        /* Stack checkbox and button on small screens */
        align-items: flex-end;
        /* Align to right in RTL */
        gap: 15px;
    }

    .back-button {
        width: 100%;
        /* Make back button full width on small screens */
    }
}


/* identity-authentication  */

/* Upload Step Design */
.identity-authentication .step-upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.identity-authentication .step-upload-container img {
    max-width: 320px;
    margin-bottom: 32px;
    margin-top: 32px;
}

.identity-authentication .step-upload-container p {
    font-size: 18px;
    color: #222;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 400;
}

.identity-authentication .upload-btn-row {
    display: flex;
    width: 340px;
    max-width: 100%;
    direction: ltr;
    margin-top: 10px;
}

.identity-authentication .btn-upload.upload-trigger-btn {
    flex: 1;
    background-color: #0c7d81;
    color: #fff;
    font-size: 18px;
    border-radius: 8px 0 0 8px;
    border: none;
    padding: 14px 0;
    font-weight: 500;
}

.identity-authentication .btn-upload-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c7d81;
    border-radius: 0 8px 8px 0;
    width: 60px;
    height: 55px;
    color: #fff;
    font-size: 28px;
    border: none;
    border-left: 1px solid #fff;
}

.identity-authentication .review-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    padding: 48px 32px;
    max-width: 520px;
    margin: 48px auto 0 auto;
    text-align: center;
}

.identity-authentication .review-box .review-icon {
    width: 90px;
    height: 90px;
    background: #e6f6f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 48px;
    color: #0c7d81;
}

.identity-authentication .review-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.identity-authentication .review-box p {
    font-size: 18px;
    color: #222;
    margin-bottom: 0;
}

/* Main Form Content (Wizard Container) */
.main-form-content.identity-authentication {
    background-color: #f5f5f6;
    border-radius: 12px;
    padding: 30px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.identity-authentication .wizard-step {
    display: none;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
}

.identity-authentication .wizard-step.active {
    display: flex;
}

.identity-authentication .wizard-step h1 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.identity-authentication .wizard-step img {
    max-width: 350px;
    height: auto;
    margin-bottom: 25px;
    margin: auto;
    margin-top: 40px;
}

.identity-authentication .wizard-step p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 345px;
    margin: 12px auto;
    font-weight: 600 !important;
    text-align: center;
}

.identity-authentication #step2 p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: start;
    max-width: 100%;
    margin: 0 0 30px;
}

.identity-authentication #step1 .btn-primary {
    background-color: #0c7d81;
    border-color: #0c7d81;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 250px;
    margin: auto;
}

.identity-authentication .wizard-step .btn-primary {
    background-color: #0c7d81;
    border-color: #0c7d81;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.identity-authentication .wizard-step .btn-primary:active {
    background-color: #0c7d81 !important;
    border-color: #0c7d81 !important;
}

.identity-authentication .wizard-step .btn-primary:hover {
    background-color: #1a9a92;
}

/* Pagination Dots */
.identity-authentication .pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.identity-authentication .pagination-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #cee5e6;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.identity-authentication .pagination-dot.active {
    background-color: #0c7d81;
}

/* Form specific styles for Step 2 (Personal Info) */
.identity-authentication .wizard-step.form-step .form-group {
    width: 100%;
}

.identity-authentication .wizard-step.form-step .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.identity-authentication .wizard-step.form-step .form-control:focus {
    outline: none;
    border-color: #20b2aa;
    box-shadow: 0 0 0 2px rgba(32, 178, 170, 0.1);
}

/* Custom arrow for select */
.identity-authentication .wizard-step.form-step select.form-control {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%230c7d81" height="16" viewBox="0 0 20 20" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 32px;
}

/* Inline date selects */
.identity-authentication .wizard-step.form-step .input-group {
    display: flex;
    gap: 0;
}

.identity-authentication .wizard-step.form-step .input-group select.form-control {
    width: 80px;
    min-width: 60px;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    border-right: none;
}

.identity-authentication .wizard-step.form-step .input-group select.form-control:first-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-right: 1px solid #ddd;
}

.identity-authentication .wizard-step.form-step .input-group select.form-control:last-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-left: 1px solid #ddd;
}

/* Country select with flag */
.identity-authentication .wizard-step.form-step #country {
    padding-right: 40px;
    font-size: 16px;
    background-position: left 12px center, right 12px center;
}

.identity-authentication .wizard-step.form-step #country option {
    font-size: 16px;
    padding: 8px 32px 8px 32px;
}

/* Required star */
.identity-authentication .star-required {
    color: #d32f2f;
    font-size: 16px;
    margin-right: 2px;
}

.identity-authentication .wizard-step.form-step .form-check {
    text-align: right;
    margin-top: 20px;
}

.identity-authentication .wizard-step.form-step .form-check-input {
    margin-left: 10px;
    border-color: #0c7d81;
}

.identity-authentication .wizard-step.form-step .form-check-input:checked {
    background-color: #0c7d81;
    border-color: #0c7d81;
}

.identity-authentication .wizard-step.form-step .form-check-label {
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {

    .identity-authentication .wizard-step h1 {
        font-size: 20px;
    }

    .identity-authentication .wizard-step p {
        font-size: 14px;
    }

    .identity-authentication .wizard-step img {
        max-width: 200px;
    }

    .identity-authentication .wizard-step.form-step .input-group select.form-control {
        width: 60px;
        font-size: 13px;
    }
}

/* profile review  */

/* Main Content for Review Page */
.main-content-wrapper.profile-review {
    flex-grow: 1;
    /* Occupy available space */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    /* Add padding for smaller screens */
    /* Remove text-align: center; from here as it's now on the container */
}

.profile-review .review-status-container {

    margin: 0 auto;
    padding: 40px;
    background-color: #f5f5f6;
    /* Light gray background for the card */
    border-radius: 12px;
    /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    text-align: center;
    /* Center content horizontally */
}

.profile-review .review-status-container h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.profile-review .review-status-container .status-icon {
    width: 150px;
    /* Adjust size as needed */
    height: auto;
    margin-bottom: 30px;
}

.profile-review .review-status-container p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .profile-review .review-status-container {
        width: 100%;
        /* Ensure it takes full width on small screens */
        padding: 25px;
        /* Adjust padding for smaller screens */
    }

    .profile-review .review-status-container h1 {
        font-size: 24px;
    }

    .profile-review .review-status-container p {
        font-size: 15px;
    }

    .profile-review .review-status-container .status-icon {
        width: 120px;
    }
}


/* register page */


.main-container.register-page {
    display: flex;
    min-height: 100vh;
}

/* Image section - now on the right for RTL */
.register-page .image-section {
    flex: 1;
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/login.jpg-9I9OAA6dpZwFkC4Mfz3JhxAzOmScUM.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Form section - now on the left for RTL */
.register-page .form-section {
    width: 50%;
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); */
    min-height: 100vh;
    overflow-y: auto;
}

.register-page .form-container {
    max-width: 100%;
    width: 100%;
}

.register-page .main-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.register-page .subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.register-page .social-btn {
    width: 349px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 44px;
    line-height: 44px;
    margin: 8px auto;
}

.register-page .social-btn:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.register-page .google-btn .fab {
    color: #4285f4;
}

.register-page .facebook-btn .fab {
    color: #1877f2;
}

.register-page .apple-btn .fab {
    color: #000;
}

.register-page .divider {
    text-align: center;
    margin: 25px 0;
    color: #666;
    font-size: 14px;
}

.register-page .tab-container {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.register-page .tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 700;
}

.register-page .tab-btn.active {
    color: #0c7d81;
    border-bottom-color: #0c7d81;
}

.register-page .form-group {
    margin-bottom: 15px;
}

.register-page .form-label {
    font-size: 14px;
    color: #344054;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.register-page .required {
    color: #dc3545;
}

.register-page .form-control {
    width: 100%;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 40px;
    line-height: 40px;
}

.register-page .form-control:focus {
    outline: none;
    border-color: #0c7d81;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.register-page .form-control.is-invalid {
    border-color: #dc3545;
}

.register-page .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.register-page .row {
    display: flex;
    gap: 15px;
}

.register-page .col {
    flex: 1;
}

.register-page .terms-text {
    font-size: 12px;
    color: #666;
    margin: 20px 0;
    line-height: 1.5;
}

.register-page .terms-link {
    color: #0c7d81;
    text-decoration: none;
}

.register-page .terms-link:hover {
    text-decoration: underline;
}

.register-page .submit-btn {
    width: 100%;
    padding: 15px;
    background: #0c7d81;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-page .submit-btn:hover {
    background: #138496;
}

.register-page .submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

@media (max-width: 1099px) {
    .register-page .otp-input {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .main-container.register-page {
        flex-direction: column;
    }

    .register-page .image-section {
        height: 200px;
        min-height: 200px;
        order: 1;
    }

    .register-page .form-section {
        width: 100%;
        min-height: calc(100vh - 200px);
        padding: 20px;
        order: 2;
    }

    .register-page .main-title {
        font-size: 24px;
    }

    .register-page .row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .register-page .form-section {
        padding: 15px;
    }

    .register-page .main-title {
        font-size: 22px;
    }

    .register-page .social-btn {
        font-size: 13px;
        padding: 10px;
    }
}

.register-page .divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.register-page .divider::before,
.register-page .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
    /* or #5A6372 from the image */
}

.register-page .icon {
    margin: 0 10px;
    color: #5A6372;
    font-size: 18px;
    font-weight: 600;
    /* Adjust as needed */
}

.register-page.login .terms-link {
    color: #0c7d81;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.register-page.login .terms-text p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;

}




/*  opt verification  */


.register-page .otp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.register-page .otp-input {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.register-page .otp-input:focus {
    border-color: #0C7D81;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.register-page .otp-input.filled {
    border-color: #0C7D81;
    background: #f8f9fa;
}

.register-page .otp-input.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.register-page .otp-separator {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    margin: 0 5px;
}



.register-page .submit-btn:active {
    transform: translateY(0);
}

.register-page .submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.register-page .error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    display: none;
}

.register-page .success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

.register-page .resend-container {
    text-align: center;
    margin-top: 20px;
}

.register-page .resend-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.register-page .resend-btn {
    background: none;
    border: none;
    color: #0C7D81;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.register-page .resend-btn:hover {
    color: #138496;
}

.register-page .resend-btn:disabled {
    color: #6c757d;
    cursor: not-allowed;
    text-decoration: none;
}

.register-page .timer {
    color: #dc3545;
    font-weight: 600;
}

/* Loading state */
.register-page .loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {

    .register-page .image-section {
        height: 250px;
        min-height: 250px;
        order: 1;
    }

    .register-page .form-section {
        width: 100%;
        min-height: calc(100vh - 250px);
        padding: 40px 20px;
        order: 2;
    }

    .register-page .main-title {
        font-size: 24px;
    }

    .register-page .otp-input {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .register-page .otp-container {
        gap: 8px;
    }

    .register-page .submit-btn {
        padding: 15px;
        font-size: 16px;
    }

    .register-page .image-section {
        display: none;
    }

    .register-page .social-btn {
        width: 230px;
    }
}

@media (max-width: 480px) {


    .register-page .main-title {
        font-size: 20px;
    }

    .register-page .otp-input {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .register-page .otp-container {
        gap: 5px;
    }
}



/* Main Content */
.main-content.auth-review {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 130px;

}

.auth-review .review-container {
    text-align: center;
    width: 100%;
    background: #f5f5f6;
    border-radius: 15px;
    padding: 40px 0;
}

.auth-review .review-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

/* Success Icon - Exact replica */
.auth-review .success-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

/* Main green circle */
.auth-review .success-circle {
    width: 120px;
    height: 120px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.auth-review .checkmark {
    color: white;
    font-size: 48px;
    font-weight: bold;
}


.auth-review .review-description {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}


/* Responsive */
@media (max-width: 768px) {
    .auth-review .main-content {
        padding: 40px 15px;
    }

    .auth-review .review-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .auth-review .review-description {
        font-size: 18px;
    }

    .auth-review .success-circle {
        width: 100px;
        height: 100px;
    }

    .auth-review .checkmark {
        font-size: 36px;
    }

    .auth-review .bubble-large {
        width: 160px;
        height: 160px;
    }

    .auth-review .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .auth-review .footer-brand {
        text-align: center;
    }

    .auth-review .footer-brand h4 {
        justify-content: center;
    }

    .auth-review .social-links {
        justify-content: center;
    }

    .auth-review .header-content {
        flex-direction: row-reverse;
    }
}


/* complete register */

/* Main Content */
.main-content.complete-register {
    margin: 40px auto;
    padding: 0 180px;
}

/* Progress Section */
.complete-register .progress-section {
    text-align: center;
    margin-bottom: 40px;
}

.complete-register .progress-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.complete-register .progress-circle {
    position: absolute;
    top: -5px;
    right: -5px;
    /* RTL: positioned from right */
    width: 90px;
    height: 90px;
    transform: rotate(-90deg);
}

.complete-register .progress-text {
    position: absolute;
    bottom: -10px;
    left: 17px;
    /* RTL: positioned from left */
    background: #0c7d81;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.complete-register .main-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

/* Step Progress Bar - Fixed RTL */
.complete-register .step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    direction: rtl;
    /* Force rtl for progress line */
}

.complete-register .step-progress::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.complete-register .step-progress-line {
    position: absolute;
    top: 30%;
    right: 20px;
    height: 2px;
    background: #0c7d81;
    z-index: 2;
    transition: width 0.3s ease;
}

.complete-register .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    direction: rtl;
    /* RTL for step content */
}

.complete-register .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.complete-register .step.active .step-circle,
.complete-register .step.completed .step-circle {
    background: #0c7d81;
}

.complete-register .step.completed .step-circle::after {
    content: '✓';
    font-size: 16px;
}

.complete-register .step.completed .step-circle {
    font-size: 0;
    /* Hide the number when completed */
}

.complete-register .step-label {
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 100px;
}

.complete-register .step.active .step-label,
.complete-register .step.completed .step-label {
    color: #0c7d81;
    font-weight: 600;
}

/* Form Styles */
.complete-register .form-section {
    background: white;
    border-radius: 12px;
    margin-bottom: 30px;
    margin-top: 80px;
}

.complete-register .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: right;
}

.complete-register .section-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: right;
}

.complete-register .form-group {
    margin-bottom: 25px;
}

.complete-register .form-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
    text-align: right;
}

.complete-register .required {
    color: #dc3545;
    margin-left: 3px;
    /* RTL: margin from left */
}

.complete-register .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: right;
}

.complete-register .form-control:focus {
    outline: none;
    border-color: #0c7d81;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.complete-register .form-control.is-invalid {
    border-color: #dc3545;
}

.complete-register .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    text-align: right;
}

.complete-register .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    /* RTL: positioned from right */
    background-size: 16px 12px;
    padding-left: 2.25rem;
    /* RTL: padding from left */
}

.complete-register .upload-icon::before {
    content: '';
}

.complete-register textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* File Upload - RTL Fixed */
.complete-register .file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.complete-register .file-upload-area:hover {
    border-color: #0c7d81;
    background: #f8f9fa;
}

.complete-register .file-upload-area.dragover {
    border-color: #0c7d81;
    background: #e8f4f8;
}

.complete-register .upload-icon {
    font-size: 48px;
    color: #0c7d81;
    margin-bottom: 15px;
}

.complete-register .upload-text {
    color: #666;
    margin-bottom: 10px;
}

.complete-register .upload-formats {
    font-size: 12px;
    color: #999;
}

.complete-register .file-input {
    display: none;
}

/* File Progress */
.complete-register .file-progress {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.complete-register .file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.complete-register .file-name {
    font-weight: 500;
    color: #333;
}

.complete-register .file-size {
    color: #666;
    font-size: 14px;
}

.complete-register .progress-bar-container {
    background: #e9ecef;
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
}

.complete-register .progress-bar {
    background: #0c7d81;
    height: 100%;
    transition: width 0.3s ease;
}

/* Skills Tags - RTL Fixed */
.complete-register .skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    direction: rtl;
}

.complete-register .skill-tag {
    background: #e9ecef;
    color: #495057;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.complete-register .skill-tag .remove-skill {
    cursor: pointer;
    color: #dc3545;
    font-weight: bold;
}

.complete-register .skill-input {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    min-width: 150px;
    text-align: right;
}

/* Radio Groups - RTL Fixed */


.complete-register .radio-label {
    flex: 1;
    cursor: pointer;
    order: 1;
    /* RTL: label on the left */
    text-align: right;
    font-size: 15px;
}

.complete-register .radio-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.complete-register .radio-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Expandable Sections - RTL Fixed */
.complete-register .expandable-section {
    border: 0;
    border-radius: 8px;
    margin-bottom: 15px;
}

.complete-register .expandable-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
}

.complete-register .expandable-content {
    padding: 20px;
    display: none;
}

.complete-register .expandable-section.active .expandable-content {
    display: block;
}

.complete-register .expand-icon {
    transition: transform 0.3s ease;
}

.complete-register .expandable-section.active .expand-icon {
    transform: rotate(180deg);
}

/* Terms */
.complete-register .terms-section {
    background: #f5f5f6;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.complete-register .terms-text {
    color: #666;
    line-height: 1.6;
}

/* Navigation Buttons - RTL Fixed */
.complete-register .form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    direction: rtl;
}

.complete-register .btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Footer - RTL Fixed */

.complete-register .step-content {
    display: none;
}

.complete-register .step-content.active {
    display: block;
}

/* Responsive - RTL Fixed */
@media (max-width: 768px) {
    .complete-register .main-content {
        padding: 0 15px;
    }

    .complete-register .form-section {
        padding: 20px;
    }

    .complete-register .step-progress {
        flex-wrap: wrap;
        gap: 20px;
    }

    .complete-register .step {
        flex: 1;
        min-width: 120px;
    }

    .complete-register .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .complete-register .btn {
        width: 100%;
    }

    .complete-register .header-content {
        flex-direction: row-reverse;
        /* RTL: reverse order on mobile */
    }
}

.complete-register .works-card {
    background: #f5f5f6;
    margin-bottom: 30px;
    border-radius: 15px;
}

.complete-register .works-card .section-title {
    border-bottom: 1px solid #EEEEF0;
    padding: 20px;
}

.complete-register .works-card .works-card-body {
    padding: 0 20px 20px;
}

.complete-register .works-card .works-card-body p {
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: right;
    font-weight: 600;
    font-size: 17px;
}

.complete-register .works-card .works-card-body ul li {
    font-size: 15px;
}

.complete-register .term {
    margin-bottom: 10px;
}

.complete-register .term label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.complete-register .term input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}





.complete-register .upload-area {
    border: 1px solid #EAECF0;
    border-radius: 10px;
    padding: 10px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.complete-register .upload-area:hover {
    border-color: #007bff;
    background: #e7f3ff;
}

.complete-register .upload-area.dragover {
    border-color: #28a745;
    background: #d4edda;
}

.complete-register .upload-area.error {
    border-color: #dc3545;
    background: #f8d7da;
}

.complete-register .upload-icon {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 20px;
}

.complete-register .file-info {
    background: #e3f2fd;
    border-radius: 10px;
    padding: 0 15px;
    margin-top: 15px;
    display: none;
}

.complete-register .file-info.show {
    display: block;
}

.complete-register .progress-container {
    margin-top: 15px;
    display: none;
}

.complete-register .progress-container.show {
    display: block;
}

.complete-register .btn-custom {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.complete-register .btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.complete-register .form-control,
.complete-register .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.complete-register .form-control:focus,
.complete-register .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.complete-register .invalid-feedback {
    display: block;
}

.complete-register .form-control.is-invalid,
.complete-register .form-select.is-invalid {
    border-color: #dc3545;
}

.complete-register .form-control.is-valid,
.complete-register .form-select.is-valid {
    border-color: #28a745;
}

.complete-register .upload-success {
    color: #28a745;
    font-weight: 600;
}

.select2-container {
    width: 100% !important;
}

.complete-register .select2-container {
    width: 100% !important;
}

.complete-register .upload-error {
    color: #dc3545;
    font-weight: 600;
}

.complete-register .file-size {
    font-size: 0.9em;
    color: #6c757d;
}


.complete-register .clickhear {
    color: #0c7d81;
}

.complete-register .uploadtext {
    font-weight: 500;

}

.complete-register .file-info .btn:hover {
    color: red;
    background-color: transparent;
    border-color: transparent;
}

.complete-register .upload-info-text {
    font-size: 14px;
}

.complete-register .works-card h3 {
    font-size: 20px;
}

.complete-register .works-card-item {
    padding: 20px;
    border-bottom: 1px solid #EEEEF0;
}

.complete-register .works-card-item:last-child {
    border-bottom: none;
}


.main-form-content.privacy-settings h3 {
    color: #344054;
    margin-bottom: 15px;
}

.main-form-content.privacy-settings {
    padding: 30px 25px;
}

.main-form-content.privacy-settings .form-check {
    margin-bottom: 20px;
}

.main-form-content.privacy-settings.notify .form-group label {
    margin-bottom: 15px;
    font-weight: 700;

}

/* dashboard styles */


.dashboard .recent-projects-card {
    background: #f5f5f6;
    border-radius: 18px;
}

.dashboard .recent-projects-card .recent-title {
    padding: 18px 18px 15px;
}

.dashboard .recent-projects-card .recent-title span {
    font-size: 20px;
    color: #222;
}

.dashboard .recent-projects-card .recent-divider {
    border-top: 1px solid #e0e0e0;
}

.dashboard .recent-projects-card .recent-list {
    padding-bottom: 40px;
}

.dashboard .recent-projects-card .recent-item {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dashboard .recent-projects-card .recent-item:last-child {
    border-bottom: none;
}

.dashboard .recent-projects-card .recent-name {
    flex: 1;
    color: #0c7d81;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

.dashboard .recent-projects-card .recent-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard .recent-projects-card .recent-meta span {
    color: #494949;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dashboard .recent-projects-card .recent-meta i {
    font-size: 14px;
    color: #2F384C;
}

.dashboard .profile-card {
    background: #f5f5f6;
    border-radius: 18px;
    padding: 20px 0 0 0;
    text-align: center;
    margin-bottom: 24px;
    border: none;
    width: 100%;
}

.dashboard .profile-card .profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;

    margin: 0 auto 13px auto;
    display: block;
}

.dashboard .profile-card .profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.dashboard .profile-card .profile-divider {
    border-top: 1px solid #e0e0e0;
    margin: 18px 0 0 0;
}

.dashboard .profile-card .edit-profile-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 20px 0;
}

.dashboard .profile-card .edit-profile-text {
    font-size: 17px;
    color: #222;
    font-weight: 700;
}

.dashboard .profile-card .edit-profile-icon {
    font-size: 18px;
    color: #0c7d81;
}


.dashboard .messages-card {
    background: #f5f5f6;
    border-radius: 18px;
    text-align: center;
    padding: 32px 0 0 0;
    margin-bottom: 24px;
    border: none;
    margin-top: 24px;
}

.dashboard .messages-card .messages-title {
    font-size: 22px;
    color: #222;
    margin-bottom: 8px;
}

.dashboard .messages-card .messages-count {
    font-size: 32px;
    color: #222;
    margin-bottom: 12px;
}

.dashboard .messages-card .messages-divider {
    border-top: 1px solid #e0e0e0;
    margin: 18px 0 0 0;
}

.dashboard .messages-card .messages-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 18px 0 0 0;
    padding-bottom: 20px;
}

.dashboard .messages-card .messages-col {
    flex: 1;
    text-align: center;
    font-size: 16px;
    color: #222;
    font-weight: 400;
}

.dashboard .messages-card .messages-col:not(:last-child) {
    border-left: 1px solid #e0e0e0;
}

.dashboard .messages-card .messages-label {
    font-size: 15px;
    color: #888;
    font-weight: 400;
}

.dashboard .messages-card .messages-num {
    font-size: 17px;
    font-weight: bold;
    color: #515151;
    margin-left: 4px;
}


.dashboard .jobs-card {
    background: #f5f5f6;
    border-radius: 18px;
    text-align: center;
    padding: 32px 0 0 0;
    margin-bottom: 24px;
    border: none;
}

.dashboard .jobs-card .jobs-title {
    font-size: 22px;
    color: #222;
    margin-bottom: 8px;
}

.dashboard .jobs-card .jobs-count {
    font-size: 32px;
    color: #222;
    margin-bottom: 12px;
}

.dashboard .jobs-card .jobs-divider {
    border-top: 1px solid #e0e0e0;
    margin: 18px 0 0 0;
}

.dashboard .jobs-card .add-job-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 0 0;
    padding-bottom: 20px;
}

.dashboard .jobs-card .add-job-text {
    font-size: 18px;
    color: #0c7d81;
    font-weight: 500;
    cursor: pointer;
}

.dashboard .jobs-card .add-job-icon {
    font-size: 22px;
    color: #0c7d81;
}

.dashboard .blog-card {
    background: #f5f5f6;
    border-radius: 18px;
    padding: 24px 0 0 0;
    margin-bottom: 24px;
    border: none;
}

.dashboard .blog-card .blog-title {
    font-size: 19px;
    color: #222;
    margin-bottom: 12px;
    padding: 0 15px;
}

.dashboard .blog-card .blog-divider {
    border-top: 1px solid #e0e0e0;
    margin: 12px 0 0 0;
}

.dashboard .blog-card .blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard .blog-card .blog-item {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.dashboard .blog-card .blog-item:last-child {
    border-bottom: none;
}

.dashboard .blog-card .blog-link {
    color: #0c7d81;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.dashboard .blog-card .blog-meta {
    color: #888;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dashboard .blog-card .blog-meta i {
    font-size: 16px;
    color: #2F384C;
}

.dashboard .balance-balance {
    background: #f5f5f6;
    border-radius: 18px;
    padding: 32px 0 24px 0;
    margin-bottom: 24px;
    border: none;
}

.dashboard .balance-section {
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.dashboard .balance-card {
    flex: 1;
    text-align: center;
    padding: 0 0 0 0;
}

.dashboard .balance-card:first-child {
    border-left: none;
}

.dashboard .balance-label {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dashboard .balance-label.balance-secondary {
    color: #888;
}

.dashboard .balance-label.balance-primary {
    color: #0c7d81;
}

.dashboard .balance-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 8px;
    margin-top: 20px;
}

.dashboard .balance-value {
    font-size: 28px;
    font-weight: bold;
    color: #222;
}

.dashboard .balance-currency {
    font-size: 28px;
    font-weight: bold;
    color: #0c7d81;
    margin-left: 4px;
}

.dashboard .balance-currency.balance-secondary {
    color: #888;
}

.dashboard .balance-divider {
    border-top: 1px solid #e0e0e0;
    margin: 18px 0 0 0;
}

.dashboard .balance-footer {
    padding: 16px 32px 0 32px;
    font-size: 18px;
    font-weight: 500;
    color: #888;
    text-align: center;
}

.dashboard .balance-footer .balance-footer-label {
    color: #888;
    font-weight: 400;
}

.dashboard .balance-footer .balance-footer-value {
    color: #222;
    font-weight: bold;
    margin-left: 4px;
}

.dashboard .offers-card {
    background: #f5f5f6;
    border-radius: 18px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
    padding: 35px 15px 25px 25px;
    margin-bottom: 24px;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.dashboard .offers-details {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard .offers-row {
    display: flex;
    gap: 24px;
}

.dashboard .offers-col {
    flex: 1;
    margin-bottom: 18px;
}

.dashboard .offers-label {
    font-size: 15px;
    color: #888;
    margin-bottom: 2px;
}

.dashboard .offers-value {
    font-size: 15px;
    color: #222;
    font-weight: 500;
    margin-bottom: 2px;
}

.dashboard .offers-progress {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 2px;
    overflow: hidden;
}

.dashboard .offers-progress-bar {
    height: 100%;
    border-radius: 4px;
}

.dashboard .offers-progress-bar.bg-main {
    background: #0c7d81;
}

.dashboard .offers-progress-bar.bg-danger {
    background: #d32f2f;
}

.dashboard .offers-progress-bar.bg-gray {
    background: #e0e0e0;
}

.dashboard .offers-summary {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-top: 40px;
}

.dashboard .offers-title {
    font-size: 24px;
    color: #222;
    margin-bottom: 0;
}

.dashboard .offers-count {
    font-size: 24px;
    color: #222;
    margin-bottom: 0;
}

.dashboard .offers-btn {
    background: #0c7d81;
    color: #fff;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    margin: auto;
}

.dashboard .offers-btn i {
    font-size: 20px;
}

.dashboard .dlivered-span {
    height: 50px;
    color: #D8D8D8;
    background: #D8D8D8;
    width: 1px;
}

.dashboard .summary-progress {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 5px;
}


.main-content.add-project {
    padding: 40px 0;
    min-height: 70vh;
}

.add-project .info-section h2 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
}

.add-project .info-section p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.add-project .info-section ul {
    list-style: none;
    padding: 0;
}

.add-project .info-section ul li {
    color: #7f8c8d;
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
}

.add-project .info-section ul li:before {
    content: "•";
    color: #16a085;
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* Form Styles */
.add-project .form-section {
    background: #f5f5f6;
    border-radius: 10px;
    padding: 30px;
}

.add-project .form-section h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.add-project .form-label {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
}

.add-project .required {
    color: #e74c3c;
}

.add-project .form-control {
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
}

.add-project .form-control:focus {
    border-color: #16a085;
    box-shadow: 0 0 0 0.2rem rgba(22, 160, 133, 0.25);
}

/* Project Type Selection */
.add-project .images-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.add-project .images-selector-grid i {
    font-size: 20px;
    margin-bottom: 15px;
}

.add-project .image-grid-container {
    border: 2px dashed #0C7D81;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FFF;
}

.add-project .image-grid-container:hover {
    border-color: #16a085;
    background: #e8f8f5;
}

.add-project .image-grid-container.selected {
    border-color: #16a085;
    background: #e8f8f5;
    border-style: solid;
}

.add-project .image-grid-container img {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.add-project .image-grid-container label {
    color: #000000 !important;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    cursor: pointer;
    font-size: 16px;
}

.add-project .image-grid-container p {
    color: #414141;
    font-size: 14px;
    margin: 0;
}

/* Template Selection */
.add-project .panel-group {
    margin-bottom: 20px;
}

.add-project .panel {
    overflow: hidden;
    width: 100%;
}

.add-project .panel-heading {
    background: #FFF;
    padding: 5px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #2c3e50;
}

.add-project .panel-heading h4 {
    font-size: 15px;
}

.add-project .panel-collapse {
    display: none;
}

.add-project .panel-collapse.in {
    display: block;
}

.add-project .panel-body {
    padding: 20px;
    background: white;
}

.add-project .templates-group {
    margin-bottom: 15px;
}

.add-project .templates-group .col-md-4 {
    padding: 8px;
}

.add-project .templates-group label {
    display: block;
    margin: 0;
}

.add-project .templates-group span {
    color: #16a085;
    cursor: pointer;
    padding: 10px;
    display: block;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.add-project .templates-group span:hover {
    background: #e8f8f5;
    border-color: #16a085;
}

.add-project .btn-collapse {
    background: none;
    border: none;
    color: #7f8c8d;
}

.add-project .btn-collapse .fa-chevron-down {
    transition: transform 0.3s ease;
}

.add-project .btn-collapse.collapsed .fa-chevron-down {
    transform: rotate(-90deg);
}

/* Advanced Settings */
.add-project .advanced-settings {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.add-project .advanced-settings-header {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.add-project .advanced-settings-header:hover {
    background: #e9ecef;
}

.add-project .advanced-settings-header h6 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.add-project .advanced-settings-content {
    padding: 20px;
    display: none;
}

.add-project .advanced-settings-content.show {
    display: block;
}

.add-project .question-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}

.add-project .question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.add-project .question-number {
    font-weight: 600;
    color: #2c3e50;
}

.add-project .delete-question {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 12px;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 4px;
    float: inline-end;
    margin-top: -20px;
}

.add-project .delete-question:hover {
    background: #fee;
}

.add-project .required-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 14px;
}

.add-project .add-question-btn {
    background: white;
    padding: 0px 20px;
    border-radius: 6px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 36px;
    line-height: 33px;
    font-size: 14px;
}

.add-project .questions-description {
    color: #414141;
    font-size: 13px;
    margin: 10px 0;
    line-height: 1.5;
}

.add-project .chevron-icon {
    transition: transform 0.3s ease;
}

.add-project .chevron-icon.rotated {
    transform: rotate(180deg);
}

.add-project .add-email-form-add:disabled {
    background-color: #0c7d81;
    cursor: not-allowed;
    border-color: transparent;
    color: #FFF;
}

.add-project .cancel-add-email:disabled,
.add-project .cancel-add-emai:active {
    border-color: #b1b1b1;
    color: #a1a1a1;
}

.add-project .add-email-form-add:active {
    background-color: #0c7d81;
    border-color: transparent;
    color: #FFF;
}

/* Skills */
.add-project .skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.add-project .skill-tag {
    background: #e8f8f5;
    color: #16a085;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-project .remove-skill {
    background: none;
    border: none;
    color: #16a085;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.add-project .skills_suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.add-project .suggested__skill {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-project .suggested__skill:hover {
    background: #e8f8f5;
    border-color: #16a085;
}

.add-project .grey-tag {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 13px;
}

.add-project .collapse {
    display: none;
}

.add-project .collapse.in {
    display: block;
}

.add-project .project__details-reset {
    float: inline-end;
    color: #0C7D81 !important;
    font-weight: 700 !important;
    text-decoration: none;
    margin-top: -40px;
}

@media (max-width: 768px) {
    .add-project .images-selector-grid {
        grid-template-columns: 1fr;
    }

    .add-project .header .user-section {
        gap: 10px;
    }

    .add-project .form-section {
        padding: 20px;
    }
}


/* projects */

/* Main Container */
.main-container.projects-filters {
    padding: 1.5rem 0;
}


/* Main Content */
.projects-filters .main-content {
    flex: 1;
}

.projects-filters .no-result {
    width: 100%;
    height: 250px;
    background: #f5f5f6;
    padding-top: 110px;
    border-radius: 15px;
}

.projects-filters .no-result p {
    text-align: center;
    font-size: 20px;
}

.projects-filters .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.projects-filters .page-title h1 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
    text-align: right;
}

.projects-filters .page-title p {
    color: #6b7280;
    text-align: right;
}

/* Sort Dropdown */
.projects-filters .sort-dropdown {
    position: relative;
}

.projects-filters .sort-btn {
    background-color: #f5f5f6;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    text-align: right;
    justify-content: space-between;
}

.projects-filters .sort-btn:hover {
    background-color: #f9fafb;
}

.projects-filters .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    /* RTL: dropdown aligns to right */
    left: auto;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
    min-width: 120px;
}

.projects-filters .dropdown-menu.show {
    display: block;
    margin-top: -20px;
}

.projects-filters .dropdown-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    border-bottom: 1px solid #f3f4f6;
    text-align: right;
}

.projects-filters .dropdown-item:last-child {
    border-bottom: none;
}

.projects-filters .dropdown-item:hover {
    background-color: #f9fafb;
}

/* Projects List */
.projects-filters .projects-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #f5f5f6;
    border-radius: 15px;
}

.projects-filters .project-card {
    border-bottom: 1px solid #D8D8D8;
}

.projects-filters .project-card:last-child {
    border-bottom: none;
}

.projects-filters .project-content {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: right;
}

.projects-filters .project-info {
    flex: 1;
    margin-left: 1rem;
    /* RTL: margin on left side */
}

.projects-filters .project-title {
    font-size: 16px;
    font-weight: 600;
    color: #0C7D81;
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    display: block;
}

.projects-filters .project-info-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.projects-filters .project-title:hover {
    color: #0f766e;
}

.projects-filters .project-description {
    color: #414141;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    text-align: right;
}

.projects-filters .project-meta {
    display: flex;
    gap: 1rem;
    font-size: 12px;
    color: #9ca3af;
    align-items: center;
    justify-content: flex-start;
    /* RTL: align to right */
}

.projects-filters .project-meta i {
    margin-left: 0.25rem;
}

.projects-filters .similar-project-btn {
    background-color: #0C7D81;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    height: 45px;
    padding: 0 15px;
    line-height: 45px;
}

/* Sidebar */
.projects-filters .sidebar {
    flex-shrink: 0;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
}

.projects-filters .sidebar-section {
    margin-bottom: 5px;
}

.projects-filters .section-header {
    font-weight: 600;
    color: #344054;
    padding: 0 20px;
}

.projects-filters .section-content {
    padding: 1rem;
}

/* Search Section */
.projects-filters .search-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.projects-filters .search-input:focus {
    border-color: #0c7d81 !important;
    box-shadow: none !important;
}

.projects-filters .search-input::placeholder {
    color: #9ca3af;
}

/* Filter Checkboxes */
.projects-filters .filter-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.projects-filters .filter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    padding: 0.25rem 0;
    text-align: right;
    justify-content: flex-start;
}

.projects-filters .filter-item input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #0d9488;
    order: -1;
    /* RTL: checkbox on the right */
    margin-left: 0.5rem;
    margin-right: 0;
}

.projects-filters .filter-item:hover {
    color: #0d9488;
}

/* Links Section */
.projects-filters .links-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.projects-filters .sidebar-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
    text-align: center;
}

.projects-filters .sidebar-link:hover {
    color: #0d9488;
}

/* Budget Slider */
.projects-filters .budget-section {
    padding: 1rem;
}

.projects-filters .budget-slider-container {
    position: relative;
    margin: 1rem 0;
}

.projects-filters .budget-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    position: relative;
}

.projects-filters .budget-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0d9488;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.projects-filters .budget-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0d9488;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.projects-filters .budget-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
    margin-top: 0.5rem;
}

.projects-filters .slider-track {
    height: 6px;
    background: #0d9488;
    border-radius: 3px;
    position: absolute;
    top: 0;
}

.projects-filters .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
    /* RTL: align to right */
}

.projects-filters .brand-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.projects-filters .brand-icon {
    width: 2rem;
    height: 2rem;
    background-color: white;
    border-radius: 0.25rem;
}

.projects-filters .brand-description {
    font-size: 0.875rem;
    color: #a7f3d0;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: right;
}

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

    .projects-filters .sidebar {
        width: 100%;
        order: -1;
        /* RTL: sidebar appears first on mobile */
    }

    .projects-filters .page-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .projects-filters .sort-dropdown {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .projects-filters .project-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .projects-filters .project-info {
        margin-left: 0;
    }

    .projects-filters .similar-project-btn {
        display: none;
    }

    .projects-filters .projects-page-header {
        padding: 0 10px;
    }

    .breadcrumb-nav {
        padding: 0 15px;
    }

    .projects-filters .contact-btn {
        display: none;
    }

    .projects-filters .freelancer-meta {
        flex-flow: column;
    }

    .main-container.projects-filters h3 {
        padding: 0 15px;
    }
}

.projects-filters .projects-page-header {
    display: flex;
    justify-content: space-between;
}

.projects-filters .price-range-slider {
    width: 100%;
    float: left;
    padding: 10px 20px;
}

.projects-filters .price-range-slider .range-value {
    margin: 0;
}

.projects-filters .price-range-slider .range-value input {
    width: 100%;
    background: none;
    color: #000;
    font-size: 16px;
    font-weight: initial;
    box-shadow: none;
    border: none;
    margin: 20px 0 20px 0;
}

.projects-filters .price-range-slider .range-bar {
    border: none;
    background: #000;
    height: 3px;
    width: 96%;
    margin-left: 8px;
}

.projects-filters .price-range-slider .range-bar .ui-slider-range {
    background: #085356;
}

.projects-filters .price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: #085356;
    border: 2px solid #085356;
    height: 17px;
    width: 17px;
    top: -0.52em;
    cursor: pointer;
}

.projects-filters .price-range-slider .range-bar .ui-slider-handle+span {
    background: #085356;
}

.projects-filters .amount-range-section {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 15pz;
    font-weight: 500;
}

.projects-filters .truncate {
    display: inline-block;
    max-width: 60px;
    /* adjust width as needed */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}



/* Freelancer Cards */
.projects-filters .freelancer-card {
    padding: 25px;
    border-bottom: 1px solid #D8D8D8;
}

.projects-filters .freelancer-card:last-child {
    border-bottom: none;
}

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

.projects-filters .freelancer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.projects-filters .freelancer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.projects-filters .freelancer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-filters .online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #0c7d81;
    border: 2px solid white;
    border-radius: 50%;
}

.freelancer-details h6 {
    color: #0c7d81;
    margin-bottom: 10px;
    font-weight: 600;
}

.projects-filters .freelancer-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 14px;
    color: #414141;
}

.projects-filters .freelancer-meta .fa-briefcase {
    margin: 0 10px;
}

.projects-filters .rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.projects-filters .stars {
    color: #fbbf24;
}

.projects-filters .contact-btn {
    background: #0c7d81;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
}

.projects-filters .contact-btn:hover {
    background: #0f766e;
}

.projects-filters .freelancer-description {
    color: #374151;
    line-height: 1.6;
    font-size: 0.95rem;
}



/* Responsive */
@media (max-width: 768px) {
    .projects-filters .freelancer-header {
        flex-direction: column;
        gap: 1rem;
    }

    .projects-filters .freelancer-info {
        width: 100%;
    }

    .projects-filters .contact-btn {
        align-self: flex-start;
    }
}

.projects-filters .freelancer-container {
    background: #f5f5f6;
    border-radius: 15px;
}


.projects-filters .table th {
    font-size: 15px;
}

.projects-filters .table th,
.projects-filters .table td {
    border-left: 1px solid #D8D8D8;
    text-align: center;

}

.projects-filters .table th:last-child,
.projects-filters .table td:last-child {
    border-left: 0;
}

.projects-filters .table tbody tr:last-child {
    border-bottom-color: transparent;
}


/* offer page */

.add-offer-page .freelancer-profile-section {
    background: white;
    padding: 0;
    text-align: center;
}

.add-offer-page .freelancer-profile-section .container {
    background: #f5f5f6;
    padding: 60px 0 0;
}

.add-offer-page .profile-image {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.add-offer-page .profile-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.add-offer-page .profile-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.add-offer-page .profile-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-weight: 400;
    font-size: 14px;
}

.add-offer-page .btn-download {
    background-color: transparent;
    border: 2px solid #0c7d81;
    color: #0c7d81;
    padding: 0 15px;
    border-radius: 10px;
    margin-left: 20px;
    height: 44px;
    line-height: 40px;
}

.add-offer-page .btn-add {
    background-color: #0c7d81;
    border: none;
    color: white;
    border-radius: 10px;
    height: 44px;
    line-height: 44px;
    padding: 0 15px;
    margin: 10px;
}

.add-offer-page .tabs-section {
    background: white;
    padding: 0;
}

.add-offer-page .custom-tabs {
    display: flex;
    justify-content: center;
}

.add-offer-page .custom-tab {
    padding: 15px 30px;
    background: none;
    border: none;
    color: #000000;
    position: relative;
    font-weight: 600;
}

.add-offer-page .custom-tab.active {
    background: #FFF;
    border-radius: 10px 10px 0 0;
}

.add-offer-page .content-section {
    padding: 20px 0;
}

.add-offer-page .stats-card,
.add-offer-page .about-card,
.add-offer-page .skills-section {
    background: #f5f5f6;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 30px;
}

.add-offer-page .about-card-header {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    padding: 20px;
    border-bottom: 1px solid #D8D8D8;
}

.add-offer-page .card-title {
    font-size: 20px;
    font-weight: 600;
}

.add-offer-page .about-card-body {
    padding: 0 20px 20px;
    font-size: 16px;
    font-weight: 500;
}

.add-offer-page .stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.add-offer-page .stats-item:last-child {
    border-bottom: none;
}

.add-offer-page .stats-value {
    color: #242424;
    background: #DBDBDB;
    padding: 5px 15px;
    border-radius: 10px;
}

.add-offer-page .rating {
    color: #ffc107;
}

.add-offer-page .skill-tag {
    background-color: #0c7d81;
    color: white;
    padding: 0 15px;
    border-radius: 10px;
    margin: 5px;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
}

.add-offer-page .skill-tag i {
    font-size: 15px;
    vertical-align: text-bottom;
    margin: 0 5px;
}

.add-offer-page .freelancer-profile-header {
    display: flex;
    justify-content: space-between;
    padding: 0;
    align-items: end;
}

.add-offer-page .star-rating {
    display: inline-flex;
    font-size: 15px;
    color: #f5b301;
}

.add-offer-page .star-rating .fa-star,
.add-offer-page .star-rating .fa-star-half-alt,
.add-offer-page .star-rating .fa-regular.fa-star {
    margin-right: 4px;
}

.add-offer-page .offers-section {
    padding: 20px;
}

.add-offer-page .user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.add-offer-page .user-name {
    font-weight: bold;
    font-size: 15px;
}

.add-offer-page .user-role {
    font-size: 13px;
    color: gray;
}

.add-offer-page .rating i {
    color: gold;
    font-size: 12px;
}

.add-offer-page .offer-text {
    font-size: 14px;
    color: #4f4f4f;
    margin-top: 10px;
    line-height: 1.6;
}

.add-offer-page .small-icon {
    font-size: 13px;
    color: gray;
}

.add-offer-page .verified-icon {
    color: #00c96b;
}

.add-offer-page .dropdown-toggle::after {
    display: none;
}

.add-offer-page .truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.add-offer-page .image-section {
    position: relative;
}

.add-offer-page .image-section i {
    position: absolute;
    right: 0;
    bottom: 0;
}

.add-offer-page .offers .about-card-body {
    border-bottom: 1px solid #D8D8D8;
    padding: 20px;
}

.add-offer-page .offers .about-card-header {
    margin-bottom: 0;
}

.add-offer-page .offers .about-card-body:last-child {
    border-bottom: 0;
}

.add-offer-page .project-tag {
    flex: auto;
    text-align: center;
}

.add-offer-page .project-status {
    background: #00ac25;
    height: 30px;
    line-height: 30px;
    padding: 0 35px;
    display: inline-block;
    border-radius: 10px;
    color: #FFF;
    max-width: 150px;
    margin: auto;
}

.add-offer-page .project-owner-offer .skill-tag {
    background-color: #0c7d81;
    color: white;
    padding: 0px 5px;
    border-radius: 10px;
    margin: 3px;
    display: inline-block;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
}

.add-offer-page .job {
    color: #7C7C7C;
    font-size: 14px;
}




/* Unified Freelancer Profile Styles */
.freelancer-profile-page.freelancer-profile-section {
    background: white;
    padding: 0;
    text-align: center;
}

.freelancer-profile-page.freelancer-profile-section .container {
    background: #f5f5f6;
    padding: 60px 0 0;
}

.freelancer-profile-page .profile-image {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.freelancer-profile-page .profile-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.freelancer-profile-page .profile-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.freelancer-profile-page .profile-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-weight: 400;
    font-size: 14px;
}

.freelancer-profile-page .btn-download {
    background-color: transparent;
    border: 2px solid #0c7d81;
    color: #0c7d81;
    padding: 0 15px;
    border-radius: 10px;
    margin-left: 20px;
    height: 44px;
    line-height: 40px;
    cursor: pointer;
}

.freelancer-profile-page .btn-add {
    background-color: #0c7d81;
    border: none;
    color: white;
    border-radius: 10px;
    height: 44px;
    line-height: 44px;
    padding: 0 15px;
    margin: 10px;
    cursor: pointer;
}

.freelancer-profile-page .tabs-section {
    background: white;
    padding: 0;
}

.freelancer-profile-page .custom-tabs {
    display: flex;
    justify-content: center;
}

.freelancer-profile-page .custom-tab {
    padding: 15px 30px;
    background: none;
    border: none;
    color: #000000;
    position: relative;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.freelancer-profile-page .custom-tab.active {
    background: #FFF;
    border-radius: 10px 10px 0 0;
}

.freelancer-profile-page.content-section {
    padding: 40px 0;
}

.freelancer-profile-page .stats-card,
.freelancer-profile-page .about-card,
.freelancer-profile-page .skills-section {
    background: #f5f5f6;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 30px;
}

.freelancer-profile-page .about-card-header {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    padding: 20px;
    border-bottom: 1px solid #D8D8D8;
}

.freelancer-profile-page .card-title {
    font-size: 20px;
    font-weight: 600;
}

.freelancer-profile-page .about-card-body {
    padding: 0 20px 20px;
    font-size: 16px;
    font-weight: 500;
}

.freelancer-profile-page .stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.freelancer-profile-page .stats-item:last-child {
    border-bottom: none;
}

.freelancer-profile-page .stats-value {
    color: #242424;
    background: #DBDBDB;
    padding: 5px 15px;
    border-radius: 10px;
}

.freelancer-profile-page .rating {
    color: #ffc107;
}

.freelancer-profile-page .skill-tag {
    background-color: #0c7d81;
    color: white;
    padding: 0 15px;
    border-radius: 10px;
    margin: 5px;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
}

.freelancer-profile-page .skill-tag i {
    font-size: 15px;
    vertical-align: text-bottom;
    margin: 0 5px;
}

.freelancer-profile-page .freelancer-profile-header {
    display: flex;
    justify-content: space-between;
    padding: 0;
    align-items: end;
}

.freelancer-profile-page .star-rating {
    display: inline-flex;
    font-size: 15px;
    color: #f5b301;
}

.freelancer-profile-page .star-rating .fa-star,
.freelancer-profile-page .star-rating .fa-star-half-alt,
.freelancer-profile-page .star-rating .fa-regular.fa-star {
    margin-right: 4px;
}

/* Portfolio Styles */
.freelancer-profile-page .portfolio-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.freelancer-profile-page .portfolio-card:hover {
    transform: translateY(-5px);
}

.freelancer-profile-page .portfolio-image {
    width: 100%;
    height: 180px;
    background-color: #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.freelancer-profile-page .portfolio-content {
    padding: 15px;
}

.freelancer-profile-page .portfolio-title {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.freelancer-profile-page .portfolio-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.freelancer-profile-page .portfolio-footer i {
    color: #2F384C;
}

/* Reviews Styles */
.freelancer-profile-page .reviews-container {
    max-width: 100%;
}

.freelancer-profile-page .review-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.freelancer-profile-page .review-header {
    display: flex;
    justify-content: space-between;
}

.freelancer-profile-page .review-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.freelancer-profile-page .rating-number {
    font-size: 13px;
    color: #B0B0B0;
}

.freelancer-profile-page .review-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #525252;
    text-align: right;
    font-weight: 500;
    margin-top: 15px;
    width: 85%;
}

.freelancer-profile-page .reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.freelancer-profile-page .reviewer-details {
    text-align: right;
}

.freelancer-profile-page .reviewer-name {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 2px;
}

.freelancer-profile-page .reviewer-title {
    font-size: 14px;
    color: #666;
}

.freelancer-profile-page .reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.freelancer-profile-page .review-date {
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-size: 12px;
    color: #999;
}

/* Tab Content */
.tab-content {
    display: none;
}

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

@media (max-width: 992px) {
    .main-content.complete-register {
        padding: 0 40px;
    }

    .main-content-wrapper.dashboard .container-fluid {
        padding: 0 40px !important;
    }

    .dashboard .balance-label {
        font-size: 20px;
    }

    .dashboard .balance-value {
        font-size: 20px;
    }

    .profile-header-banner-personal {
        height: 100px;
    }

}


@media (max-width: 768px) {
    .freelancer-profile-page .freelancer-profile-header {
        flex-direction: column;
        gap: 20px;
        place-self: center;
    }

    .freelancer-profile-page .profile-info {
        flex-direction: row;
        gap: 15px;
    }

    .freelancer-profile-page .custom-tabs {
        flex-wrap: wrap;
    }

    .freelancer-profile-page .custom-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .freelancer-profile-page .review-content {
        flex-direction: column;
        gap: 15px;
    }

    .freelancer-profile-page .review-left {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        min-width: auto;
    }

    .freelancer-profile-page .review-text {
        padding: 0;
    }

    .freelancer-profile-page .reviewer-info {
        justify-content: flex-end;
    }

    .password-recovery-card {
        max-width: 90%;
    }

    /* .complete-register .step-progress-line,.complete-register .step-progress::before{
        display: none;
    } */
    .complete-register .step {
        flex: 1;
        min-width: 0;
    }

    .complete-register .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0;
    }

    .complete-register .step-label {
        font-size: 12px;
    }

    .complete-register .step-progress-line {
        width: 80% !important;
    }

    .dashboard .offers-card {
        display: block;
    }

    .dashboard .offers-summary {
        padding-top: 0;
        margin-bottom: 20px;
    }

    .completion-steps {
        display: none;
    }


}

@media (max-width: 480px) {
    .main-content.complete-register {
        padding: 0;
    }

    .complete-register .expandable-content {
        padding: 0;
    }

    .complete-register .form-section {
        margin-top: 50px;
    }

    .dashboard .balance-label {
        font-size: 15px;
    }

    .dashboard .balance-value {
        font-size: 15px;
    }

    .dashboard .balance-footer .balance-footer-value {

        font-size: 15px;
    }

    .dashboard .balance-footer .balance-footer-label {

        font-size: 15px;
    }

    .completion-steps-title {
        font-size: 20px;
    }

    .hero-header .nav-links {
        gap: 0;
    }

    .hero-header .nav-link{
          font-size: 12px;
        padding: 0px 10px;

    }
    .logo-section .logo img {
        width: 50px;
        height: 50px;
    }


}








/* Mobile-first responsive design */
@media (max-width: 767.98px) {
    .dashboard .container-fluid {
        padding: 0 15px !important;
    }

    .dashboard .row {
        display: flex;
        flex-direction: row;
    }

    .dashboard .col-md-4,
    .dashboard .col-md-8 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Reorder elements for mobile */
    .mobile-order-container {
        display: flex;
        flex-direction: column;
    }

    /* Profile section - Order 1 */
    .profile-section {
        order: 1;
        margin-bottom: 20px;
    }
}

.chat-popup {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    animation: popupFadeIn 0.5s;
}
@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
.popup-content {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #036569 0%, #22c9cf 100%) !important;
    color: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 rgba(54,153,255,0.18);
    padding: 1.2rem 1.5rem;
    min-width: 320px;
    max-width: 360px;
}
.popup-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #ffe082;
    background: #fff;
}
.popup-info {
    flex: 1;
}
.popup-sender {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 0.2em;
    color: #ffe082;
}
.popup-message {
    font-size: 1em;
    margin-bottom: 0.7em;
    color: #fff;
    word-break: break-word;
}
.popup-btn {
    background: #ffe082;
    color: #036569;
    border: none;
    border-radius: 0.7rem;
    padding: 0.4rem 1.2rem;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(54,153,255,0.09);
}
.popup-btn:hover {
    background: #fff;
    color: #22c9cf;
}
.popup-btn i {
    margin-left: 0.4em;
}

.notif-modal {
    background: linear-gradient(135deg, #036569 0%, #22c9cf 100%) !important;
    color: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px 0 rgba(54, 153, 255, 0.18);
}

/* Button */
.btn--primary {
    background-color: #036569;
    color: #fff;
}

/* Button */
.btn--primary:hover {
    background-color: #afe5e7;
    color: #036569;
}

.__color-8a8a8a {
    color: #fff;
}

.tio-shopping-cart-outlined:before {
    content: "\f0f3";
}