* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe-UI', sans-serif;
}

body {
 
  color: #272e61;
  line-height: 1.6;
  background-image: linear-gradient(to bottom, #949fa8,#e2eaf1);
 
}

header {
  background: #272e61;
  color: white;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: normal;
}

.hero {
  text-align: center;
  display: block;
  padding: 40px 15px;
  background: #272e61;
  color: white;
}

.hero button {
  background: rgb(37, 72, 124);
  color: white;
  padding: 10px 20px;
  border: none;
  width: 200px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.hero button:hover {
  background: #001f2d;
}

.subhero2 {
  text-align: center;
  display: block;
  padding: 40px 15px;
  background: rgb(160, 182, 216);
  color: #e6e4e4;
}

.subhero2 button {
  background: #000b49;
  color: white;
  padding: 10px 20px;
  border: none;
  width: 150px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.subhero2 button:hover {
  background: #001f2d;
}

.subhero {
  text-align: center;
  display: block;
  padding: 40px 15px;
  background: rgb(37, 72, 124);
  color: #e6e4e4;
}

.subhero button {
  background: #000b49;
  color: white;
  padding: 10px 20px;
  border: none;
  width: 150px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.subhero button:hover {
  background: #001f2d;
}


section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  }

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.cards {
  display: flex;
  gap: 0px;
  justify-content: center;
  justify-self: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 15px;
  margin-right: 30px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 420px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}


.card2 {
  background: rgba(255, 255, 255, 0.904);
  padding: 25px;
  margin-right: 30px;
  margin-bottom:  0px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 1030px;
  transition: transform 0.3s;
}

.card2:hover {
  transform: translateY(-5px);
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background: #003049;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
  
}

button[type="submit"]:hover {
  background: #272e61;
}

.btn{
    padding: 10px 20px;
  margin-right: 10px; /* Adds space to the right of each button */
  background-color: #003049;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 20px;
}

#formStatus {
  margin-top: 10px;
  color: green;
}

#trackingstatus {
  margin-top: 10px;
  color: green;
}

footer {
  text-align: center;
  padding: 20px;
  background: #272e61;
  color: white;
  margin-top: 40px;
}

footer a {
      text-decoration: none;
      color: white;
      margin: 0 15px;  /* Horizontal spacing between links */
      padding: 10px 0;
    }

    footer a:hover {
      text-decoration: underline;
    }


.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.responsive-img {
  max-width: 100%;
  height: auto;
  display: block; /* Optional: removes bottom space */
}

.cover-img {
display: block;
  object-fit: cover;
  margin-left: auto;
margin-right: auto;

}


.facebook { background-color: #3b5998; }
.twitter  { background-color: black; }
.instagram{ background-color: #e4405f; }


 li {
          padding-left: 10px; /* Default is 40px; increase as needed */
          margin-left: 20px;

        }