
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;

}

.resume-container__back-home {
    display: inline-block;
    padding: 10px 15px;
    margin-bottom: 20px;
    background-color: #667eea;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.resume-container__back-home:hover {
    background-color: #764ba2;
}


.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #667eea;
    margin-bottom: 20px;
    object-fit: cover;
    background: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 60px;

}

.name {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.title {
    font-size: 1.3em;
    color: #a0aec0;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e0;
}


.content {
    padding: 40px;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8em;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.skill-bar {
    background: rgba(255, 255, 255, 0.3);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.skill-progress {
    background: white;
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

.experience-item {
    background: #f7fafc;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-right: 5px solid #667eea;
}

.job-title {
    font-size: 1.3em;
    color: #2d3748;
    font-weight: bold;
    margin-bottom: 5px;
}

.company {
    color: #667eea;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.duration {
    color: #718096;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.description {
    color: #4a5568;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.project-title {
    font-size: 1.2em;
    color: #2d3748;
    font-weight: bold;
    margin-bottom: 10px;
}

.project-tech {
    color: #667eea;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.education-item {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.degree {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.university {
    font-size: 1.1em;
    margin-bottom: 5px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .name {
        font-size: 2em;
    }

    .content {
        padding: 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}


#github {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
#github:hover {
    color: #02ff25;
}