body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
header {
  background: #0a0f2c;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 2px;
}
nav {
  margin-top: 1rem;
}
nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}
.logo {
  /* Set a fixed or maximum width for the logo */
  width: 150px; /* Example: 150 pixels wide */
  height: auto; /* 'auto' maintains the aspect ratio */

  /* Alternatively, you can use max-width to make it responsive */
  /* max-width: 200px; */
}
.hero {
  background: linear-gradient(rgba(10, 15, 44, 0.7), rgba(10, 15, 44, 0.7)), url('https://picsum.photos/1200/400?tech');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  margin-top: 0;
  color: #0a0f2c;
}
footer {
  background: #0a0f2c;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
}
footer p {
  margin: 0.3rem 0;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}
