/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Project card hover — lift + blue glow + left accent border */
.work-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
  border-left: 3px solid transparent;
}

.work-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 120, 255, 0.18);
  border-left-color: #0078ff;
}

/* Skill pill badges (JS-generated) */
.skill-pill {
  display: inline-block;
  background: rgba(0, 120, 255, 0.1);
  color: #7ab3ff;
  border: 1px solid rgba(0, 120, 255, 0.3);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.78rem;
  margin: 3px 3px 3px 0;
  font-style: normal;
  transition: background 0.2s ease, color 0.2s ease;
}

.skill-pill:hover {
  background: rgba(0, 120, 255, 0.25);
  color: #fff;
}

/* GitHub / live link icon hover */
.github a {
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
}

.github a:hover {
  transform: scale(1.25);
  color: #4da3ff !important;
}

/* About Me section */
.about-intro {
  border-left: 3px solid #0078ff;
  padding-left: 1rem;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.about-highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 120, 255, 0.1);
  border: 1px solid rgba(0, 120, 255, 0.3);
  color: #7ab3ff;
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.about-body p.lead {
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Skill category cards */
.skill-category-card {
  background: #222;
  border-top: 3px solid #0078ff;
  border-radius: 6px;
  padding: 1rem;
  height: 100%;
}

.skill-cat-title {
  color: #0078ff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
