
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0b0f1a;
  color: white;
}

body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,255,255,0.1), transparent);
  z-index: -1;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at center, #0f2027, #020203);
}

.hero h1 {
  font-size: 50px;
  color: #00f2ff;
  text-shadow: 0 0 20px #00f2ff;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.stats div {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 50px;
}

.card {
  padding: 30px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  transition: 0.4s;
  text-align: center;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0px 0px 25px #00f2ff;
}

/* ANALYTICS */
.analytics {
  padding: 50px;
  text-align: center;
}

/* BUTTONS */
button {
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #00f2ff, #7b61ff);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.1);
}


@keyframes glow {
  0% { box-shadow: 0 0 5px #00f2ff; }
  50% { box-shadow: 0 0 20px #00f2ff; }
  100% { box-shadow: 0 0 5px #00f2ff; }
}

.card:hover {
  animation: glow 1.5s infinite;
}
