/* General Styling */
body-6 {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0e5d8; /* Subtle beige for warmth */
}

/* Resume Container */
.resume-container-6 {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background: linear-gradient(135deg, #ffcbcb, #ff9595); /* Gradient of soft pinks */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

/* Left Section */
.left-section-6 {
    background: #4a2d62; /* Deep purple */
    color: #ffffff;
    padding: 20px;
    width: 30%;
    text-align: center;
}

.profile-picture-6 img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #ff9595; /* Matches gradient tone */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.contact-info-6 h3,
.references-6 h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-6 p,
.references-6 p {
    margin: 10px 0;
    color: #e8d6ed; /* Soft lavender text for contrast */
}

/* Right Section */
.right-section-6 {
    padding: 30px;
    width: 70%;
    background-color: #ffe6d5; /* Soft peach for harmony */
}

.header-6 h1 {
    font-size: 36px;
    margin-bottom: 5px;
    color: #4a2d62; /* Matches left section */
}

.header-6 p {
    font-size: 20px;
    color: #6b4c7d; /* Muted purple for subtlety */
}

/* Timeline Section */
.timeline-6 {
    margin-top: 20px;
    position: relative;
    padding-left: 30px;
}

.timeline-6::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff9595; /* Accent color from gradient */
}

.timeline-item-6 {
    margin-bottom: 20px;
    position: relative;
}

.timeline-item-6 span.year {
    font-weight: bold;
    color: #6b4c7d; /* Muted purple */
}

.timeline-item-6 h4 {
    margin: 5px 0;
    font-size: 18px;
    color: #4a2d62; /* Matches left section */
}

/* Skills Section */
.skills-6 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills-6 ul li {
    background: #4a2d62; /* Deep purple */
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.3s ease;
}

.skills-6 ul li:hover {
    background: #6b4c7d; /* Slightly lighter purple on hover */
    transform: scale(1.1);
}
