/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: #f4f7fb;
  color: #333;
  line-height: 1.6;
  animation: fadeIn 0.8s ease-in-out;
}

/* Navbar */
.navbar {
  background: #0056b3;
  padding: 15px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.navbar a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #ffcc00;
  transition: width 0.3s;
  margin: auto;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
  color: #ffcc00;
}

/* Footer */
.footer {
  background: #0056b3;
  color: white;
  padding: 15px;
  text-align: center;
  margin-top: 40px;
}

/* Sections */
.about, .section {
  text-align: center;
  padding: 60px 20px;
  animation: slideUp 1s ease-in-out;
}

.about img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0056b3;
  margin-bottom: 20px;
}

.about h1 {
  font-size: 2.2rem;
  color: #0056b3;
  margin-bottom: 10px;
}

.about p, .section p, .section ul {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
}

.section h2 {
  color: #0056b3;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

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

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* List */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
}
