/* styles the whole html element and applies global stylyng of page */
:root {
  --navy-blue: #0a192f;
  --royal-purple: #6a4c93;
  --light-purple: #8a6bb3;
  --soft-white: #f8f9fa;
  --accent-blue: #4a6fa5;
  --turquoise: #2a9d8f;
  --accent-pink: #ff6b6b;
  --radiant-violet:#bc3fde;
  --purple:#8c52ff;
}
/*Background Video Styling */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80vh;
 object-fit: cover;
  z-index: -999; /* Ensure it's behind all content */
  pointer-events: none; /* Prevent it from capturing clicks */
}

/* Header styles */
.header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video styling */

.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
  z-index: -2;
}
/* Content inside header */
.profile-container {
  position: relative;
  z-index: 1;
}

/* Optional: overlay to darken the image for better contrast */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* black overlay with 40% opacity */
  z-index: 0;
}

.profile-container {
  position: relative;
  z-index: 1; /* ensures content sits above overlay */
}

.project-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: navy;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: #ccc;
  text-decoration: underline;
}

.project-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 0.5rem;
}

.project-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.project-thumbnail {
  width: 100%;
  height: 40;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-thumbnail {
  aspect-ratio: 16/8;
  object-fit: cover;
}
.project-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.tech-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.tech-link:hover {
  color: #4a6fa5;
  text-decoration: underline;
}

/* Container */
.zigzag-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Zigzag Items */
.zigzag-item {
  position: relative;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  width: fit-content;
  max-width: 80%;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  opacity: 0; /* Start hidden */
  transform: translateY(50px); /* Start lower for scroll-in effect */
}

/* Alternating left/right alignment */
.zigzag-item:nth-child(odd) {
  align-self: flex-start;
  background-color: #6a4c93; /* Purple */
}

.zigzag-item:nth-child(even) {
  align-self: flex-end;
  background-color: #2a9d8f; /* Teal */
}

/* Additional color variety */
.zigzag-item:nth-child(3n) {
  background-color: #e76f51; /* Coral */
}
.zigzag-item:nth-child(4n) {
  background-color: #f4a261; /* Orange */
}
.zigzag-item:nth-child(5n) {
  background-color: #264653; /* Dark green */
}

/* Vertical connector lines */
.zigzag-item::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 60px;
  background-color: #ccc;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.zigzag-item:first-child::before {
  display: none; /* No line for first item */
}

/* Scroll animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Cloud Background */
.cloud-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: linear-gradient(to bottom, var(--navy-blue), #1c2541);
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.2;
  animation: floatCloud 30s linear infinite;
}

.cloud:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.cloud:nth-child(2) {
  width: 250px;
  height: 250px;
  top: 30%;
  left: -30%;
  animation-delay: 10s;
}

.cloud:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 60%;
  left: -25%;
  animation-delay: 5s;
}

/*Styles the whole body of html not the head nor footer*/
body {
  padding: 2rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--navy-blue), var(--royal-purple));
  color: var(--soft-white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  animation: infinite;
}
.introduction {
  left: 0;
  display: inline;
}
/* Accessibility Bar */
.accessibility-bar {
  position: fixed; /* Stay at top */
  top: 0;
  left: 0;
  width: 100%;
  background-color: plum;
  /* Slightly more accessible contrast */
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  z-index: 1000; /* Stay above all content */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px); /* frosted effect */
}

