/* Global */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0f12;
  color: #e6e6e6;
}

h1, h2, h3 {
  color: #00d4ff;
  letter-spacing: 1px;
}

.section {
  padding: 80px 10%;
  text-align: center;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #111418;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo span {
  color: #00d4ff;
}

.navbar nav a {
  margin-left: 20px;
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 500;
}

.navbar nav a:hover {
  color: #00d4ff;
}

/* Hero */
.hero {
  height: 70vh;
  background: linear-gradient(to bottom right, #0d0f12, #1a1f27);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #00d4ff;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.cta-btn:hover {
  background: #00aacc;
}

/* Services */
.service-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background: #111418;
  padding: 25px;
  width: 280px;
  border-radius: 8px;
  border: 1px solid #1f242c;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
}

/* Contact */
.contact-box {
  background: #111418;
  padding: 25px;
  width: 350px;
  margin: 20px auto;
  border-radius: 8px;
  border: 1px solid #1f242c;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111418;
  color: #888;
}
