body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
header {
  background-color: #151818;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header img {
  height: 50px;
  margin-left: 40px;
}

header p {
  margin: 5px 0 0;
  font-size: 14px;
  color: white;
  font-family: "Bookman Old Style";
  font-weight: bold;
}
nav a {
  color: white;
  margin-left: 20px;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 500;
  font-family: "Bookman Old Style";
  font-weight: bold;
}

.nav-button {
      background-color: #ffffff;
      color: #0d6efd;
      border: none;
      margin: 0 10px;
      padding: 10px 25px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-button:hover {
      background-color: #0b5ed7;
      color: #ffffff;
      transform: scale(1.05);
    }



.hero {
  padding: 60px 20px;
  background: linear-gradient(to right, #0a2540, #2a4370);
  color: white;
  text-align: center;
}
.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.btn {
  background-color: #00b894;
  padding: 12px 24px;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
}
section {
  padding: 40px 20px;
  text-align: center;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}
input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}
button {
  background-color: #00b894;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background-color: #019c7b;
}
footer {
  background: #0a2540;
  color: white;
  padding: 20px;
  text-align: center;
}

.card {
  background:#86ECF0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  background-color: #1DA1F2;
}
.card h3 {
  margin-top: 0;
  color: #0a2540;
}

a:hover {
    background-color: #019c7b; /* Darker green */
    color: #fff;
    transform: scale(1.05);
}



