
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: black;
  overflow: hidden;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
html, body {
  height: 100%;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 48px; /* or adjust to desired size */
  height: auto;
  display: block;
}


#matrix {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.card {
  position: relative;
   
  z-index: 2;
  background-color: rgba(245, 247, 250, 0.95);
  border-radius: 20px;
  max-width: 360px;
  width: 90%;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #111;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}
.card h1, .card p, .card a {
  font-weight: bold;
  text-align: center;
}
.contact-item {
  justify-content: center;
}


.logo {
  height: 60px;
  margin-bottom: 1rem;
}

.profile {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff6224;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.role {
  color: #ff6224;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.company {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 0.9rem;
  color: #333;
  margin: 0.4rem 0;
  gap: 8px;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  fill: #ff6224;
}

.contact-item a {
  color: #1a1a1a;
  text-decoration: none;
}

.vcard-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff6224;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(255, 98, 36, 0.4);
}

@media (max-width: 420px) {
  .card {
    padding: 1.5rem 1rem;
  }

  .profile {
    width: 70px;
    height: 70px;
  }

  h1 {
    font-size: 1.2rem;
  }

  .contact-item {
    font-size: 0.85rem;
  }

  .vcard-btn {
    font-size: 0.9rem;
    padding: 0.8rem 1.6rem;
  }
}
