/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #111;
  color: #eee;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: #f8c046;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffea85;
}

/* Navbar */
.navbar {
  background-color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li {
  font-weight: 600;
  font-size: 1.1rem;
}

/* About Us Section */
.about-us {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.about-us h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f8c046;
  text-shadow: 0 0 8px #f8c046;
}

.about-us p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
}

.project-item {
  background: #222;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(248, 192, 70, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* this centers all text inside */
}


.contact-us{
  background: #222;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(248, 192, 70, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* this centers all text inside */
}

.form
  display: block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: #f8c046;
}

form input,
form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.5rem;
  border: 1px solid #444;
  border-radius: 6px;
  background: #222;
  color: #eee;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #f8c046;
  box-shadow: 0 0 6px #f8c046;
}

form button {
  margin-top: 2rem;
  padding: 0.75rem;
  background: #f8c046;
  border: none;
  border-radius: 6px;
  color: #111;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background: #ffea85;
}
