html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a192f;
  color: #ccd6f6;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background-color: #112240;
  text-align: center;
  padding: 80px 20px 40px 20px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
}

.profile-img {
  width: 160px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #601596;
  margin-bottom: 20px;
}

.sidebar h2 {
  margin: 10px 0 5px;
  color: #ccd6f6;
}

.role {
  color: #64ffda;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar nav ul li {
  margin: 15px 0;
}

.sidebar nav ul li a {
  color: #ccd6f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sidebar nav ul li a:hover,
.sidebar nav ul li a.active {
  color: #64ffda;
  text-shadow: 0 0 8px #8a2be2, 0 0 12px #8a2be2, 0 0 18px #8a2be2;
  transition: all 0.3s ease;
}


/* Main Content */
.intro {
  margin-left: 280px;
  padding: 120px 60px;
  text-align: left;
}

.intro span {
  color: #64ffda;
}

.intro ul {
  margin-top: 20px;
}

.intro ul li {
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: #112240;
  text-align: center;
  padding: 15px;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-left: 280px;
}

html {
  scroll-behavior: smooth;
}

body {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 5px #8a2be2, 0 0 10px #8a2be2; }
  50% { text-shadow: 0 0 15px #8a2be2, 0 0 25px #8a2be2; }
  100% { text-shadow: 0 0 5px #8a2be2, 0 0 10px #8a2be2; }
}

.sidebar nav ul li a:hover {
  animation: glowPulse 1.5s infinite alternate;
}
