/* User Profile Styles */
        .user-profile-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .user-profile-header {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .profile-banner {
            height: 250px;
            background-color: #f8f8f8;
            background-image: linear-gradient(to right, #fcba05, #ffe57f);
            position: relative;
        }

        .profile-info {
            padding: 30px;
            position: relative;
        }

        .profile-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 5px solid #fff;
            position: absolute;
            top: -75px;
            left: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            overflow: hidden;
        }

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

        .profile-details {
            margin-left: 180px;
            min-height: 75px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .profile-actions {
            position: absolute;
            right: 30px;
            top: 30px;
        }

        .follow-btn {
            background-color: #fcba05;
            color: #333;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .follow-btn:hover {
            background-color: #e5a804;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(252, 186, 5, 0.3);
        }

        .user-name-area {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 5px;
        }

        .user-name-area h1 {
            font-size: 24px;
            font-weight: 700;
            margin: 0;
        }

        .verified-badge {
            color: #fcba05;
            font-size: 18px;
        }

        .username {
            color: #777;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .user-stats {
            display: flex;
            gap: 40px;
            margin-top: 20px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-value {
            font-size: 20px;
            font-weight: 700;
            color: #333;
        }

        .stat-label {
            font-size: 13px;
            color: #777;
        }

        .user-bio {
            margin-top: 15px;
            line-height: 1.6;
            color: #555;
        }

        .user-meta {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #666;
            font-size: 14px;
        }

        .meta-item i {
            color: #fcba05;
        }

        .social-links {
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f1f1f1;
            color: #555;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #fcba05;
            color: #fff;
            transform: translateY(-3px);
        }

        .profile-tabs {
            background: #fff;
            margin-bottom: 30px;
        }

        .profile-tabs .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .tabs-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .tab-item {
            padding: 15px 25px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .tab-count {
            background: #f5f5f5;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
            color: #777;
        }

        .tab-item.active {
            color: #fcba05;
        }

        .tab-item.active .tab-count {
            background: #fcba05;
            color: #fff;
        }

        .tab-item.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #fcba05;
        }

        /* Tab content container */
        .tab-content {
            display: none;
            padding: 30px 0;
        }

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

        .section-heading {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .view-all {
            font-size: 14px;
            color: #fcba05;
            text-decoration: none;
        }

        .view-all:hover {
            text-decoration: underline;
        }

        .empty-state {
            padding: 60px 0;
            text-align: center;
        }

        .empty-state i {
            font-size: 60px;
            color: #ddd;
            margin-bottom: 20px;
        }

        .empty-state h3 {
            font-size: 20px;
            color: #555;
            margin-bottom: 10px;
        }

        .empty-state p {
            color: #777;
            max-width: 400px;
            margin: 0 auto;
        }

        /* Reviews Tab Styling */
.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
}

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

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

.rating-stars {
    margin: 10px 0;
    font-size: 20px;
    color: #fcba05;
}

.total-reviews {
    font-size: 14px;
    color: #777;
}

.reviews-list {
    margin-top: 20px;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

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

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

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.reviewer-avatar i {
    font-size: 50px;
    color: #ccc;
}

.reviewer-name {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.review-date {
    font-size: 13px;
    color: #777;
    margin-top: 3px;
}

.review-product {
    text-align: right;
}

.product-link a {
    color: #444;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.product-link a:hover {
    color: #fcba05;
}

.product-rating {
    font-size: 14px;
    color: #fcba05;
    margin-top: 5px;
}

.review-content {
    margin-top: 10px;
}

.review-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* Stats section */
.user-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 13px;
    color: #777;
}

/* About Tab Enhanced Styling */
.about-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.section-title i {
    color: #fcba05;
    margin-right: 10px;
    width: 24px;
    text-align: center;
    font-size: 20px;
}

.card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(252, 186, 5, 0.1);
}

.card-body {
    padding: 25px;
}

.biography-content,
.experience-content,
.education-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* Skills tags */
.skills-container, 
.languages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-tag {
    background-color: rgba(252, 186, 5, 0.1);
    color: #333;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(252, 186, 5, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
}

.language-tag {
    background-color: rgba(252, 186, 5, 0.05);
    color: #333;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(252, 186, 5, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.skill-tag:hover, 
.language-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(252, 186, 5, 0.15);
    background-color: rgba(252, 186, 5, 0.2);
}

/* Contact information */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid #fcba05;
}

.contact-item:hover {
    background-color: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fcba05;
    font-size: 16px;
}

.whatsapp-icon {
    color: #25D366;
}

.telegram-icon {
    color: #0088cc;
}

.contact-item a {
    color: #444;
    text-decoration: none;
    font-size: 14px;
    word-break: break-word;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #fcba05;
}

/* Location */
.location-content {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #444;
    padding: 10px 0;
}

.location-content i {
    color: #fc3f5a;
    margin-right: 10px;
    font-size: 18px;
}

/* Social links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fcba05;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-link:hover:before {
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}





/* Empty state styling */
.empty-about-state {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.empty-state {
    text-align: center;
    max-width: 500px;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.empty-state i {
    font-size: 70px;
    color: rgba(252, 186, 5, 0.3);
    margin-bottom: 20px;
    display: block;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.empty-state p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.empty-state .btn {
    padding: 12px 25px;
    border-radius: 50px;
    background-color: #fcba05;
    border-color: #fcba05;
    box-shadow: 0 5px 15px rgba(252, 186, 5, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.empty-state .btn:hover {
    background-color: #e6a800;
    border-color: #e6a800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 186, 5, 0.4);
}

.empty-state .btn i {
    font-size: 16px;
    margin-right: 8px;
    color: white;
    display: inline;
    margin-bottom: 0;
}

/* Update text-primary class to use theme color */
.text-primary {
    color: #fcba05 !important;
}

/* Update section titles to always use theme color for icons */
.section-title i {
    color: #fcba05;
    margin-right: 10px;
    width: 24px;
    text-align: center;
    font-size: 20px;
}

/* Ensure all icons in the about section use theme color */
.about-section i.fas,
.about-section i.fab {
    color: #fcba05;
}

/* Exception for specific icon colors we want to preserve */
.contact-item .whatsapp-icon {
    color: #25D366;
}

.contact-item .telegram-icon {
    color: #0088cc;
}

.location-content i.fa-map-marker-alt {
    color: #fc3f5a;
}


/* Enhance the CKEditor content display */
.biography-content,
.experience-content,
.education-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.biography-content h1,
.biography-content h2,
.biography-content h3,
.biography-content h4,
.biography-content h5,
.biography-content h6 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.biography-content p {
    margin-bottom: 15px;
}

.biography-content ul,
.biography-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.biography-content a {
    color: #fcba05;
    text-decoration: none;
}

.biography-content a:hover {
    text-decoration: underline;
}

.biography-content blockquote {
    border-left: 4px solid #fcba05;
    padding-left: 15px;
    color: #555;
    font-style: italic;
    margin: 15px 0;
}

.biography-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.biography-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 15px 0;
}

.biography-content table th,
.biography-content table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.biography-content table th {
    background-color: rgba(252, 186, 5, 0.1);
}

/* Make cards even more attractive */
.card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

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

.card-body {
    padding: 25px;
}

/* Make skill tags more attractive */
.skill-tag {
    background-color: rgba(252, 186, 5, 0.1);
    color: #333;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(252, 186, 5, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
}

.skill-tag:hover {
    background-color: rgba(252, 186, 5, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(252, 186, 5, 0.15);
}

/* Responsive styles */
        @media (max-width: 768px) {
            .profile-avatar {
                width: 100px;
                height: 100px;
                top: -50px;
            }

            .profile-details {
                margin-left: 130px;
            }

            .profile-actions {
                position: relative;
                right: auto;
                top: auto;
                margin-top: 20px;
                text-align: right;
            }

            .user-stats {
                flex-wrap: wrap;
                gap: 20px;
            }

            .stat-item {
                flex: 1 0 30%;
            }

            .review-header {
        flex-direction: column;
    }
    
    .review-product {
        text-align: left;
        margin-top: 15px;
    }
    
    .reviews-summary {
        padding: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
        }

        @media (max-width: 576px) {
            .profile-avatar {
                left: 50%;
                transform: translateX(-50%);
            }

            .profile-details {
                margin-left: 0;
                margin-top: 60px;
                text-align: center;
            }

            .user-name-area {
                justify-content: center;
            }

            .user-meta {
                justify-content: center;
                flex-wrap: wrap;
            }

            .social-links {
                text-align: center;
            }

            .profile-actions {
                text-align: center;
            }

            .tab-item {
                padding: 15px 15px;
            }
        }
        /* Additional styles to match project-listing.php */
.no-products-message {
    width: 100%;
    padding: 50px 0;
}

.no-products-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.no-products-icon {
    color: #ddd;
    margin-bottom: 20px;
}

.no-products-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.no-products-content p {
    color: #777;
    margin-bottom: 20px;
}

/* Product grid styles */
.product-view-ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.grid-3 .pro-item-li {
    width: calc(33.33% - 20px);
    margin: 0 10px 30px;
}

.single-product-wrap {
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.single-product-wrap:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-hover:hover img {
    transform: scale(1.05);
}

.sale-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fcba05;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-caption {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-sub-title {
    margin-bottom: 8px;
}

.category-tag {
    font-size: 12px;
    color: #777;
    background-color: #f5f5f5;
    padding: 3px 8px;
    border-radius: 3px;
}

.product-title h6 {
    margin-bottom: 10px;
    font-weight: 600;
}

.product-title h6 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title h6 a:hover {
    color: #fcba05;
}

.product-price {
    margin-bottom: 10px;
}

.new-price {
    color: #fcba05;
    font-weight: 700;
    font-size: 18px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 14px;
}

.product-description {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.product-action {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-action a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f8f8;
    color: #333;
    transition: all 0.3s ease;
}

.product-action a:hover {
    background-color: #fcba05;
    color: #fff;
}

.tooltip-text {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.product-action a:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Author Container Styles - Matching item page */
.author-container {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.author-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-details {
    flex-grow: 1;
}

.author-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    color: #fcba05;
    font-size: 18px;
}

.author-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.meta-item i {
    color: #fcba05;
}

.author-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.follow-btn {
    background: #fcba05;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.follow-btn:hover {
    background: #e5a804;
}