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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #333;
}

nav {
  background: #111;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-links a:hover {
  background: #444;
  border-radius: 5px;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

#home {
  text-align: center;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  padding-top: 80px;
}

#home img {
  margin-top: 20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid white;
}

.project-card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.project-card img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.skills-list li {
  background: #0072ff;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
}

/* ✅ Updated form styles */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}
