/* Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background-color: #0d0d0d;
  overflow-x: hidden;
  position: relative;
}

/* Hero section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

.hero h1 {
  font-size: 5rem;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
  color: #aaa;
}

/* Services */
.services {
  padding: 80px 20px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 30px;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card h3 {
  margin-bottom: 15px;
  color: #4facfe;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 25px rgba(79, 172, 254, 0.5);
}

/* Contact */
.contact {
  padding: 80px 20px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.contact a {
  color: #4facfe;
  text-decoration: none;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #777;
  z-index: 1;
  position: relative;
}

/* Canvas background */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}


.back-home {
  display: inline-block;
  margin-bottom: 20px;
  color: #4facfe;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #4facfe;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-home:hover {
  background-color: #4facfe;
  color: #0d0d0d;
}

/* html {
  scroll-behavior: smooth;
} */
