body {
  font-family: 'Hind Siliguri', sans-serif;
}

.hero-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.step-icon {
  font-size: 3rem;
}

.btn-primary {
  background-color: #1a56db;
  border-color: #1a56db;
}

.navbar-brand {
  letter-spacing: 1px;
}

/* ===== Builder: Step Progress ===== */
.step-progress {
  position: relative;
  padding: 8px 0;
}

.step-track {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #dee2e6;
  z-index: 0;
}

.step-bubble-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.step-item small {
  color: #6c757d;
  font-size: 0.75rem;
}

.bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dee2e6;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.bubble.active {
  background: #1a56db;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(26, 86, 219, 0.18);
}

.bubble.done {
  background: #198754;
  color: #fff;
}

/* ===== Builder: Entry Cards (Education / Work) ===== */
.entry-card {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 1rem;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* ===== Builder: Review Box ===== */
.review-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Language selector cards */
.lang-card {
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-card:hover {
  border-color: #1a56db;
  background: #f0f4ff;
}

.lang-card.lang-selected {
  border-color: #1a56db;
  background: #e8f0fe;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.2);
}

.lang-flag {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

/* Entry cards */
.entry-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e9ecef;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* Photo Upload */
.photo-preview-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px dashed #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: #f0f4ff;
  transition: all 0.2s ease;
}

.photo-preview-wrap:hover {
  border-color: #1a56db;
  background: #e8f0fe;
}

.photo-preview-wrap:hover .photo-overlay {
  opacity: 1;
}

.photo-preview-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 86, 219, 0.75);
  color: white;
  text-align: center;
  padding: 6px;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#photoPlaceholder {
  text-align: center;
  line-height: 1.4;
}