v/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #eaf2ef;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #eaf2ef;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #912f56;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #912f56;
}

header .title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-links a {
    color: #912f56;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #7a2546;
}

/* Navigation */
nav {
    background-color: #eaf2ef;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    color: #912f56;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #7a2546;
}

.download-btn {
    background-color: #912f56;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-left: auto;
}

.download-btn:hover {
    background-color: #7a2546;
}

/* Sections */
.section {
    padding: 60px 0;
    border-bottom: 1px solid #912f56;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #912f56;
    text-align: center;
}

.section p, .section li {
    margin-bottom: 15px;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.skill-category h3 {
    margin-bottom: 15px;
    color: #912f56;
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding-left: 0px;
    position: relative;
}

.skill-category li::before {
    content: '•';
    color: #912f56;
    margin-right: 10px;
    
}

/* Experience */
.job {
    margin-bottom: 40px;
}

.job h3 {
    margin-bottom: 5px;
    color: #912f56;
}

.duration {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 15px;
}

.job ul {
    margin-left: 20px;
}

/* Projects */
.project {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #eaf2ef;
    border-radius: 8px;
}

.project h3 {
    margin-bottom: 5px;
    color: #912f56;
}

.tech-stack {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 15px;
}

.links {
    margin-top: 15px;
}

.links a {
    color: #912f56;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
}

.links a:hover {
    color: #7a2546;
    text-decoration: underline;
}

/* Education */
.education-item {
    margin-bottom: 20px;
}

.education-item h3 {
    margin-bottom: 5px;
    color: #912f56;
}

/* Awards */
#awards ul {
    list-style: none;
    padding-left: 20px;
}

#awards li {
    margin-bottom: 10px;
    position: relative;
}

#awards li::before {
    content: '🏆';
    position: absolute;
    left: -30px;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

#back-to-top {
    background-color: #912f56;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

#back-to-top:hover {
    background-color: #7a2546;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header .title {
        font-size: 1rem;
    }

    .contact-links {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .download-btn {
        margin-left: 0;
        margin-top: 15px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 0;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}
