* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0a0a0a;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.contact-wrapper {
  width: 90%;
  max-width: 1000px;
  text-align: center;
  position: relative;
}

/* Header Section */
.header-text {
  position: relative;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Light faded background text */
.header-text::before {
  content: "CONTACT";
  letter-spacing: 10px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  text-transform: uppercase;
  z-index: -1;
}

/* Highlighted text */
.highlight {
  color: #ffc107;
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
}

/* Contact Container */
.contact-container {
  display: flex;
  gap: 2rem;
  max-width: 1000px;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 1rem;
  position: relative;
}

.contact-info {
  width: 40%;
  text-align: left;
}

.contact-info h2 {
  color: #ffc107;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 1rem;
}
.contact-info a {
  font-size: 15px;
  color: #ccc;
  text-decoration: none;
}
.contact-info a:hover {
  color: aliceblue;
}
.contact-info div {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.contact-info i {
  margin-right: 10px;
  color: #ffc107;
  font-size: 1.5rem;
  padding: 5px;
}

form {
  width: 60%;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
  background: #222;
  color: white;
}

textarea {
  height: 200px;
}
/* Button Styling */
.send-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 17px;
  font-size: 17px;
  font-weight: bold;
  color: white;
  background: transparent;
  border: 2px solid #ffc107;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* Icon Side Circle */
.send-btn .icon {
  color: white;
  padding: 1px;
  border-radius: 50%;
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

/* Hover Effects */
.send-btn:hover {
  background: #ffc107;
  color: black;
}

.send-btn:hover .icon {
  color: black;
}
/* Responsive Design */
@media (max-width: 1024px) {
  .header-text {
    font-size: 2.8rem;
  }

  .header-text::before {
    font-size: 4.5rem;
  }
  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
  }
  .contact-info,
  form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-text {
    display: none;
  }
  .contact-container {
    padding: 2rem;
  }
  textarea {
    height: 150px;
  }
  .send-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-text {
    display: none;
  }
  .contact-container {
    padding: 0.5rem;
  }
  .send-btn {
    font-size: 15px;
  }
}
