 /* Base styles */
 body {
    background: #f0f2f5;
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Header styling */
.profile-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 3rem 0 7rem;
    margin-bottom: -4rem;
    position: relative;
    overflow: hidden;
}

.profile-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern.png') repeat;
    opacity: 0.1;
}

/* Container styling */
.profile-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Card styling */
.profile-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Avatar styling */
.avatar-upload {
    position: relative;
    width: 160px;
    height: 160px;
    margin: -80px auto 2rem;
}

.avatar-upload img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    object-fit: cover;
    background: #f8fafc;
}

.avatar-upload .upload-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #2c3e50;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Form styling */
.info-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.info-card h5 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h5 i {
    font-size: 1.5rem;
    color: #3498db;
}

.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.form-control {
    height: 50px;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52,152,219,0.1);
}

.input-group-text {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 0.75rem 1.25rem;
    color: #2c3e50;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

/* Button styling */
.btn-save {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52,152,219,0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-header {
        padding: 2rem 0 6rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .btn-save {
        width: 100%;
        padding: 0.875rem;
    }
}

.btn-outline-light {
    border-width: 2px;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.upload-area {
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    background: rgba(52, 152, 219, 0.05);
}

.skills-input-container .badge {
    font-size: 0.9rem;
    font-weight: normal;
}

.skills-input-container .badge .btn-close {
    font-size: 0.7rem;
    padding: 0.25rem;
}

.current-resume {
    transition: all 0.3s ease;
}

.current-resume:hover {
    background: rgba(52, 152, 219, 0.05);
}