body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
  overflow-x: hidden;
}

.background-pattern {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(#272727 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
  opacity: 0.1;
}

header {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 1.5s ease-in;
}

.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffffff30;
  box-shadow: 0 0 20px #6effe0;
  transition: transform 0.4s ease;
}
.profile-pic:hover {
  transform: scale(1.05);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-top: 1rem;
  color: #6effe0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border: 2px solid #6effe0;
  border-radius: 25px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #6effe0;
  color: #000000;
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background: linear-gradient(115deg, #1f1f1f, #151515, #0d0d0d);
  background-size: 600% 600%;
  animation: gradientFlow 30s ease infinite;
  opacity: 0.6;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.edu-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.8;
  animation: fadeIn 1.5s ease-in;
}

.edu-section h2 {
  font-family: 'Playfair Display', serif;
  color: #6effe0;
  margin-top: 2rem;
}

.edu-section p {
  font-size: 1rem;
  color: #e0e0e0;
}

.edu-image-block {
  text-align: center;
  margin: 2rem 0;
}

.edu-img {
  max-width: 90%;
  height: auto;
  border: 3px solid white;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.edu-caption {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-style: italic;
}
