.profile-avatar-xl {
    width: 120px;
    height: 120px;
    margin-top: -60px;
}

.bg-indigo-custom {
    background-color: #6366f1 !important;
}

.nav-tabs.profile-nav-tabs .nav-link {
    color: #6b7280;
    background-color: transparent;
    transition: all 0.2s ease;
}

.nav-tabs.profile-nav-tabs .nav-link:hover {
    color: #111827;
    background-color: #f3f4f6;
}

.nav-tabs.profile-nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #111827;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.profile-avatar-xl,
.profile-badge {
    display: inline-flex;
    align-items: center;
}

.profile-avatar-xl {
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f3f4f6;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.profile-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
    margin-bottom: 40px;
}

.profile-name {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.profile-badge {
    gap: 6px;
    background-color: #eef2ff;
    color: #4f46e5;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.profile-nav-tabs {
    border: none;
    gap: 32px;
}

.profile-nav-tabs .nav-link {
    border: none;
    color: #6b7280;
    font-weight: 700;
    padding: 16px 0;
    position: relative;
}

.profile-nav-tabs .nav-link.active {
    color: #111827;
    background-color: transparent;
}

.profile-nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #111827;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.star-rating {
    color: #fbbf24;
    font-size: 18px;
}

.btn-contact-pro {
    background-color: #111827;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-contact-pro:hover {
    background-color: #374151;
    color: #ffffff;
}

.hero-gradient {
    background-image: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%) !important;
    padding: 60px 0 !important;
    color: #ffffff !important;
    border-bottom: none !important;
}

.hero-gradient .text-muted {
    color: #e2e8f0 !important;
}