/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background: #333;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

header h1 {
  margin-top: 10px;
}

header p {
  margin-bottom: 15px;
  font-size: 18px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ff9800;
}

/* Profile Picture */
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #fff;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h1, h2 {
  margin-bottom: 20px;
  text-align: center;
}

/* Skills & Projects */
.skills, .projects {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
}

/* Contact */
.contact a {
  display: inline-block;
  margin: 10px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  color: #ff9800;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #333;
  color: #fff;
  margin-top: 40px;
}
