/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  margin-bottom: 0.5em;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a2540;
  padding: 1em 2em;
}

.logo {
  color: #fff;
  font-size: 1.5em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("https://picsum.photos/1200/800") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 2em;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background: #ff9800;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 3em 2em;
  text-align: center;
}

.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 2em;
}

.card {
  background: #f9f9f9;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 250px;
}

/* Contact */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.contact-form input, .contact-form textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #0a2540;
  color: #fff;
  text-align: center;
  padding: 1em;
}
