@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Poppins:wght@600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  color: #2E2E2E;
  background-image: url('images/brickwall.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.container {
  max-width: 700px;
  margin: 2rem auto;
  background: rgb(255, 255, 255);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  line-height: 1.6;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-pic {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
}

h1, h2 {
  font-family: 'Poppins', sans-serif;
  color: #1F2B50;
}

h1 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.subhead {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.25rem;
}

.project a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.project a:hover {
  text-decoration: underline;
}

.services {
  padding: 0;
  margin: 1rem 0;
}

.services li {
  margin: 0.5rem 0.5rem;
  position: relative;
}

.cta {
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.button {
  display: inline-block;
  background: #007BFF;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1rem;
}

.button:hover {
  background: #0056b3;
}

form {
  display: flex;
  flex-direction: column;

}

.contact-form {
  max-width: 500px;
  margin: 10px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  font-family: sans-serif;
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.contact-form button {
  background-color: #007BFF;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  width: 100%;
}

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