.website-profiles-grid {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.website-profiles-grid.single-profile {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.website-profile-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);

  display: flex;
  flex-direction: column;
  text-align: center; 

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.website-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.website-profile-image-wrap {
  flex: 0 0 150px;
}

.website-profile-image,
.website-profile-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.website-profile-image {
  object-fit: cover;
  background: #e2e8f0;
  border: 3px solid #ffffff; /* clean white ring */
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.15); /* soft glow */
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.website-profile-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
}

#main .website-profile-content h3, .website-profile-content h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
  color: #0f172a;
  text-align:center;
}

.website-profile-job {
  margin-bottom: 8px;
  color: #334155;
  font-weight: 700;
  font-size: 15px;
}
.website-profile-job .job-title {
  font-weight: 700;
  font-size: 15px;
  color: #334155;
}

.website-profile-job .job-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-top: 2px;
}
.website-profile-bio {
  margin: 0 0 18px;
  color: #475569;
  font-size: 16px;
  line-height: 30px;
}

.website-profile-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.website-profile-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: transparent;
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  line-height:20px;
}

.website-profile-contact a:hover {
  background:#64748b;
  color: #eee;
}

.website-profile-contact i {
  font-size: 17px;
}
.website-profile-contact i.fa-whatsapp{
	font-size:20px;
	}
.website-profile-social {
  margin: 16px 0;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
  gap: 12px;
}

.website-profile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  color: #3730a3;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}
.website-profile-social i {
  font-size: 16px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.website-profile-social i.fa-facebook-f{
	}
.website-profile-social i.fa-linkedin-in{
	border-radius:4px;
	}
.website-profile-social i.fa-instagram{
	font-size:30px;
	}
.website-profile-social i.fa-youtube{
	font-size:30px;
	}
@media (max-width: 800px) {
  .website-profiles-grid {
    grid-template-columns: 1fr;
  }

  .website-profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .website-profile-contact {
    justify-content: center;
  }
}