.accessibility-bar button {
  background-color: var(--accent-blue);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

.accessibility-bar button:hover {
  background-color: var(--light-purple);
  transform: translateY(-2px);
}

/* Accessibility: Keyboard focus style */
.accessibility-bar button:focus {
  outline: 2px solid var(--accent-pink);
  outline-offset: 3px;
}

/* Responsive support for smaller screens */
@media (max-width: 600px) {
  .accessibility-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .accessibility-bar button {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* Header Styles */
.header {
  display: flex;
 
  background-image: url('hero.jpg'); /* Replace with actual path */
  background-size: cover;
  background-position: center;
  height: 600px; /* Adjust height as needed */
  width: 100%;

  align-items: center;
  padding: 20px 5%;
  position: relative;
}

.profile-text {
  flex: 1;
  text-align: left;
  padding-right: 2rem;
  animation: slideFadeIn 1.5s ease-out forwards;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.contact-info {
  margin-top: 1rem;
  font-size: 120%;
  color: #333;
  line-height: 1.6;
}

.contact-info a {
  color: #0a192f;
  text-decoration: none;
  pointer-events: auto;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #8e6bbf;
}
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.profile-container {
  gap: 5rem;
  order: 8;
  margin: 1rem 0;
  position: relative;
  display: flex;
  z-index: 1;
  perspective: 1000px;
  filter: drop-shadow(0 20px 30px rgba(106, 76, 147, 0.3));
  margin-top: 5%;
  margin-bottom: 0;
  justify-content: center;
}

.profile-photo-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 12px rgba(255, 255, 255, 0.05), 0 0 0 20px rgba(106, 76, 147, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  animation: float 8s ease-in-out infinite, pulse-glow 12s ease-in-out infinite,
    rotate-hue 24s linear infinite;
   
}

.profile-photo-wrapper::before,
.profile-photo-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
h1 {
  text-align:left;
  text-decoration: wavy;
}
.profile-photo-wrapper::before {
  inset: -15px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(106, 76, 147, 0.8) 0%,
    rgba(10, 25, 47, 0.6) 30%,
    transparent 50%,
    rgba(106, 76, 147, 0.4) 70%,
    rgba(106, 76, 147, 0.8) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.8s ease, transform 1s linear;
  animation: rotate 58s linear infinite reverse;
}

.profile-photo-wrapper::after {
  inset: -5px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 60%
  );
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.profile-photo-wrapper:hover {
  transform: scale(1.1) rotateY(15deg) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(106, 76, 147, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.2), 0 0 0 15px rgba(255, 255, 255, 0.1),
    0 0 0 25px rgba(106, 76, 147, 0.1);
}

.profile-photo-wrapper:hover::before {
  opacity: 0.8;
  transform: scale(1.05);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(115%) brightness(1);
  transition: all 0.8s ease;
  transform-origin: center center;
 
}

.profile-photo-wrapper:hover .profile-photo {
  filter: grayscale(0%) contrast(125%) brightness(1.1);
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 10;
  left: 10;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 75% 30%,

      transparent 40%
    ),
    linear-gradient(
      to bottom right,
      rgba(10, 25, 47, 0.6),
      rgba(106, 76, 147, 0.3)
    );
  mix-blend-mode: soft-light;
  opacity: 0.8;
  transition: all 0.8s ease;

}

.profile-photo-wrapper:hover .photo-overlay {
  opacity: 0.6;
  background: radial-gradient(
      circle at 25% 70%,

      transparent 50%
    ),
    linear-gradient(to top left, rgba(10, 25, 47, 0.7), rgba(106, 76, 147, 0.4));
}


/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotateY(0);
  }
  50% {
    transform: translateY(-15px) rotateY(5deg);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 15px 45px rgba(106, 76, 147, 0.6);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-hue {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background-color: #fff;
  border-radius: 50%;
  animation: bubble-float linear infinite;

  opacity: 0;
}

@keyframes bubble-float {
  0% {
    transform: translateY(0) translateX(0) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  50% {
    transform: translateX(var(--x-movement));
  }
  100% {
    transform: translateY(-100vh) translateX(0) scale(1.2);
    opacity: 0;
  }
}

/* Create 30 unique bubbles with different properties */
.bubble:nth-child(1) {
  left: 10%;
  width: 8px;
  height: 8px;
  animation-duration: 12s;
  animation-delay: 0s;
  --x-movement: 5px;
}
.bubble:nth-child(2) {
  left: 25%;
  width: 12px;
  height: 12px;
  animation-duration: 14s;
  animation-delay: 1s;
  --x-movement: -3px;
}
.bubble:nth-child(3) {
  left: 40%;
  width: 15px;
  height: 15px;
  animation-duration: 10s;
  animation-delay: 2s;
  --x-movement: 8px;
}
.bubble:nth-child(4) {
  left: 55%;
  width: 10px;
  height: 10px;
  animation-duration: 16s;
  animation-delay: 3s;
  --x-movement: -5px;
}
.bubble:nth-child(5) {
  left: 70%;
  width: 18px;
  height: 18px;
  animation-duration: 9s;
  animation-delay: 4s;
  --x-movement: 2px;
}
.bubble:nth-child(6) {
  left: 85%;
  width: 6px;
  height: 6px;
  animation-duration: 13s;
  animation-delay: 5s;
  --x-movement: -7px;
}
/* Continue this pattern up to :nth-child(30) */
.bubble:nth-child(7) {
  left: 15%;
  width: 14px;
  height: 14px;
  animation-duration: 11s;
  animation-delay: 6s;
  --x-movement: 4px;
}
.bubble:nth-child(8) {
  left: 30%;
  width: 9px;
  height: 9px;
  animation-duration: 15s;
  animation-delay: 7s;
  --x-movement: -2px;
}
.bubble:nth-child(9) {
  left: 45%;
  width: 16px;
  height: 16px;
  animation-duration: 8s;
  animation-delay: 8s;
  --x-movement: 6px;
}
.bubble:nth-child(10) {
  left: 60%;
  width: 11px;
  height: 11px;
  animation-duration: 17s;
  animation-delay: 9s;
  --x-movement: -4px;
}
/* Continue adding more bubbles... */
/* Particle effect on hover */
.profile-photo-wrapper:hover {
  animation-play-state: paused;
}

.profile-container::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(
    circle at center,
    rgba(106, 76, 147, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.profile-container:hover::after {
  opacity: 1;
}
/* Navigation */
.nav ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; /* Allows wrapping on small screens */
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:(magenta);
  z-index: 1000;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
  }
}

.nav-link {
  color: var(--soft-white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-pink);
  transition: width 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

/* Main Content */
main {
  padding: 20px 5%;
}

:root {
  --soft-white: #f8f9fa;
  --navy-blue: #0a192f;
}

/* Cloud-Like Section */
.section {
  position: relative;
  background-color: var(--purple);
  margin: 80px auto;
  padding: 40px;
  border-radius: 40px;
  max-width: 900px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}

/* Cloud puffs */
.section::before,
.section::after {
  content: "";
  position: absolute;
  background-color: var(--accent-pink--);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.8;
}

.section::before {
  width: 200px;
  height: 200px;
  top: -80px;
  left: -60px;
}

.section::after {
  width: 150px;
  height: 150px;
  bottom: -60px;
  right: -50px;
}

/* Fade-in when visible */
.section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Skills Section */
.skills-container {
  display: flex;
  justify-content: center;
}

.pie-chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

.pie-chart {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: relative;
  margin: 20px 0;
  background: conic-gradient(
    #4a6fa5 0% 30%,
    #6d5b93 30% 55%,
    #3a7ca5 55% 75%,
    #7b8cde 75% 90%,
    #4d648d 90% 100%
  );
}

.pie-center {
  position: absolute;
  width: 50%;
  height: 50%;
  background-color: var(--navy-blue);
  border-radius: 50%;
  top: 25%;
  left: 25%;
}

.pie-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.legend-color {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  margin-right: 8px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--accent-pink),
    var(--light-purple)
  );
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-pink);
  border: 3px solid var(--light-purple);
}

.timeline-date {
  font-weight: bold;
  color: var(--accent-pink);
  margin-bottom: 5px;
}

.timeline-content {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 20px;
  border-left: 3px solid var(--accent-pink);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 30px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card h3 {
  color: var(--soft-white);
  margin-top: 0;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
background-color: #0a192f;

.project-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--light-purple);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.project-link:hover {
  color: var(--accent-pink);
  transform: translateX(5px);
}

/* Interests Grid */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.interest-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.interest-card h3 {
  color: var(--soft-white);
  margin-top: 0;
}

.interest-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.contact-card {
  max-width: 600px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft-white);
}

.contact-card h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--soft-white);
  letter-spacing: 1px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 500%;
}

.form-group {
  display: inline-block;
  flex-direction: column;
}

.form-group label {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--light-purple);
}

.form-group input,
.form-group textarea {
  padding: 30px 80px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--soft-white);
  font-size: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border: 1px solid var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
}

/* Button */
.btn {
  align-self: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent-pink), var(--light-purple));
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

/
.footer {
  width: 100vw; /* full viewport width */
  max-width: 100%;
  text-align: center;
  padding: 30px 0;
  background-color: rgba(15, 12, 12, 0.2);
  margin: 40px 0 0; /* better flow */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 50%;
}


.social-link{
  display: flex;
  justify-content: center;
  gap: 200px;
  margin-bottom: 20px;
}

.social-link {
  color: var(--navy-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
}

.social-link:hover {
  color: var(--accent-pink);
  background-color: rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 10px;
  opacity: 0.8;
  

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-container {
    order: 0;
    margin-bottom: 20px;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
  }

  .pie-chart-container {
    flex-direction: column;
  }

  .pie-legend {
    flex-direction: column;
    align-items: flex-start;
  }
}



.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link {
  color: var(--soft-white);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
}

.social-link:hover {
  color: var(--accent-pink);
  background-color: rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 10px;
  opacity: 0.8;
}
