*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: radial-gradient(circle at 50% 50%, #0f2027, #203a43, #2c5364);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.profile-container{
    display: flex;
    max-width: 900px;
    width: 100%;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
}
.profile-image{
    width: 40%;
    background: linear-gradient(135deg,#12c2e9,#c471ed,#f64f59);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-image img {
    width: 80%;
    border-radius: 50%;
    border: 4px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%{
        box-shadow: 0 0 20px rgba(255,255,255,0.6);
    }
    50%{
        box-shadow: 0 0 40px rgba(255,255,255,0.9);
    }
    100%{
        box-shadow: 0 0 20px rgba(255,255,255,0.6);
    }
}

.profile-details{
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-details h2{
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
}
.job-title{
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 20px;
}

.location{
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.skills h3{
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.skill{
    margin-bottom: 10px;
}

.skill-bar{
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    margin-top: 5px;
    height: 10px;
    position: relative;
    overflow: hidden;
}

.skill-level{
    height: 100%;
    background: linear-gradient(90deg,#f64f59,#c471ed,#12c2e9);
    border-radius: 30px;
    animation: skill-fill 2s ease;
}

@keyframes skill-fill {
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}

.contact-btn{
    padding: 10px 25px;
    background: #f64f59;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover{
    background: #12c2e9;
}