@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

body {
  font-family: "Inter", sans-serif;
  background: #F8F7F4;
  color: #161616;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
}

h1 {
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
  font-size: 2rem;
}

p {
  color: #666A73;
  max-width: 620px;
}

.container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 40px;
  transition: 0.35s ease;
  font-weight: 600;
}

.btn-primary {
  background: #6E7DFF;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-glass {
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #161616;
}

.logo span {
  color: #6E7DFF;
}

.nav-menu {
  display: flex;
  gap: 48px;
  align-items: center;
}

.nav-link {
  position: relative;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #6E7DFF;
  transition: 0.35s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #6E7DFF;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #161616;
  transition: 0.35s;
}

&::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.hero {
  min-height: calc(100vh - 0px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #F8F7F4, rgb(235, 237.2535211268, 255));
}
.hero__container {
  width: min(1280px, 90%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  padding: 0.7rem 1.4rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #6E7DFF;
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
  color: #161616;
  font-weight: 800;
}
.hero__title span {
  display: block;
  background: linear-gradient(90deg, #6E7DFF, #B8C0FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__description {
  margin-top: 1.8rem;
  max-width: 500px;
  color: #666A73;
  font-size: 1.1rem;
  line-height: 1.7;
}
.hero__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero__buttons .btn {
  padding: 1rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.35s ease;
}
.hero__buttons .btn:hover {
  transform: translateY(-5px);
}
.hero__buttons .btn--primary {
  background: #6E7DFF;
  color: white;
  box-shadow: 0 20px 40px rgba(110, 125, 255, 0.25);
}
.hero__buttons .btn--glass {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  border: 1px solid #E7E7E7;
  color: #161616;
}
.hero__visual {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.15;
}

.glass-card {
  width: 330px;
  height: 420px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 40px 80px rgba(180, 120, 200, 0.25);
}
.glass-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.glass-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.8) 50%, transparent 80%);
  transform: translateX(-180%) skewX(-20deg);
  pointer-events: none;
}

.tech {
  position: absolute;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  border: 1px solid white;
  font-weight: 700;
  color: #555;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech--js {
  top: 80px;
  right: 80px;
}

.tech--gsap {
  bottom: 120px;
  right: 40px;
}

.tech--ai {
  top: 220px;
  left: 20px;
}

.tech--css {
  bottom: 80px;
  left: 80px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}

.blob--one {
  width: 420px;
  height: 420px;
  background: #ffd6e8;
  top: -120px;
  left: -100px;
  animation: blobOne 26s ease-in-out infinite alternate;
}

.blob--two {
  width: 360px;
  height: 360px;
  background: #cdb4ff;
  top: 120px;
  right: -120px;
  animation: blobTwo 30s ease-in-out infinite alternate;
}

.blob--three {
  width: 320px;
  height: 320px;
  background: #a0e7e5;
  bottom: -120px;
  left: 45%;
  animation: blobThree 24s ease-in-out infinite alternate;
}

@keyframes blobOne {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(70px, 40px) scale(1.15);
  }
}
@keyframes blobTwo {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-80px, 50px) scale(0.9);
  }
}
@keyframes blobThree {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-40px, -70px) scale(1.1);
  }
}
.cursor-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 125, 255, 0.18), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 0;
}

.about {
  padding: 8rem 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-heading__label {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: #6E7DFF;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-heading__title {
  margin-bottom: 1.5rem;
}

.section-heading__text {
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about__story,
.about__skills {
  padding: 2.5rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.skill-tags span {
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.stats__card {
  text-align: center;
  padding: 2.5rem;
}

.stats__card h3 {
  font-size: 3rem;
  color: #6E7DFF;
}

.skills {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.skills::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(110, 125, 255, 0.12);
  filter: blur(110px);
  top: 10%;
  left: -180px;
  animation: blobFloat 12s ease-in-out infinite;
}

.skills::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(157, 196, 255, 0.15);
  filter: blur(100px);
  right: -120px;
  bottom: 0;
  animation: blobFloat 16s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0);
  }
}
.skills-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 4rem;
}

.skills-category {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
}

.skills-category h3 {
  margin-bottom: 1.5rem;
  color: #6E7DFF;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.skill-chip {
  position: relative;
  overflow: hidden;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  cursor: default;
  font-weight: 600;
}

.skill-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-140%);
}

.skill-chip:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.skill-chip:hover::before {
  transition: 0.6s;
  transform: translateX(140%);
}

.skills-category {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
}

.category-accent {
  position: absolute;
  left: 0;
  top: 30px;
  width: 5px;
  height: 55px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #6E7DFF, rgb(186.5, 193.5862068966, 255));
}

.category-description {
  color: #777;
  margin-bottom: 1.8rem;
  line-height: 1.7;
  max-width: 500px;
}

.experience {
  padding: 8rem 0;
  position: relative;
}

.timeline {
  position: relative;
  margin-top: 5rem;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(110, 125, 255, 0.25);
}

.timeline__item {
  position: relative;
  margin-bottom: 4rem;
}

.timeline__dot {
  position: absolute;
  left: -3rem;
  top: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6E7DFF;
  box-shadow: 0 0 0 8px rgba(110, 125, 255, 0.12);
}

.timeline__content {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 2rem;
  transition: 0.4s;
}

.timeline__content:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.timeline__year {
  display: inline-block;
  margin-bottom: 1rem;
  color: #6E7DFF;
  font-weight: 700;
}

.timeline__content h3 {
  margin-bottom: 0.4rem;
}

.timeline__content h4 {
  color: #666A73;
  margin-bottom: 1rem;
  font-weight: 500;
}

.timeline__content p {
  line-height: 1.8;
  color: #666A73;
}

.timeline__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.timeline__tags span {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
}

.education {
  position: relative;
  padding: 100px 0;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.glass-card-ed {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  overflow: hidden;
  transition: 0.4s ease;
}
.glass-card-ed::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 126, 182, 0.35), transparent);
  top: -40px;
  right: -40px;
  filter: blur(20px);
}
.glass-card-ed:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(255, 126, 182, 0.18);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
}

.glass-card-ed h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.glass-card-ed h4 {
  color: #6E7DFF;
  margin-bottom: 15px;
}

.date {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 126, 182, 0.15);
  margin-bottom: 25px;
}

.glass-card-ed ul {
  list-style: none;
  padding: 0;
}

.glass-card-ed li {
  margin-bottom: 12px;
  color: #161616;
}

.cert-list li::before {
  content: "✦";
  color: #6E7DFF;
  margin-right: 10px;
}

.languages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.languages span {
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/*# sourceMappingURL=main.css.map */
