@charset "utf-8";
/* CSS Document */
     :root {
      --bg-color: #0d0d0d;
      --text-color: #f5f5f5;
      --accent-color: #00ffcc;
      --font-family: 'Poppins', 'Segoe UI', sans-serif;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: var(--bg-color);
      color: var(--text-color);
      font-family: var(--font-family);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
    }

    img.profile {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
      border: 2px solid var(--accent-color);
    }

     h1 {
font-size: 1.8rem;
margin-bottom: 0.3rem;
color: #ffffff;
text-align: center;
font-size: 2em;
transition: all 0.3s ease-in-out;
text-shadow: 0 0 4px rgba(0, 255, 223, 0); /* no glow initially */
}

h1:hover {
  color: #00ffdf;
  text-shadow: 0 0 6px rgba(0, 255, 223, 0.6), 0 0 12px rgba(0, 255, 223, 0.4);
}

    h2 {
      font-weight: 400;
      font-size: 1rem;
      color: #aaa;
      margin-bottom: 2rem;
    }

    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .contact-links a {
      color: var(--accent-color);
      text-decoration: none;
      font-size: 1.1rem;
      transition: color 0.3s ease;
    }

    .contact-links a:hover {
      color: #ffffff;
    }

    footer {
    position: absolute;
    bottom: -125px;
    font-size: 0.8rem;
    color: #666;
    left: 6px;
    }

    /* Larger text and spacing on smaller screens */
    @media (max-width: 600px) {
      img.profile {
        width: 120px;
        height: 120px;
      }
      h1 {
        font-size: 1.6rem;
      }
      h2 {
        font-size: 1.1rem;
      }
      .contact-links a {
        font-size: 1.2rem;
      }
      footer {
        font-size: 0.9rem;
      }
    }
  .contact-links1 {      display: flex;
      flex-direction: column;
      gap: 0.8rem;
}
  .contact-links2 {      display: flex;
      flex-direction: column;
      gap: 0.8rem;
}
  .contact-links3 {      display: flex;
      flex-direction: column;
      gap: 0.8rem;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  width: 90%;
  max-width: 400px;
}

form input, form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #333;
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: inherit;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

button {
  background-color: var(--accent-color);
  color: var(--bg-color);
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.8;
}
#formMessage {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  color: #aaa;
  font-size: 0.9rem;
}
button, input, textarea {
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

button {
  margin-top: 1rem;
  background-color: #00ffcc;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover, button:focus {
  background-color: #00e6b8;
  outline: none;
}
form {
  max-width: 500px;
  margin: 0 auto;
}
}