body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.vcard {
  background-color: #F9F9F6; /* Changed box color */
  max-width: 400px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-align: center;
  color: #222;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00162E; /* Black border */
  background-color: #fff; /* Optional: adds a clean white background behind image */
}

.designation, .department {
  color: #333;
  margin: 5px 0;
}

.contact-info {
  margin: 20px 0;
  text-align: left;
}

.contact-info a {
  color: #002244;
  text-decoration: none;
}

.social {
  margin: 15px 0;
}

.social a {
  margin: 0 10px;
  color: #002244;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.social a:hover {
  color: #000;
}

button {
  background-color: #002244;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #00162e;
}
