body {
  margin: 0;
  background-color: #0d0d0d;
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url('icons/background.png') no-repeat center center fixed;
  background-size: cover;
}

.container {
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #000000;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  grid-gap: 30px;
  justify-content: center;
}

.icon {
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  border: 2px solid #00ffff;
  box-shadow: 0 0 20px #00ffff;
  border-radius: 10px;
}

/* Placeholder backgrounds — replace with actual image URLs */
#dashboard { background-image: url('icons/dashboard.svg'); }
#workflow { background-image: url('icons/workflow.svg'); }
#datasync { background-image: url('icons/datasync.svg'); }
#access { background-image: url('icons/access.svg'); }
#collab { background-image: url('icons/collab.svg'); }
#analytics { background-image: url('icons/analytics.svg'); }
#microservices { background-image: url('icons/microservices.svg'); }
#api { background-image: url('icons/api.svg'); }
#container { background-image: url('icons/container.svg'); }
