/* Web Development hero illustration */
.web-hero .web-hero-visual {
  height: 400px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(3, 24, 51, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.web-hero .web-hero-visual img,
.web-hero .web-hero-visual svg {
  width: 100%;
  height: 100%;
  max-width: 340px;
  max-height: 340px;
  display: block;
}

@media (max-width: 991px) {
  .web-hero .web-hero-visual {
    height: 280px;
    margin-top: 2rem;
  }
}

.theme-dark .web-hero {
  background: #111111 !important;
}
.theme-dark .web-hero .web-hero-visual {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #052c65, #0d6efd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
}
.tech-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nx-heading-icon {
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  vertical-align: -0.22em;
  margin-right: 0.45rem;
  fill: none;
  stroke: #052c65;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-dark .tech-icon {
  background: #2a2a2a !important;
}
.theme-dark .nx-heading-icon {
  stroke: #6ea8fe;
}
