/* styles.css */
body {
  margin: 0;
  font-family: Arial;
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #222;
  color: white;
  position: sticky;
  top: 0;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.project-card {
  background: #f4f4f4;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  transition: 0.3s;
}

.project-card:hover {
  transform: scale(1.05);
}

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

@media(max-width:600px) {
  header {
    flex-direction: column;
    text-align: center;
  }
}

/* Contact Section */
#contact {
  background: #f9fafb;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-container p {
  color: #555;
  margin-bottom: 30px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
}

.input-group {
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #4f46e5;
  outline: none;
  box-shadow: 0 0 5px rgba(79, 70, 229, 0.3);
}

/* Button */
button {
  background: #4f46e5;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #4338ca;
}
