/* ===========================
   General Site Styles
=========================== */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

header {
  background: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}

header .logo {
  height: 70px;
  margin-bottom: 10px;
  border-radius: 8px;
}

h1, h2, h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: #0078D7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===========================
   Hero Section
=========================== */
.hero {
  background: linear-gradient(to right, #005ea6, #0078D7);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* ===========================
   Buttons
=========================== */
.btn, .btn-submit {
  background-color: #0078D7;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover, .btn-submit:hover {
  background-color: #005ea6;
}

/* ===========================
   Apply Form Section
=========================== */
.apply-form-section {
  max-width: 650px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.apply-form-section h2 {
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
}

.application-form label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.g-recaptcha {
  margin-top: 20px;
}

/* ===========================
   Services Page
=========================== */
.services-section {
  padding: 50px 20px;
  background-color: #f9fafc;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  border-radius: 8px;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  color: #003366;
  margin-top: 15px;
}

.service-card p {
  font-size: 0.95em;
  margin-top: 10px;
  color: #555;
}

/* ===========================
   Footer
=========================== */
footer {
  background: #FFD700; /* Gold accent */
  color: #003366;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  margin-top: 40px;
}
