/* ---------- General Styling ---------- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #333;
}

/* ---------- Header ---------- */
header {
  background: #2c3e50;
  color: white;
  padding: 15px;
  text-align: center;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  transition: all 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
  background: #e67e22;
  border-radius: 5px;
}

/* ---------- Main Content ---------- */
main {
  padding: 20px;
  text-align: center;
}

.intro img {
  width: 150px;
  border-radius: 50%;
  margin: 15px 0;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background: #3498db;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
}

button:hover {
  background: #2980b9;
}

/* ---------- Resume & Bio ---------- */
h2 {
  color: #2c3e50;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

ul {
  text-align: left;
  display: inline-block;
  margin: 10px auto;
}

section {
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ---------- Table (Bio Data) ---------- */
table {
  border-collapse: collapse;
  width: 70%;
  margin: 20px auto;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

th, td {
  border: 1px solid #333;
  padding: 10px;
  text-align: left;
}

th {
  background: #2c3e50;
  color: white;
}

/* ---------- Footer ---------- */
footer {
  background: #2c3e50;
  color: white;
  padding: 10px;
  text-align: center;
  margin-top: 20px;
}

.intro img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #2c3e50;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

