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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #e0e0e0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated background orbs */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

body::before {
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  top: -250px;
  left: -250px;
  animation-delay: -5s;
}

body::after {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #f093fb, #f5576c);
  bottom: -200px;
  right: -200px;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -100px) scale(1.1); }
  66% { transform: translate(-100px, 100px) scale(0.9); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

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

h1 {
  font-size: 3.5em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

.tagline {
  font-size: 1.3em;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-links a {
  color: #667eea;
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(102, 126, 234, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.contact-links a:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.glass-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.glass-section:nth-child(2) { animation-delay: 0.2s; }
.glass-section:nth-child(3) { animation-delay: 0.4s; }
.glass-section:nth-child(4) { animation-delay: 0.6s; }
.glass-section:nth-child(5) { animation-delay: 0.8s; }

h2 {
  font-size: 2em;
  margin-bottom: 25px;
  color: #fff;
  border-bottom: 2px solid rgba(102, 126, 234, 0.5);
  padding-bottom: 10px;
}

.about-content {
  line-height: 1.8;
  color: #d0d0d0;
}

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

.skill-category {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.skill-category:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.skill-category h3 {
  color: #667eea;
  margin-bottom: 12px;
  font-size: 1.2em;
}

.skill-category p {
  color: #c0c0c0;
  line-height: 1.6;
}

.experience-item {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.experience-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.experience-item h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.4em;
}

.experience-meta {
  color: #888;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.experience-item ul {
  list-style: none;
  padding-left: 0;
}

.experience-item li {
  color: #c0c0c0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.experience-item li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #667eea;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.project-button {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  border: 2px solid rgba(102, 126, 234, 0.4);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex: 1 1 calc(33.333% - 14px);
  min-width: 250px;
  text-decoration: none;
}

.project-button:hover {
  border-color: rgba(102, 126, 234, 0.8);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transform: translateY(-3px);
}

.project-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.project-description {
  color: #b0b0b0;
  font-size: 0.95em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0;
}

.education-highlight {
  background: rgba(102, 126, 234, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.education-highlight h3 {
  color: #fff;
  margin-bottom: 10px;
}

.education-details {
  color: #c0c0c0;
  line-height: 1.8;
}

.awards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.award-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9em;
  color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}