/* Navbar */
header {
  width: 100%;
  background: #111;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00adb5;
}


/* Contact Page */
.contact {
  padding: 120px 20px 60px;
  background: #f9f9f9;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: auto;
}

.contact-container h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #111;
}

.contact-container p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  background: #00adb5;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #007a7e;
}

.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-links a {
  text-decoration: none;
  color: #00adb5;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #007a7e;
}

/* Active link */
.nav-links .active {
  color: #00adb5;
}
