:root {
    --bg-color: #0d1117;
    --text-color: #c9d1d9;
    --primary-color: #58a6ff;
    --secondary-color: #8b949e;
    --accent-color: #f78166;
    --card-bg: #161b22;
    --gradient: linear-gradient(135deg, #1f6feb 0%, #0d419d 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

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

.header {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    background: var(--gradient);
    margin-bottom: 4rem;
    border-radius: 1rem;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.header h1 {
    font-size: 2.75rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
}

.header h2 {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 1.25rem;
    position: relative;
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0 0;
    position: relative;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.contact-info div:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.section {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    background: var(--gradient);
    border-radius: 4px;
}

.about-content {
    padding: 1.5rem;
    background: #0a0d12;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content:hover {
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.15);
}

.experience-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #0a0d12;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.15);
}

.company {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.duration {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tools {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tool-tag {
    background: rgba(88, 166, 255, 0.12);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(88, 166, 255, 0.2);
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.tool-tag:hover {
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.2);
}

.education-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #0a0d12;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-item:hover {
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.15);
}

.degree {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.skills-list li {
    padding: 1rem;
    background: #0a0d12;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.skills-list li:hover {
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.15);
}

.skills-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 700;
}
.skills-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 1.5rem;
    }

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

    .contact-info {
        gap: 1rem;
    }

    .contact-info div {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

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