body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4e3d7;
    color: #333;
}

.resume-5 {
    max-width: 900px;
    margin: 20px auto;
    background: linear-gradient(135deg, rgb(107, 88, 88), #f3b0a8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    padding: 25px;
}

/* Header Section */
.header-5 {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6b2d5c, #d35478);
    color: #ffffff;
    padding: 25px;
    border-radius: 12px 12px 0 0;
}

.header-5 .photo-5 img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.header-5 .info-5 h1 {
    font-size: 26px;
    margin: 0;
}

.header-5 .info-5 p {
    font-size: 18px;
    margin: 5px 0 0;
    font-weight: 300;
}

/* Section Styling */
main .section-5 {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f3c6ba;
    border-radius: 12px;
    border: 1px solid #e2a5a1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

main .section-5 h2 {
    color: #6b2d5c;
    font-size: 22px;
    border-bottom: 3px solid #d35478;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* Skills, Education, and Experience Lists */
.skills-5 ul,
.education-5 ul,
.experience-5 ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.skills-5 ul li,
.education-5 ul li,
.experience-5 ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.skills-5 ul li::before,
.education-5 ul li::before,
.experience-5 ul li::before {
    content: '•';
    color: #d35478;
    margin-right: 10px;
    font-weight: bold;
    font-size: 20px;
    vertical-align: middle;
}

/* Contact Section */
.contact-5 ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.contact-5 ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-5 ul li a {
    color: #6b2d5c;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-5 ul li a:hover {
    color: #d35478;
}

/* Progress Bars for Skills */
.skills-5 .progress-5 {
    background: #e8d3d1;
    border-radius: 10px;
    height: 10px;
    margin-top: 5px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.skills-5 .progress-5 div {
    height: 10px;
    background: linear-gradient(90deg, #d35478, #6b2d5c);
    width: 0;
    border-radius: 10px;
    transition: width 0.8s ease-in-out;
}

/* Animation Trigger */
.skills-5:hover .progress-5 div {
    width: var(--skill-level);
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .header-5 {
        flex-direction: column;
        text-align: center;
    }

    .header-5 .photo-5 img {
        margin-bottom: 15px;
    }

    main .section-5 {
        padding: 15px;
    }
}
