* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}






/* --- Modern Bottom Menu Styles --- */
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: none;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  box-shadow: none;
}

/* Hide the default cursor */
body {
  cursor: none;
}

/* Custom purple circular cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: black;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}


.bottom-menu {
  display: flex;
  gap: 0.5rem;
  background: #23232b;
  border-radius: 2rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
  padding: 0.4rem 1.2rem 0.4rem 1.2rem;
  margin: 1.2rem 0;
  pointer-events: auto;
  min-width: 320px;
  max-width: 95vw;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.1rem;
  border-radius: 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #bdbdbd;
  background: none;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.menu-item .menu-icon {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.menu-item.active,
.menu-item:hover {
  color: #fff;
  background: linear-gradient(90deg, #7f5af0 0%, #2cb67d 100%);
  box-shadow: 0 2px 12px 0 rgba(127,90,240,0.10);
  transform: translateY(-2px) scale(1.07);
}

.menu-item.menu-resume {
  background: #7f5af0;
  color: #fff;
  font-weight: 600;
  margin-left: 0.5rem;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.menu-item.menu-resume:hover {
  background: #2cb67d;
  color: #fff;
}

.menu-label {
  display: none;
}

@media (min-width: 500px) {
  .menu-label {
    display: inline;
  }
}

/* --- Profile Image & Subtitle --- */
.profile-image {
  width: 190px;
  height: 190px;
  margin: 2rem auto 1rem auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #222;
  box-shadow: 0 4px 16px rgba(127,90,240,0.18);
  background: #fff;
}
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.subtitle {
  text-align: center;
  margin-left: 20%;
  margin-right: 20%;
  color: #222;
  font-style: bold;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.copyright{
  margin-left:20%;
  margin-right:20%;
  text-align: center;
  color:white;
}

/* --- Main & Section Styling --- */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url("bg.png") no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}
main {
  flex: 1;
  padding: 2rem 0.5rem 5rem 0.5rem;
  max-width: 700px;
  margin: 0 auto;
}
section {
  margin-bottom: 2.2rem;
  background: #fff8;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(127,90,240,0.06);
  padding: 1.2rem 1.5rem;
}
section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #7f5af0;
  letter-spacing: 0.02em;
  font-weight: 700;
}
section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

/* --- Experience Cards --- */
.experience-section {
  margin-top: 1.5rem;
}
.experience-columns {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.experience-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px 0 rgba(44,182,125,0.08);
  padding: 1.1rem 1.2rem;
  transition: box-shadow 0.18s, transform 0.18s;
}
.experience-card:hover {
  box-shadow: 0 6px 24px 0 rgba(44,182,125,0.16);
  transform: translateY(-2px) scale(1.03);
}

/* --- Social Media Sidebar --- */
.social-sidebar {
  position: fixed;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 200;
}
.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(127,90,240,0.10);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  border: 2px solid #eee;
}
.social-icon img {
  width: 22px;
  height: 22px;
  filter: grayscale(0.2) brightness(0.7);
  transition: filter 0.18s;
}
.social-icon:hover {
  background: linear-gradient(90deg, #7f5af0 0%, #2cb67d 100%);
  box-shadow: 0 4px 16px 0 rgba(127,90,240,0.18);
  transform: scale(1.12);
  border-color: #7f5af0;
}
.social-icon:hover img {
  filter: none;
}
@media (max-width: 800px) {
  .social-sidebar {
    left: 0.2rem;
    gap: 0.7rem;
  }
  .social-icon {
    width: 32px;
    height: 32px;
  }
  .social-icon img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 600px) {
  .social-sidebar {
    display: none;
  }
}

.contact-form {
  padding: 2rem;
  text-align: center;
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-form p {
  margin-bottom: 2rem;
  color: #222;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* --- Rocket Animation --- */
.rocket-animation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
}
.rocket-wrapper {
  position: relative;
  height: 180px;
  width: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.rocket-img {
  width: 120px;
  height: 120px;
  animation: rocket-up-img 2.2s cubic-bezier(0.4,1.4,0.6,1) 1;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes rocket-up-img {
  0% {
    transform: translateY(120px) scale(0.7);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    transform: translateY(-20px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(-40px) scale(1);
    opacity: 1;
  }
}
/* Shift the text up a bit and keep animation */
.rocket-text {
  margin-top: -0.9rem;
  font-size: 1.5rem;
  color: #111;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: rocket-text-fade 1.2s 2s forwards;
}
@keyframes rocket-text-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2.2rem;
  margin-top: -0.7rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  transition: color 0.2s;
}
.stat-label {
  font-size: 1rem;
  color: #222;
  text-align: center;
  font-weight: 500;
  margin-top: 0.1rem;
}
@media (max-width: 800px) {
  .stats-row {
    gap: 1.2rem;
  }
  .stat-item {
    min-width: 80px;
  }
  .stat-number {
    font-size: 1.3rem;
  }
  .stat-label {
    font-size: 0.9rem;
  }
}
@media (max-width: 600px) {
  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .stat-item {
    min-width: 0;
  }
}



/* --- Responsive --- */
@media (max-width: 600px) {
  .bottom-menu {
    min-width: 220px;
    padding: 0.2rem 0.3rem;
    gap: 0.2rem;
  }
  .menu-item {
    font-size: 0.85rem;
    padding: 0.3rem 0.7rem;
  }
  .profile-image {
    width: 80px;
    height: 80px;
  }
  main {
    padding: 1.2rem 0.2rem 4rem 0.2rem;
  }
  section {
    padding: 0.7rem 0.5rem;
  }
}