body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2b2d42, #1f1f38);
    color: #1a1a1a; /* Darker text for readability */
}
header {
    background: #2b2d42;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
header h1 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
header p {
    margin: 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0.85;
}
nav {
    background: #ef476f;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
nav a {
    color: #fff;
    margin: 0 1.5rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
nav a:hover {
    color: #ffd166;
    transform: translateY(-3px);
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem;
}
section {
    margin-bottom: 2.5rem;
    background: #f4f4f9; /* Light gray for better text contrast */
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-left: 4px solid #ef476f;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
}
@keyframes slideIn {
    to { transform: translateX(0); opacity: 1; }
}
h2 {
    color: #2b2d42;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 4px solid #ffd166;
    padding-bottom: 0.6rem;
    margin-top: 0;
    font-size: 2rem;
    text-transform: uppercase;
}
.job, .education {
    margin-bottom: 2rem;
}
.job h3, .education h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #2b2d42;
}
.title, .education p {
    color: #333333; /* Darker for readability */
    margin: 0.6rem 0;
    font-weight: 600;
}
.date {
    font-style: italic;
    color: #333333; /* Darker for readability */
}
ul {
    padding-left: 1.8rem;
    color: #1a1a1a; /* Ensure list items are readable */
}
ul.skills-list {
    list-style: none;
    padding: 0;
}
ul.skills-list li {
    background: linear-gradient(90deg, #ef476f, #ffd166);
    color: #fff; /* White text on gradient background */
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0.6rem;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
ul.skills-list li:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
a {
    color: #ef476f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
a:hover {
    color: #ffd166;
}
.note {
    font-size: 0.95rem;
    color: #333333; /* Darker for readability */
    font-style: italic;
}
footer {
    background: #2b2d42;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 1.1rem;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.2);
}
@media (max-width: 600px) {
    header h1 {
        font-size: 2.5rem;
    }
    header p {
        font-size: 1.2rem;
    }
    nav a {
        margin: 0 0.8rem;
        font-size: 1rem;
    }
    .container {
        padding: 1.5rem;
    }
    section {
        padding: 1.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
}
