

/* ============================
   Body & Background
============================ */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f172a;
  overflow-x: hidden;
  color: #e5e7eb;
}

#network-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ============================
   Header (Responsive like About Me)
============================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #101112;
  position: relative;
  flex-wrap: wrap;
  z-index: 999;
}

header .logo { height: 105px; }

/* Logo Style */
.logo {
  animation: floatLogo 3s ease-in-out infinite;
}

/* Up-Down Animation */
@keyframes floatLogo {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

header nav {
  display: flex;
  gap: 30px;
}

header nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

header nav a:hover { color: #22c55e; }

.menu-toggle { display: none; }

/* ============================
   Contact Form
============================ */
.contact-container {
  max-width: 600px;
  margin: 120px auto 50px auto;
  background: rgba(16,17,18,0.85);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  color: #e5e7eb;
}

.contact-container h2 {
  text-align: center;
  color: #22c55e;
  margin-bottom: 30px;
  font-size: 28px;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-container input,
.contact-container textarea,
.contact-container select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #101112;
  color: #e5e7eb;
  font-size: 16px;
}

.contact-container input:focus,
.contact-container textarea:focus,
.contact-container select:focus {
  outline: none;
  border-color: #22c55e;
}

.contact-container button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #22c55e;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-container button:hover { background: #16a34a; }

.small-btn {
  display: block;
  width: fit-content;
  padding: 10px 20px;
  background: linear-gradient(45deg,#00e0ff,#22c55e);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.4s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  font-size: 14px;
  margin: 15px auto 0 auto;
  text-align: center;
}

.small-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* ============================
   Footer & Social
============================ */
footer {
  background: #101112;
  color: #e5e7eb;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer a { color: #22c55e; text-decoration: none; }

.social-icons {
  padding-right: 80px;
}

.social-icons a {
  color: #e5e7eb;
  margin: 0 12px;
  font-size: 24px;
  transition: 0.3s;
}

.social-icons a:hover { color: #22c55e; }


/* ============================
   Responsive
============================ */
@media (max-width: 768px) {
  .contact-container {
    margin: 100px 20px 50px 20px;
    padding: 30px;
  }

  header {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
  }

  header nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  footer {
    justify-content: center;
    gap: 15px;
    text-align: center;
  }

  .social-icons {
    padding-right: 0;
    margin-bottom: 70px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}