.profile-card {
  position: relative;
  width: 225px;
  background: #f8f9fa;
  /*-webkit-backdrop-filter: blur(48px);
  backdrop-filter: blur(48px);*/
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 12px 12px 12px -10px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) scale(0.8); /*adjust the scale to view properly*/
  transform-style: preserve-3d;
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f0f2f5;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  	background-image: url(https://www.tobagofirst.com/sites/default/files/2026-03/no_user_pic.png?quality=90&webp=true&resize=1486,991);
  	background-position: center;
	background-size: cover;
}
.profile-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 96px;
  background-color: #7d988a;
  border-radius: 20px 20px 0 0;
  z-index: -1;
}

.profile-info {
  text-align: left;
  margin-bottom: 1.5rem;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.profile-title {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.profile-bio {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f0f2f5;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
  background: #e4e6e9;
  transform: translateY(-6px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: #1a1a1a;
  transition: all 0.2s ease;
}

.social-btn:hover svg {
  fill: #0066ff;
}

/* Specific colors for each social platform */
.social-btn.twitter:hover svg {
  fill: #1da1f2;
}
.social-btn.instagram:hover svg {
  fill: #e4405f;
}
.social-btn.linkedin:hover svg {
  fill: #0a66c2;
}
.social-btn.github:hover svg {
  fill: #333333;
}

.cta-button {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  background: #7d988a;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}

.cta-button:hover {
  background: #4d5d54;
  transform: translateY(-2px);
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-weight: 600;
  color: #1a1a1a;
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
}
.social-link-field.horizontal li {
    padding-right: 5px;
}