/* Hero Section */
.hero-section {
    margin-top: 100px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 8s infinite ease-in-out;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 10s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-section .breadcrumb {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}
  
.hero-section .breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
  
.hero-section .breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
}
  
.hero-section .breadcrumb-item a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
  
.hero-section .breadcrumb-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}
  
.hero-section .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 8px;
    color: #adb5bd;
}
  
.hero-section .breadcrumb-item.active {
    color: #949494;
    font-weight: 500;
}
  
.hero-section .breadcrumb-item .fa-home {
    margin-right: 5px;
    font-size: 15px;
}

.hero-section .project-header {
    position: relative;
    z-index: 1;
}

.hero-section .project-header .project-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.hero-section .project-header .project-category {
    background-color: #e0e7ff;
    color: #4f46e5;
    padding: 6px 12px 6px 8px; 
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-section .project-header .project-category i {
    font-size: 0.8rem;
}

.hero-section .project-header .project-status {
    padding: 6px 12px 6px 8px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-section .project-header .project-status i {
    font-size: 0.4rem;
    vertical-align: middle;
}

.hero-section .project-header .project-status.published {
    background-color: #d1fae5;
    color: #065f46;
}

.hero-section .project-header .project-status.hiring {
    background-color: #dbeafe;
    color: #1e40af;
}

.hero-section .project-header .project-status.in_progress {
    background-color: #fef3c7;
    color: #92400e;
}

.hero-section .project-header .project-status.published i {
    color: #065f46; 
}

.hero-section .project-header .project-status.hiring i {
    color: #1e40af; 
}

.hero-section .project-header .project-status.in_progress i {
    color: #92400e; 
}

.hero-section .project-header .project-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-section .project-header .project-client {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-section .project-header .project-client .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.hero-section .project-header .project-client .client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .project-header .project-client .client-avatar .profile-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #666;
    font-size: 18px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section .project-header .project-client .client-info {
    display: flex;
    flex-direction: column;
}

.hero-section .project-header .project-client .client-name {
    font-weight: 600;
    color: #334155;
}

.hero-section .project-header .project-client .client-location {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-section .project-header .project-client .client-location i {
    font-size: 0.8rem;
}

.hero-section .project-header .project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.hero-section .project-header .project-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.95rem;
}

.hero-section .project-header .project-stats .stat-item i {
    color: #94a3b8;
    font-size: 0.9rem;
}

.hero-section .project-header .action-buttons {
    display: flex;
    gap: 12px;
}

.hero-section .project-header .action-buttons .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

.hero-section .project-header .action-buttons .btn i {
    font-size: 0.9rem;
}

.hero-section .project-header .action-buttons .btn-primary {
    background-color: #4f46e5;
    color: white;
}

.hero-section .project-header .action-buttons .btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-section .project-header .action-buttons .btn-secondary {
    background-color: white;
    color: #4f46e5;
    border: 1px solid #c7d2fe;
}

.hero-section .project-header .action-buttons .btn-secondary:hover {
    background-color: #eef2ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Project Overview Section */
.overview-section {
    padding: 40px 0;
}

.overview-section .overview-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 30px;
}

.overview-section .overview-grid .overview-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.overview-section .overview-grid .overview-main .section-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eef2f7;
}

.overview-section .overview-grid .overview-main .section-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.overview-section .overview-grid .overview-main .section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #4f46e5, #6366f1);
    opacity: 0.8;
}

.overview-section .overview-grid .overview-main .section-card .section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0 0 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
    transition: color 0.2s ease-in-out;
}

.overview-section .overview-grid .overview-main .section-card .section-title i {
    color: #4f46e5;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    width: 1.8rem;
    height: 1.8rem;
    padding: 0.25rem;
    transition: all 0.2s ease-in-out;
}

.overview-section .overview-grid .overview-main .section-card:hover .section-title {
    color: #111827;
}

.overview-section .overview-grid .overview-main .section-card:hover .section-title i {
    transform: scale(1.05);
    background: rgba(79, 70, 229, 0.15);
}

