/* Design Technology hero illustration */
.design-hero .design-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);
}
.design-hero .design-hero-visual img,
.design-hero .design-hero-visual svg {
  width: 100%;
  height: 100%;
  max-width: 340px;
  max-height: 340px;
  display: block;
}

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

.theme-dark .design-hero {
  background: #111111 !important;
}
.theme-dark .design-hero .design-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;
  color: #fff;
}
.tech-icon .bx {
  font-family: boxicons !important;
  color: #ffffff !important;
  font-size: 2rem !important;
  font-style: normal !important;
  line-height: 1 !important;
}
.theme-dark .tech-icon {
  background: #2a2a2a !important;
}
