
html {
  scroll-behavior: smooth;
}


/* Nav bar section */
.active-link {
  color: #2563eb; /* Tailwind blue-600 */
  font-weight: 600;
  border-bottom: 2px solid #2563eb;
}
/* Contact section */
.contact {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #2980b9;
}