.overview-section .overview-grid .overview-main .section-card .project-description {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.overview-section .overview-grid .overview-main .section-card .project-description h4 {
    color: #1e293b;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.1rem;
}

.overview-section .overview-grid .overview-main .section-card .project-description ul {
    padding-left: 20px;
    margin: 0.75rem 0;
}

.overview-section .overview-grid .overview-main .section-card .project-description li {
    margin-bottom: 0.5rem;
}

.overview-section .overview-grid .overview-main .section-card .skills-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.overview-section .overview-grid .overview-main .section-card .skills-header .skills-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(79, 70, 229, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 60px;
}

.overview-section .overview-grid .overview-main .section-card .skills-header .skills-counter .counter-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4f46e5;
    line-height: 1;
}

.overview-section .overview-grid .overview-main .section-card .skills-header .skills-counter .counter-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4f46e5;
    font-weight: 600;
}

.overview-section .overview-grid .overview-main .section-card .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag {
    background-color: white;
    color: #334155;
    padding: 8px 14px 8px 10px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag i {
    color: #6366f1;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 16px;
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag:hover i {
    transform: scale(1.1);
    color: #4f46e5;
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-level-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag[data-skill-level="expert"] .skill-level-badge {
    background-color: #ecfdf5;
    color: #059669;
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag[data-skill-level="advanced"] .skill-level-badge {
    background-color: #eff6ff;
    color: #2563eb;
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag[data-skill-level="intermediate"] .skill-level-badge {
    background-color: #fef3c7;
    color: #d97706;
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag[data-skill-level="expert"]::after {
    background: linear-gradient(90deg, #059669, #10b981);
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag[data-skill-level="advanced"]::after {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag[data-skill-level="intermediate"]::after {
    background: linear-gradient(90deg, #d97706, #f59e0b);
}

.overview-section .overview-grid .overview-main .section-card .skills-list .skill-tag:hover::after {
    transform: scaleX(1);
}

.overview-section .overview-grid .overview-main .section-card .attachments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.overview-section .overview-grid .overview-main .section-card .attachment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.overview-section .overview-grid .overview-main .section-card .attachment-item:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.overview-section .overview-grid .overview-main .section-card .attachment-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #e0e7ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.overview-section .overview-grid .overview-main .section-card .attachment-icon .fa-file-pdf {
    color: #f87171;
}

.overview-section .overview-grid .overview-main .section-card .attachment-icon .fa-file-image {
    color: #60a5fa;
}

.overview-section .overview-grid .overview-main .section-card .attachment-icon .fa-file-excel {
    color: #34d399;
}

.overview-section .overview-grid .overview-main .section-card .attachment-content {
    flex: 1;
}

.overview-section .overview-grid .overview-main .section-card .attachment-title {
    font-weight: 500;
    color: #334155;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.overview-section .overview-grid .overview-main .section-card .attachment-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #64748b;
}

.overview-section .overview-grid .overview-main .section-card .attachment-download {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
}

.overview-section .overview-grid .overview-main .section-card .attachment-download:hover {
    background-color: #e2e8f0;
    color: #4f46e5;
}

.overview-section .overview-grid .overview-main .section-card .no-attachments {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px; 
    border: 1px dashed #cbd5e1;
    color: #64748b;
    font-size: 0.95rem;
    justify-content: center;
    margin-top: 10px;
}

.overview-section .overview-grid .overview-main .section-card .no-attachments i {
    color: #94a3b8;
    font-size: 1.1rem;
}

.overview-section .overview-grid .overview-main .section-card .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.overview-section .overview-grid .overview-main .section-card .reviews-count {
    color: #64748b;
    font-size: 0.95rem;
}

.overview-section .overview-grid .overview-main .section-card .reviews-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-section .overview-grid .overview-main .section-card .filter-item {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.overview-section .overview-grid .overview-main .section-card .filter-item.active {
    background-color: #4f46e5;
    color: white;
}

.overview-section .overview-grid .overview-main .section-card .filter-item:not(.active):hover {
    background-color: #f1f5f9;
    color: #334155;
}

.overview-section .overview-grid .overview-main .section-card .reviews-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.overview-section .overview-grid .overview-main .section-card .review-overall {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.overview-section .overview-grid .overview-main .section-card .review-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.overview-section .overview-grid .overview-main .section-card .review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.overview-section .overview-grid .overview-main .section-card .review-count {
    font-size: 0.9rem;
    color: #64748b;
}

.overview-section .overview-grid .overview-main .section-card .review-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.overview-section .overview-grid .overview-main .section-card .review-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-section .overview-grid .overview-main .section-card .review-bar-label {
    font-size: 0.85rem;
    color: #64748b;
    width: 25px;
}

.overview-section .overview-grid .overview-main .section-card .review-bar-track {
    flex: 1;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.overview-section .overview-grid .overview-main .section-card .review-bar-progress {
    height: 100%;
    background-color: #f59e0b;
    border-radius: 3px;
}

.overview-section .overview-grid .overview-main .section-card .review-bar-count {
    font-size: 0.85rem;
    color: #64748b;
    width: 40px;
    text-align: right;
}

.overview-section .overview-grid .overview-main .section-card .reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overview-section .overview-grid .overview-main .section-card .review-item {
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.overview-section .overview-grid .overview-main .section-card .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.overview-section .overview-grid .overview-main .section-card .reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-section .overview-grid .overview-main .section-card .reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
}

.overview-section .overview-grid .overview-main .section-card .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-section .overview-grid .overview-main .section-card .reviewer-meta {
    display: flex;
    flex-direction: column;
}

.overview-section .overview-grid .overview-main .section-card .reviewer-name {
    font-weight: 500;
    color: #334155;
}

.overview-section .overview-grid .overview-main .section-card .reviewer-project {
    font-size: 0.85rem;
    color: #64748b;
}

.overview-section .overview-grid .overview-main .section-card .review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.overview-section .overview-grid .overview-main .section-card .review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.overview-section .overview-grid .overview-main .section-card .review-date {
    font-size: 0.85rem;
    color: #94a3b8;
}

.overview-section .overview-grid .overview-main .section-card .review-comment {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

.overview-section .overview-grid .overview-main .section-card .review-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.overview-section .overview-grid .overview-main .section-card .pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    color: #64748b;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.overview-section .overview-grid .overview-main .section-card .pagination-item:hover {
    background-color: #f1f5f9;
    color: #334155;
}

.overview-section .overview-grid .overview-main .section-card .pagination-item.active {
    background-color: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.overview-section .overview-grid .overview-sidebar {
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .card-title i {
    color: #4f46e5;
    font-size: 1rem;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .project-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .stat-item {
    padding: 15px;
    background-color: #f8fafc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.2s ease;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .stat-item:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 5px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .stat-label {
    font-size: 0.85rem;
    color: #64748b;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .project-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .info-item {
    display: flex;
    gap: 12px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .info-content {
    flex: 1;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .info-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 2px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .info-value {
    font-weight: 500;
    color: #334155;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-info-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-details {
    display: flex;
    flex-direction: column;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-name {
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-location {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-location i {
    font-size: 0.8rem;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-stats .stat-item {
    background-color: #f1f5f9; 
    border-radius: 12px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s ease;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-stats .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-stats .stat-icon {
    font-size: 1.5rem;
    color: #6366f1;
    margin-bottom: 6px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-stats .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.overview-section .overview-grid .overview-sidebar .sidebar-card .client-stats .stat-label {
    font-size: 0.8rem;
    color: #64748b;
}


.overview-section .overview-grid .overview-sidebar .sidebar-card .client-description {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-top: 10px;
}

.share-project-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
    position: relative;
    overflow: hidden;
}

.share-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #6366f1, #818cf8);
    opacity: 0.8;
}

.share-project-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.share-project-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-project-card .card-title i {
    color: #6366f1;
    font-size: 1rem;
}

.share-project-card .share-text {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.share-project-card .share-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.share-project-card .share-option {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-project-card .share-option:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.share-project-card .share-option.facebook {
    background: linear-gradient(135deg, #3b5998, #4267B2);
}

.share-project-card .share-option.twitter {
    background: linear-gradient(135deg, #1DA1F2, #00acee);
}

.share-project-card .share-option.linkedin {
    background: linear-gradient(135deg, #0077B5, #0e76a8);
}

.share-project-card .share-option.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.share-project-card .share-option.email {
    background: linear-gradient(135deg, #EA4335, #BB001B);
}

.share-project-card .share-link-container {
    margin-top: 20px;
    position: relative;
}

.share-project-card .share-link-input {
    width: 100%;
    padding: 12px 110px 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #64748b;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}

.share-project-card .share-link-input:focus {
    outline: none;
    border-color: #a5b4fc;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.share-project-card .copy-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 7px 15px;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.share-project-card .copy-btn:hover {
    background-color: #4338ca;
}

.share-project-card .copy-btn i {
    font-size: 0.9rem;
}


.section-card:nth-child(1) { animation-delay: 0.1s; }
.section-card:nth-child(2) { animation-delay: 0.2s; }
.section-card:nth-child(3) { animation-delay: 0.3s; }
.section-card:nth-child(4) { animation-delay: 0.4s; }


.overview-section .overview-grid .overview-sidebar .sidebar-card:nth-child(1) { animation-delay: 0.3s; }
.overview-section .overview-grid .overview-sidebar .sidebar-card:nth-child(2) { animation-delay: 0.4s; }
.overview-section .overview-grid .overview-sidebar .sidebar-card:nth-child(3) { animation-delay: 0.5s; }

.overview-section .overview-grid .overview-main .section-card .skill-tag:hover {
    animation: pulse 1s infinite ease-in-out;
}

/* Similar Projects Section */
.similar-projects-section {
    padding: 40px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.similar-projects-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.similar-projects-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.similar-projects-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.similar-projects-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    position: relative;
    display: inline-block;
}

.similar-projects-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #4f46e5, #6366f1);
    border-radius: 3px;
}

.similar-projects-section .view-all-link {
    color: #4f46e5;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.similar-projects-section .view-all-link:hover {
    color: #4338ca;
    transform: translateX(3px);
}

.similar-projects-section .view-all-link i {
    font-size: 0.8rem;
}

.similar-projects-section .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.similar-projects-section .project-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.similar-projects-section .project-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.similar-projects-section .project-card .project-status-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.similar-projects-section .project-card .project-status-tag.published {
    background-color: rgba(16, 185, 129, 0.9);
    color: white;
}

.similar-projects-section .project-card .project-status-tag.hiring {
    background-color: rgba(37, 99, 235, 0.9);
    color: white;
}

.similar-projects-section .project-card .project-status-tag.in_progress {
    background-color: rgba(245, 158, 11, 0.9);
    color: white;
}

.similar-projects-section .project-card .project-header {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.similar-projects-section .project-card .project-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.similar-projects-section .project-card .project-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.similar-projects-section .project-card .project-bg i {
    color: rgba(255, 255, 255, 0.2);
    font-size: 3rem;
    position: absolute;
}

.similar-projects-section .project-card .project-bg i:nth-child(1) {
    top: 15px;
    left: 15px;
    transform: rotate(-15deg);
}

.similar-projects-section .project-card .project-bg i:nth-child(2) {
    bottom: 15px;
    right: 15px;
    transform: rotate(15deg);
}

.similar-projects-section .project-card .project-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(79, 70, 229, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.similar-projects-section .project-card .project-category i {
    font-size: 0.7rem;
}

.similar-projects-section .project-card .project-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.similar-projects-section .project-card .project-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-projects-section .project-card .project-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.similar-projects-section .project-card .project-title a:hover {
    color: #4f46e5;
}

.similar-projects-section .project-card .project-client {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.similar-projects-section .project-card .client-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}

.similar-projects-section .project-card .client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-projects-section .project-card .client-info {
    display: flex;
    flex-direction: column;
}

.similar-projects-section .project-card .client-name {
    font-weight: 500;
    color: #334155;
    font-size: 0.9rem;
}

.similar-projects-section .project-card .client-location {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.similar-projects-section .project-card .client-location i {
    font-size: 0.7rem;
}

.similar-projects-section .project-card .project-excerpt {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.similar-projects-section .project-card .project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0; 
    margin-top: 15px; 
    border-top: 1px solid #e2e8f0;
}

.similar-projects-section .project-card .meta-item {
    display: flex;
    align-items: center;
    gap: 10px; 
    color: #64748b;
    font-size: 0.9rem; 
    padding: 5px 8px; 
}

.similar-projects-section .project-card .project-price {
    font-weight: 600;
    color: #4f46e5;
    background: #f5f7ff; 
    padding: 6px 10px; 
    border-radius: 6px;
}

.similar-projects-section .no-similar-projects {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px; 
    border: 1px dashed #cbd5e1;
    color: #64748b;
    font-size: 0.95rem;
    justify-content: center;
    margin-top: 10px;
}

.similar-projects-section .no-similar-projects i {
    color: #94a3b8;
    font-size: 1.1rem;
}