body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 20px;
}
.container {
    background: #fff;
    max-width: 800px;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
img {
    float: right;
    margin-left: 20px;
    border-radius: 10px;
    width: 200px;
}
h1 {
    color: #333;
}
p {
    line-height: 1.6;
    color: #555;
}
.navbar {
  background: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: -20px -20px 30px -20px;
  padding: 0 0 0 0;
  /* border-radius: 0 0 10px 10px; */
  display: flex;
  justify-content: center;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar li {
  margin: 0;
}

.navbar a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 18px 28px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-bottom 0.2s;
  border-bottom: 3px solid transparent;
  letter-spacing: 0.5px;
}

.navbar a:hover,
.navbar a:focus {
  background: #ff9100;
  color: #222;
  border-bottom: 3px solid #ff9100;
}

.navbar a.active {
  color: #ff9100;
  border-bottom: 3px solid #ff9100;
  background: #222;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.contact-list li {
  margin-bottom: 18px;
  font-size: 1.1em;
}

.contact-list a {
  color: #ff9100;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
  word-break: break-all;
}

.contact-list a:hover,
.contact-list a:focus {
  color: #222;
  background: #ff9100;
  border-radius: 5px;
  padding: 2px 6px;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}

.project-card {
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 28px 24px 20px 24px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}

.project-card:hover {
  box-shadow: 0 6px 18px rgba(255,145,0,0.15);
  transform: translateY(-4px) scale(1.03);
}

.project-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3em;
  color: #ff9100;
}

.project-card p {
  color: #555;
  margin-bottom: 18px;
}

.project-link {
  color: #fff;
  background: #ff9100;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  align-self: flex-end;
}

.project-link:hover,
.project-link:focus {
  background: #222;
  color: #ff9100;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}

.experience-item {
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 28px 24px 20px 24px;
  width: 100%;
  max-width: 600px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.experience-item:hover {
  box-shadow: 0 6px 18px rgba(255,145,0,0.15);
  transform: translateY(-4px) scale(1.03);
}

.experience-item h2 {
  margin: 0 0 6px 0;
  color: #ff9100;
  font-size: 1.2em;
}

.experience-item h3 {
  margin: 0 0 4px 0;
  color: #222;
  font-size: 1em;
  font-weight: 500;
}

.exp-date {
  display: block;
  color: #888;
  font-size: 0.95em;
  margin-bottom: 10px;
}

.experience-item p {
  color: #555;
  margin: 0;
}