/* Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background-color: #0d0f12;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(90deg, #001f3f, #0074D9);
  box-shadow: 0 0 30px #0074D9;
}
header h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #00d8ff;
}
header p {
  font-size: 1.2rem;
  color: #aaaaaa;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.1rem;
  color: #cccccc;
}
.cta-button {
  padding: 12px 30px;
  background-color: #00d8ff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #00ffaa;
  box-shadow: 0 0 20px #00ffaa;
}

/* Service Cards */
#services {
  /*display: flex;*/
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 20px;
}
.card {
  background-color: #1a1e23;
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 216, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 216, 255, 0.5);
}
.card h3 {
  color: #00ffaa;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.card p {
  color: #dddddd;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #001f3f;
  color: #888888;
}
