/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: white;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Canvas Background */
#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Home Button */
.home-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 28px;
  text-decoration: none;
  color: #0ff;
  filter: drop-shadow(0 0 10px #0ff);
  transition: transform 0.3s;
}

.home-icon:hover {
  transform: scale(1.2);
}

/* Contact Container */
.contact-container {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  max-width: 500px;
  width: 90%;
  animation: fadeIn 1s ease-in-out;
}

.contact-container h1 {
  font-size: 2.5rem;
  color: #00eaff;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.contact-container .subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 25px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  padding: 12px;
  font-size: 1rem;
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00eaff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.contact-form button {
  background: linear-gradient(135deg, #00eaff, #0088ff);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  color: white;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
  transition: all 0.3s ease-in-out;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 255, 1);
}

/* Social Links */
.social-links {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a img {
  width: 80px;
  height: 70px;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
  transition: transform 0.3s, filter 0.3s;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px;
}

.social-links a img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 1));
}

/* Fade In */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
