@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Open+Sans&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #F7F9FC;
  color: #333;
  line-height: 1.6;
}

header {
  background: #fff;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  color: #0A2540;
  font-weight: 500;
}

.logo img {
  max-height: 200px;   /* 🔹 adjust this value */
  width: auto;        /* keeps aspect ratio */
}

.logo span {
  display: block;
  font-size: 12px;
  color: #17A2B8;
  font-weight: 400;
}

nav a {
  color: #0A2540;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #F5B700;
}

.hero {
  background: linear-gradient(to right, #0A2540, #123A63);
  color: #fff;
  padding: 90px 60px;
  text-align: center;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 13px 30px;
  background: #17A2B8;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.container {
  padding: 60px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #0A2540;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.card h4 {
  color: #17A2B8;
  margin-bottom: 10px;
}

footer {
  background: #0A2540;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

footer p {
  margin-top: 5px;
}

form input, form textarea {
  width: 100%;
  padding: 13px;
  margin-bottom: 18px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  background: #17A2B8;
  color: #fff;
  border: none;
  padding: 13px 30px;
  font-weight: 600;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}





@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }
}


@media (max-width: 768px) {
  form input,
  form textarea,
  form button {
    font-size: 16px;
  }
}

.btn, form button {
  min-height: 44px; /* recommended for mobile */
}

@media (max-width: 768px) {

  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 15px;
  }

  nav a {
    margin: 0 10px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .container {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 24px;
  }
}

.contact-details p,
.job-groups p {
  font-size: 16px;
  margin: 8px 0;
}

.contact-details a,
.job-groups a {
  color: #0A2540;
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover,
.job-groups a:hover {
  text-decoration: underline;
}

.job-groups h2 {
  margin-top: 25px;
  color: #0A2540;
}

