* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}

.hero {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #667eea;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.title {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.contact, .skills, .experience, .certificates {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact {
    padding: 1.5rem;
}

.skills, .experience, .certificates {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.skills h2, .experience h2, .certificates h2 {
    text-align: center;
    margin-bottom: 1.25rem;
    color: #333;
    font-size: 1.6rem;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.9rem;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item .icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: #667eea;
}

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

.skill-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-2px);
}

.skill-item h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.skill-item p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.experience-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-left: 4px solid #667eea;
}

.experience-item:hover {
    transform: translateY(-2px);
}

.experience-item h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.experience-item .company {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.3rem;
}

.experience-item .duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.experience-item p:last-child {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.experience-item ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

.experience-item li {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.certificates-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.certificate-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-left: 4px solid #667eea;
}

.certificate-item:hover {
    transform: translateY(-2px);
}

.certificate-item h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.certificate-item .issuer {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.3rem;
}

.certificate-item p:last-child {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}