* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f4f4f9;
  line-height: 1.6;
}

/* HERO */
.hero {
  padding: 5em 1em;
  background: linear-gradient(135deg, #1d72b8, #145ea8);
  color: white;
}
.hero h1 {
  font-size: 2.8em;
}
.hero p {
  font-size: 1.3em;
}

/* PROFILE IMG */
.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* SECTIONS */
.section {
  padding: 3em 1.5em;
  background: white;
  border-radius: 10px;
  margin-bottom: 2em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.section:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* PROJECT ITEMS */
.project-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1.5em;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* CONTACT FORM */
form input, form textarea {
  width: 100%;
  padding: 1em;
  margin: 0.6em 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}
form input:focus, form textarea:focus {
  border-color: #1d72b8;
  outline: none;
  box-shadow: 0 0 5px rgba(29,114,184,0.4);
}
form button {
  width: 100%;
  padding: 1em;
  background-color: #1d72b8;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s;
}
form button:hover {
  background-color: #145ea8;
}

/* FOOTER */
footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 1em;
}
