.contact-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 10vh;
  padding: 40px;
  background: linear-gradient(135deg, #263d48, #000);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-form-wrapper {
  width: 50%;
  padding: 20px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #f0f0f0;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 5px 20px rgba(0, 255, 204, 0.5);
  animation: glow 1.5s infinite alternate;
}

.form-group {
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  box-shadow: 0 5px 15px rgba(0, 255, 204, 0.1);
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border: 1px solid #00ffcc;
  box-shadow: 0 10px 20px rgba(0, 255, 204, 0.4);
}

textarea {
  height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #00ffcc, #00ffcc);
  color: #000;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #000, #000);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
  color: #fff;
}

.contact-info {
  width: 40%;
  padding: 20px;
  text-align: center;
  color: #dcdcdc;
}

.contact-info h3 {
  color: #00ffcc;
  margin-bottom: 15px;
  font-size: 1.6rem;
  text-transform: capitalize;
}

.contact-info p {
  color: #dcdcdc;
}

.social-media {
  margin-top: 20px;
}

.social-icon {
  font-size: 1.5em;
  color: #dcdcdc;
  margin-right: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #00ffcc;
  transform: translateY(-5px);
}

@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px;
  }

  .contact-form-wrapper, .contact-info {
    width: 100%;
    padding: 10px;
  }
  
  input, textarea {
    width: 95%;
    padding: 10px;
  }

  h2 {
    font-size: 2rem;
  }
}
