* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: -0.6px;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #1b2631 0%, #3f4e4f 50%, #a5c8d6 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("bg.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.9;
  z-index: -1;
}

.business-card {
  background: #f0f4f8;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(27, 38, 49, 0.25);
  text-align: center;
  max-width: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px rgba(27, 38, 49, 0.35);
}

.business-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3f4e4f, #a5c8d6);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b2631, #3f4e4f);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: white;
  box-shadow: 0 10px 30px rgba(27, 38, 49, 0.4);
}

.name {
  font-size: 28px;
  font-weight: 700;
  color: #1b2631;
  margin-bottom: 8px;
}

.title {
  font-size: 18px;
  color: #3f4e4f;
  font-weight: 500;
  margin-bottom: 8px;
}

.experience {
  font-size: 14px;
  color: #a5c8d6;
  font-weight: 400;
  margin-bottom: 20px;
  font-style: bold;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3f4e4f, #a5c8d6);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #3f4e4f;
  font-size: 16px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: #a5c8d6;
}

.contact-text {
  font-weight: 400;
}

.phone-link {
  color: #3f4e4f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #1b2631;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #d9e4e0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #f0f4f8;
}

.social-link:hover {
  background: #3f4e4f;
  border-color: #1b2631;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: #666;
  transition: fill 0.3s ease;
}

.social-link:hover svg {
  fill: white;
}

.resume-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1b2631, #3f4e4f);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(63, 78, 79, 0.3);
}

.resume-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 38, 49, 0.4);
  background: linear-gradient(135deg, #1b2631, #3f4e4f);
}

.resume-button svg {
  width: 16px;
  height: 16px;
  fill: white;
}

@media (max-width: 480px) {
  .business-card {
    padding: 30px 25px;
    margin: 10px;
  }

  .avatar {
    width: 100px;
    height: 100px;
    font-size: 40px;
    margin-bottom: 25px;
  }

  .name {
    font-size: 24px;
  }

  .title {
    font-size: 16px;
  }

  .contact-item {
    font-size: 14px;
  }
}
