/* src/index.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
.portfolio {
  background:
    linear-gradient(
      135deg,
      #62dff0 0%,
      #FF6B9D 25%,
      #C44C9A 50%,
      #8B5A9B 75%,
      #6366F1 100%);
  min-height: 100vh;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.nav-links a:hover {
  opacity: 0.8;
}
.hero {
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 850px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-description {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.7;
}
.hero-profile-pic {
  height: 18rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 0 5%;
  border-radius: 50%;
  margin-bottom: 10rem;
  box-sizing: border-box;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 3rem;
  text-align: center;
}
.experience {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.project-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}
.project-highlight {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.project-header {
  margin-bottom: 1.5rem;
}
.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.company {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.period {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}
.project-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tech-tag {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.1));
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.experience-list {
  display: flex;
  gap: 3rem;
}
.experience-item {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
}
.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.exp-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}
.exp-company {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 400;
}
.exp-period {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.1));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.exp-highlights {
  list-style: none;
  color: white;
}
.exp-highlights li {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}
.exp-highlights li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}
.about {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.03);
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.education,
.awards {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
}
.education h3,
.awards h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.education p,
.awards p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.contact {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.1);
}
.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.contact-link {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 250px;
  text-align: center;
}
.contact-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .nav {
    padding: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero {
    padding: 6rem 2rem;
    text-align: center;
    flex-direction: column-reverse;
  }
  .hero-profile-pic {
    height: 15rem;
    margin-bottom: 1rem;
  }
  .container {
    padding: 0 1rem;
  }
  .project-highlights {
    grid-template-columns: 1fr;
  }
  .exp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .experience-list {
    flex-direction: column;
  }
  .credentials {
    grid-template-columns: 1fr;
  }
  .contact-links {
    padding: 0 1rem;
  }
  .contact-link {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .project-highlight,
  .experience-item,
  .education,
  .awards {
    padding: 1.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}
