
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fbfd;
  color: #333;
  margin: 0;
  padding: 0;
}

.card {
  border-radius: 14px;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  background: #fff;
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #4e9af1, #1e69de);
  border: none;
}
.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline-primary {
  border: 2px solid #1e69de;
  color: #1e69de;
}
.btn-outline-primary:hover {
  background: #1e69de;
  color: #fff;
}

.social-links a {
  display: block;
  margin: 6px 0;
  color: #1e69de;
  text-decoration: none;
  word-break: break-word;
  font-weight: 500;
}
.social-links a:hover { text-decoration: underline; }

.progress {
  height: 10px;
  border-radius: 6px;
  background: #e9ecef;
}
.progress-bar {
  background: linear-gradient(90deg, #4e9af1, #1e69de);
}
