body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0b0c10;
  color: #ffffff;
  scroll-behavior: smooth;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1f2833;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 24px;
  color: #66fcf1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #c5c6c7;
  transition: color 0.3s;
}

nav a.active,
nav a:hover {
  color: #66fcf1;
}

/* Section */
.section {
  padding: 60px 20px;
  max-width: 700px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  color: #66fcf1;
  text-align: center;
  margin-bottom: 15px;
}

.section-intro {
  text-align: center;
  color: #c5c6c7;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  font-size: 15px;
  background: #1f2833;
  border: 1px solid #45a29e;
  border-radius: 6px;
  color: #fff;
  outline: none;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 14px;
  color: #c5c6c7;
  transition: 0.3s;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -12px;
  left: 10px;
  font-size: 12px;
  color: #66fcf1;
  background: #0b0c10;
  padding: 0 4px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  padding: 14px;
  background-color: #66fcf1;
  color: #0b0c10;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a29e;
}

/* Form status */
#formStatus {
  font-size: 14px;
  margin-top: -10px;
  text-align: center;
}

/* Social Icons */
.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icons a {
  color: #c5c6c7;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #66fcf1;
}

/* Footer */
.footer-container {
  background-color: #1f2833;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
