/* Profile image container adjustments */
.profile-image-container {
    width: 433px;
    height: 433px;
    border-radius: 10px; /* Changed from 50% to make it more square */
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    position: relative;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* Skill bars and profile image fixes */
.skill-bar {
    background-color: rgba(30, 30, 50, 0.5);
    height: 10px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.skill-progress {
    height: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 1.5s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.7);
    background: linear-gradient(90deg, #00f7ff, #ff00a0);
}

/* Profile image styling */
.profile-image-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.profile-image {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--primary-color);
    transition: transform 0.5s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}