* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.profile-card {
    width: 850px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 1s ease;
}

.header {
    background: #0077ff;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.photo-placeholder {
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid rgba(255,255,255,0.4);
}

.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.job-title {
    font-size: 18px;
    opacity: 0.9;
}

.content {
    padding: 40px;
}

.content h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.skill-item {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

.skill-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.skill-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.skill-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0077ff;
}

.skill-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.actions {
    text-align: center;
    padding: 30px;
    background: #f4f4f4;
}

.primary-btn {
    display: inline-block;
    background: #0077ff;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #005fd1;
}

.socials {
    margin-top: 20px;
}

.socials a {
    text-decoration: none;
    color: #333;
    margin: 0 12px;
    font-weight: bold;
    transition: 0.3s;
}

.socials a:hover {
    color: #0077ff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

