
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.header {
  background: #004aad;
  color: white;
  padding: 20px 0;
}

.logo {
  width: 120px; /* adjust size as needed */
  height: auto;
  margin-right: 15px;
  vertical-align: middle;
}
.site-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f8f9fa;
}


.nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: -30px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  text-decoration: underline;
}

.hero {
background: url('hero.png') center/cover no-repeat;

  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background: #ff6a00;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #e55b00;
}

.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 30px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.track {
  background: #e8f0fe;
  padding: 60px 20px;
  text-align: center;
}

.track-form input {
  padding: 10px;
  width: 300px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.track-form button {
  padding: 10px 20px;
  background: #004aad;
  color: white;
  border: none;
  border-radius: 5px;
}

.about, .contact {
  padding: 60px 20px;
  text-align: center;
}

.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}
