* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.resume-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 0;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
}

.resume-header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.resume-header .contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.resume-header .contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.section {
  background: white;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: #4a5568;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.job-item,
.education-item {
  margin-bottom: 15px;
}

.job-title {
  font-weight: bold;
  color: #2d3748;
}

.company,
.university {
  color: #4a5568;
  font-style: italic;
}

.date {
  color: #718096;
  font-size: 0.9em;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(minmax(200px, 1fr));
  gap: 15px;
}

.skill-category h4 {
  color: #2d3748;
  margin-bottom: 8px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: #edf2f7;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  color: #4a5568;
}

.projects-section {
  background: white;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-card h4 {
  color: #2d3748;
  margin-bottom: 10px;
}

.project-card p {
  color: #4a5568;
  margin-bottom: 15px;
  font-size: 0.95em;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.tech-tag {
  background: #bee3f8;
  color: #2c5282;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.8em;
}

.project-links {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9em;
  transition: background 0.3s;
}

.btn:hover {
  background: #5a6fd8;
}

.btn-outline {
  background: transparent;
  border: 1px solid #667eea;
  color: #667eea;
}

.btn-outline:hover {
  background: #667eea;
  color: white;
}

@media (max-width: 768px) {
  .resume-header h1 {
    font-size: 2em;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}
