..fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.profile-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  display: block;
  margin: 0 auto 20px; /* centers horizontally and adds space below */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* optional: adds depth */
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
  background: linear-gradient(135deg, #1e1e2f, #3e3e55);
  color: white;
  font-family: 'Segoe UI', sans-serif;
}
/* Top-right Navbar */
.top-navbar {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 15px;
  z-index: 999;
  background-color: white;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-item {
  text-decoration: none;
  font-weight: bold;
  color: #111;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-item:hover {
  background-color: #f0f0f0;
}

.highlight {
  background: linear-gradient(45deg, #00b4db, #0083b0);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.highlight:hover {
  background: linear-gradient(45deg, #0083b0, #00b4db);
  transform: scale(1.05);
}
