/* Reusable header-bar style with top border glow on hover (matches your cards) */
.feature .card-header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #f8f9fa;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.feature .card-header-bar i {
  color: var(--bs-primary);
}

/* Base card look */
.feature {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 4px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-top 0.18s ease;
}

/* Hover state: soften into a glow */
.feature:hover {
  transform: translateY(-6px);
  border-top: 4px solid rgba(13, 110, 253, 0.6); /* semi-transparent bootstrap blue */
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.14), 0 -6px 12px rgba(13, 110, 253, 0.35); /* subtle glowing halo from the top */
}

.feature .title {
  font-size: 1.05rem;
}

/*# sourceMappingURL=homeMentoring.css.map */
