body {
  margin:0;
  font-family: 'Segoe UI', sans-serif;
  background:#0b0f19;
  color:white;
  overflow-x:hidden;
}

.bg-blur {
  position:fixed;
  width:600px;
  height:600px;
  background:radial-gradient(circle,#00d4ff,transparent);
  filter:blur(200px);
  top:-200px;
  right:-200px;
  z-index:-1;
}

header {
  display:flex;
  justify-content:space-between;
  padding:20px 8%;
  backdrop-filter:blur(10px);
  position:sticky;
  top:0;
}

nav a {
  color:white;
  margin-left:30px;
  text-decoration:none;
  opacity:0.8;
}

nav a:hover {
  opacity:1;
}

.hero {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:100px 8%;
}

.hero-content {
  max-width:500px;
}

.hero h1 {
  font-size:48px;
  margin-bottom:20px;
}

.hero-image img {
  width:500px;
  border-radius:20px;
}

.btn-primary {
  background:#00d4ff;
  padding:12px 25px;
  border-radius:30px;
  color:black;
  text-decoration:none;
  margin-right:15px;
}

.btn-outline {
  border:1px solid #00d4ff;
  padding:12px 25px;
  border-radius:30px;
  color:#00d4ff;
  text-decoration:none;
}

.stats {
  display:flex;
  justify-content:space-around;
  padding:60px 8%;
  text-align:center;
}

.stat h2 {
  font-size:40px;
  color:#00d4ff;
}

.about {
  display:flex;
  padding:80px 8%;
  gap:50px;
}

.about img {
  width:450px;
  border-radius:20px;
}

.review-grid {
  display:flex;
  gap:30px;
  justify-content:center;
  padding:40px 8%;
}

.review-card {
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:20px;
  width:300px;
  backdrop-filter:blur(15px);
}

.services-page, .contact-page {
  padding:100px 8%;
  text-align:center;
}

.service-grid {
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:50px;
}

.service-card {
  background:rgba(255,255,255,0.05);
  padding:40px;
  width:250px;
  border-radius:20px;
}

footer {
  text-align:center;
  padding:20px;
  background:#05070d;
}
