* {
  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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 20px;
}

.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, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  text-align: center;
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  animation: fadeInDown 1s;
}

header p {
  font-size: 1.3em;
  opacity: 0.95;
  animation: fadeInUp 1s;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-info a {
  color: white;
  text-decoration: none;
  transition: transform 0.3s;
  display: inline-block;
}

.contact-info a:hover {
  transform: translateY(-3px);
}

.content {
  padding: 40px;
}

section {
  margin-bottom: 40px;
  animation: fadeIn 1s;
}

h2 {
  color: #667eea;
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 3px solid #667eea;
  padding-bottom: 10px;
}

.education-item,
.project-card,
.skill-category {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.education-item:hover,
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.education-item h3,
.project-card h3 {
  color: #764ba2;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.education-details {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

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

.skill-category h3 {
  color: #667eea;
  margin-bottom: 10px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  border: 2px solid #667eea;
  color: #667eea;
  font-weight: 600;
}

.skill-tag:hover {
  background-color: mintcream;
}

.project-icon {
  width: 35px;
  vertical-align: text-top;
}

.project-link, .project-code {
  text-decoration: none;
  font-weight: bold;
}

.project-link {
  color: coral;
}

.project-code {
  color: green;
}

.project-tech {
  color: #666;
  font-style: italic;
  margin-top: 10px;
}

.cert-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
}

.cert-badge:hover {
  background: linear-gradient(135deg, #667eea 0%, #3e1e5d 100%);
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  .content {
    padding: 20px;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
}