.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
nav h1{
  text-align: left;
  
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #A9DAE8;
  color: #41e90e;
}

header {
  background: #141413;
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  margin: 0.5rem 0 1rem 0;
  font-size: 1.2rem;
}

nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

nav a:hover {
  color: #ff9800;
}

section {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h2 {
  color: #ff9800;
  margin-top: 0;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.project {
  flex: 1 1 250px;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.project h3 {
  margin-top: 0;
}

.project a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #ff9800;
  text-decoration: none;
  font-weight: bold;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background: #ff9800;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

button:hover {
  background: #e68900;
}

footer {
  text-align: center;
  padding: 1rem 0;
  background: #222;
  color: #fff;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.persnal{
  text-align: center
}