
/* Contact Section */
.contact {
  background-color: #000; /* black background */
  color: white;
  border-radius: 10px;
}

.contact h2 {
  text-align: center;
  color: white;
}

.contact-address {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

/* Contact Info Styling */
.contact-info {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #ccc;
}

.contact-info p {
  margin: 0.3rem 0;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 600px;
  margin: 2rem auto;
  background-color: #111; /* slightly lighter than black */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1abc9c;
  box-shadow: 0 0 8px rgba(26, 188, 156, 0.4);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 0.9rem 1.5rem;
  background-color: #1abc9c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0e0e52;
}
