/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

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

/* Header */
.header-bar {
  background-color: #1f3a93;
  padding: 20px 0;
  color: white;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  width: auto;
  display: block;
}

.site-title {
  font-size: 2rem; /* Larger title size */
  font-weight: 700;
  color: white;
  margin: 0;
  white-space: nowrap;
  display: inline;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: inline; /* Ensures the separator is inline */
  position: relative;
}

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

.nav-links a::after {
  content: "|";
  margin: 0 10px;
  color: #ccc;
}

.nav-links a:last-child::after {
  content: "";
}

/* Footer */
.site-footer {
  background-color: #1f3a93;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* Typography */
h1, h2, h3, h4 {
  color: #1f3a93;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 15px 0;
  padding-left: 20px;
}

/* Buttons */
.button {
  background-color: #1f3a93;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button.secondary {
  background-color: white;
  color: #1f3a93;
  border: 2px solid #1f3a93;
}

.button:hover {
  background-color: #162d6e;
  color: white;
}

/* Hero Section */
.hero-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 60px;
}

.cta-section h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* Contact Form */
.contact-section {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-section h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #1f3a93;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #1f3a93;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1f3a93;
  outline: none;
}

.contact-form .button {
  align-self: flex-end;
}

/* Jobs List */
.jobs-list {
  list-style: none;
  padding: 0;
}

.jobs-list li {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 5px solid #1f3a93;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

.admin-table thead {
  background-color: #1f3a93;
  color: white;
}

.admin-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.admin-table tbody tr:hover {
  background-color: #f0f5ff;
}

.no-padding {
  padding: 0 !important;
}

.jobs-banner-wrapper {
  width: 100%;
  overflow-x: hidden;
  margin-bottom: 30px;
}

.jobs-banner {
  width: 100%;
  max-width: 80px;  /* 👈 much smaller now */
  height: auto;
  display: block;
  margin: 20px auto; /* centers it and adds spacing */
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}







