html {
  scroll-behavior: smooth;
}

.navbar {
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
}

.hero-section {
  background-color: #f8f9fa;
}

/* Service icon badge */
.service-icon {
  width: 56px;
  height: 56px;
  background: #111;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.service-icon i {
  font-size: 1.5rem;
  color: #fff;
}

/* Service cards */
.service-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  height: 100%;
  transition: box-shadow .2s;
}
.service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

/* Sector images */
.sector-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

/* Stats bar */
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

/* Team cards */
.team-card .card-img-top {
  height: 220px;
  object-fit: cover;
  object-position: top center;
}
.team-card {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12) !important;
}

@media (max-width: 767px) {
  .sector-img {
    height: 220px;
  }
}
