* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
  color: #fff;
}

body {
  background-color: #131313;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #131313 100%);
}

.business-card {
  width: 100%;
  max-width: 500px;
  text-align: center;
  
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(134, 242, 135, 0.2);
  
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.business-card:hover {
  transform: translateY(-5px);
  border-color: rgba(134, 242, 135, 0.4);
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #86f287;
  padding: 5px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(134, 242, 135, 0.2);
}

h1 {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.job-title {
  font-size: 14px;
  text-transform: uppercase;
  color: #86f287;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 500;
}

.bio-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #ded3da;
  margin-bottom: 25px;
  font-weight: 300;
}

/* --- Certifications Section --- */
.cert-section {
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Title Link Styling - Clean Text Only */
.cert-title-link {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cert-title-link h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: #aaa;
  letter-spacing: 1px;
  margin: 0;
}

.cert-title-link:hover h3 {
  color: #86f287; /* Text turns green on hover */
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cert-tag {
  background: rgba(134, 242, 135, 0.1);
  border: 1px solid rgba(134, 242, 135, 0.3);
  color: #ded3da;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: default;
}

.cert-tag:hover {
  background: rgba(134, 242, 135, 0.15);
  color: #fff;
  border-color: #86f287;
}
/* --------------------------------- */

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.fa {
  font-size: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.fa:hover {
  background: #86f287;
  color: #131313;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(134, 242, 135, 0.5);
}

.contact-btn {
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #86f287;
  color: #86f287;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #86f287;
  color: #131313;
  box-shadow: 0 0 20px rgba(134, 242, 135, 0.4);
}