/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: #fff;
}

/* /* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #111;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
}

nav a {
  margin: 0 15px;
  color: #ddd;
  text-decoration: none;
}

.btn {
  background: linear-gradient(135deg, #00eaff, #4a90e2);
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #00cfff, #357abd);
}

/* Services Section */
.services-section {
  text-align: center;
  padding: 60px 20px;
}

.services-section h2 {
  font-size: 32px;
  color: #00eaff;
  margin-bottom: 10px;
}

.subtitle {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 234, 255, 0.15);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card h3 {
  color: #00eaff;
  margin-bottom: 12px;
}

.service-card p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
}
