/* Resume Profile Section Styles */

.resume-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Profile Left Column */
.profile-left {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.profile-left:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Picture Resume */
.picture-resume-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.picture-resume {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.goo-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: url(#goo);
    animation: blob-animation 6s infinite ease-in-out;
}

@keyframes blob-animation {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(10px, -10px) scale(1.05);
    }
    66% {
        transform: translate(-10px, 10px) scale(0.95);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.profile-pic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(102, 204, 153, 0.3);
}

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

/* Profile Info */
.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 0.25rem !important;
}

.profile-name-sub {
    font-size: 2rem;
    font-weight: 400;
    color: #66cc99;
    margin-top: -0.5rem;
}

/* Contact Items */
.profile-contact {
    border-top: 2px solid #ecf0f1;
    border-bottom: 2px solid #ecf0f1;
    padding: 1.5rem 0;
}

.contact-item {
    margin-bottom: 1.25rem !important;
}

.contact-item:last-child {
    margin-bottom: 0 !important;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #95a5a6;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.contact-value {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0;
    word-break: break-word;
}

.profile-link {
    color: #66cc99;
    text-decoration: none;
    transition: color 0.3s ease;
}

.profile-link:hover {
    color: #52a883;
    text-decoration: underline;
}

/* Profile Bio */
.profile-bio {
    margin-top: 1.5rem;
}

.profile-bio p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.profile-bio p:last-child {
    margin-bottom: 0;
}

/* Profile Right Column */
.profile-right {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #66cc99;
    border-radius: 2px;
}

/* Experience Section */
.experience-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.experience-item {
    margin-bottom: 2rem !important;
}

.experience-item:last-child {
    margin-bottom: 0 !important;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem !important;
}

.experience-date {
    font-size: 0.9rem;
    color: #95a5a6;
    font-style: italic;
    margin: 0;
}

.position-title {
    font-size: 1rem;
    font-weight: 600;
    color: #66cc99;
    margin-bottom: 0.5rem !important;
}

.position-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Skills Section */
.skills-section {
    padding: 0;
}

.skill-item {
    margin-bottom: 1.5rem !important;
}

.skill-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #66cc99 0%, #52a883 100%);
    border-radius: 10px;
    transition: width 1s ease;
    animation: fillSkillBar 1.5s ease forwards;
}

@keyframes fillSkillBar {
    from {
        width: 0;
    }
}

/* Interests Section */
.interests-section p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .profile-left {
        padding: 1.5rem;
    }

    .profile-right {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .profile-name {
        font-size: 2rem;
    }

    .profile-name-sub {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .picture-resume {
        width: 150px;
        height: 150px;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 1.75rem;
    }

    .profile-name-sub {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .profile-left {
        padding: 1.25rem;
        text-align: center;
    }

    .profile-contact {
        text-align: left;
    }

    .contact-value {
        font-size: 0.9rem;
    }

    .experience-item .row {
        flex-direction: column;
    }

    .experience-item .col-md-6 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .picture-resume {
        width: 120px;
        height: 120px;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-name-sub {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .profile-bio p {
        font-size: 0.9rem;
    }

    .skills-section .row > [class*='col-'] {
        flex: 0 0 100%;
    }
}

/* Animation for entrance */
.profile-left,
.profile-right {
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
