/* Modern Resume Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: all 0.4s ease;
}

.header {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #e9ecef;
    transition: transform 0.4s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #212529;
}

.title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.contact-link {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.5s ease;
}

.contact-link:hover {
    transform: scale(1.05);
    color: #0d6efd;
}

/* Animated underline effect for links */
.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0d6efd;
    transition: width 0.5s ease;
}

.contact-link:hover::after {
    transform: scale(1.05);
    width: 100%;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: #212529;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #3686ff, #660df5);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 10px;
}

.skill-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.skill-category:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    padding: 8px 0;
    position: relative;
    color: #495057;
}

.skill-list li::before {
    content: '•';
    color: #0d6efd;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
}

.experience-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

.company {
    font-size: 1.1rem;
    font-weight: 500;
    color: #0d6efd;
    margin-bottom: 1px;
}

.date {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1px;
    font-style: italic;
}

.responsibilities {
    list-style: none;
    padding-left: 0;
}

.responsibilities li {
    padding: 10px 0;
    position: relative;
    color: #495057;
    padding-left: 20px;
}

.responsibilities li::before {
    content: '✓';
    color: #0d6efd;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }

    .name {
        font-size: 2rem;
    }

    .title {
        font-size: 1rem;
    }

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

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

/* Icon sizing for buttons */
.download-btn i, .print-btn i {
    font-size: 2rem;
}

/* Button styling */
.download-btn {
    color: #495057;
    text-decoration: none;
    transition: color 0.4s ease, transform 0.4s ease;
    display: inline-block;
}

.download-btn:hover {
    transform: scale(1.3);
    color: #0d6efd;
}

.print-btn {
    color: #495057;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.4s ease, transform 0.4s ease;

}

.print-btn:hover {
    transform: scale(1.3);
    color: #0d6efd;
}
