.service-switcher {
  margin-top: 30px;
}

.service-switcher-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.service-switcher-list li a {
  display: block;
  padding: 16px 20px;
  border-radius: 12px;
  background: #ffffff;
  color: #1C3652;
  font-weight: 600;
  text-decoration: none;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* Hover */
.service-switcher-list li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  color: #FF5E14;
}

/* Active (Current Service) */
.service-switcher-list li.active a {
  background: #1C3652;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(28,54,82,0.4);
  position: relative;
}

/* Orange Accent Line */
.service-switcher-list li.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 4px;
  background: #FF5E14;
  border-radius: 2px;
}


/* projects paginator */

