/* ==========================================
   PROFILE CARD (Left Sidebar)
   ========================================== */
.profile-card {
    background: #FFFFFF;
    border: none;
    border-radius: 30px;
    padding: 40px 35px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Decorative dotted paths */
.dotted-path-top {
    position: absolute;
    top: 12px;
    left: 8px;
    width: 100px;
    height: 100px;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}

.dotted-path-bottom {
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 120px;
    height: 60px;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}

.profile-image {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 360px;
    margin: 0 auto 32px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #C2411A 0%, #E15A1C 100%);
    z-index: 1;
}

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

.profile-name {
    font-size: 34px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.profile-location {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

.profile-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #6B6B6B;
    margin-bottom: 40px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.social-icons a {
    color: #F97316;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #EA580C;
    transform: translateY(-3px);
}
