/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between; /* logo left, nav right */
  align-items: center;
  padding: 10px 60px; /* extra spacing */
  background: #1E1E50;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3); /* subtle shadow */
}

header .logo img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  gap: 25px; /* smaller gap so 'Contact' fits */
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem; /* slightly smaller text */
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FF6600; /* orange hover */
}

/* Hero */
.hero {
  background: url("images/hero.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-text {
  background: rgba(30, 30, 80, 0.7); /* dark blue overlay */
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #FF6600;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #0077CC;
}

/* Section spacing */
section {
  padding: 100px 20px;
}

/* Image + Text Sections */
.image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 80px 20px;
}

.image-section.reverse {
  flex-direction: row-reverse;
}

.image-section img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
}

.image-section .text {
  max-width: 500px;
}

.image-section ul {
  list-style: none;
  padding: 0;
}

.image-section ul li {
  background: #f4f4f4;
  margin: 8px 0;
  padding: 10px;
  border-radius: 6px;
}

/* Contact Section */
.contact-section {
  background: url("images/jobs.jpg") no-repeat center center/cover;
  padding: 120px 20px;
  position: relative;
  color: #fff;
  text-align: center;
}

.contact-section .overlay {
  background: rgba(30, 30, 80, 0.8); /* dark blue overlay */
  padding: 50px;
  border-radius: 10px;
  display: inline-block;
}

form {
  max-width: 400px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 5px;
}

form button {
  background: #28a745;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #1e7e34;
}

/* Footer */
footer {
  background: #1E1E50;
  color: #fff;
  padding: 20px;
  text-align: center;
}
