* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #222;
}

/* NAVBAR */
.navbar {
  background: #0e1a2b;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo span {
  color: #f4a259;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a.active {
  color: #f4a259;
  font-weight: bold;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

/* HERO */
.hero {
  height: 90vh;
  background: url("../assets/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  text-align: center;
}

/* SECTIONS */
.page, .services {
  padding: 60px 24px;
  max-width: 1000px;
  margin: auto;
}

.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.services .card ul {
margin-top: 12px;
padding-left: 18px;
}
.services .card ul li {
margin-bottom: 8px;
line-height: 1.6;
font-size: 15px;
color: #444;
}
/* CONTACT */
.contact-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
}

.btn-primary {
  background: #f4a259;
  border: none;
  padding: 12px;
  width: 100%;
  cursor: pointer;
}

/* MAP */
.map-section {
  padding: 40px 16px;
}

.map-section iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
}

/* FOOTER */
footer {
  background: #0e1a2b;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    background: #0e1a2b;
    top: 100%;
    left: 0;
    width: 100%;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .map-section iframe {
    height: 260px;
  }
}
/* =======================
   CAREER PAGE
======================= */
.page-header {
  background: #111;
  color: #fff;
  padding: 50px 20px;
}

.page-header h1 {
  margin-bottom: 5px;
}

.light-bg {
  background: #f7f7f7;
}

.center {
  text-align: center;
}

.max-text {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.7;
}

.career-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.career-image img {
  width: 100%;
  max-width: 450px;
}

.career-content ul {
  margin-top: 15px;
  padding-left: 18px;
}

.career-content ul li {
  margin-bottom: 8px;
}

.career-form {
  max-width: 900px;
  margin: 40px auto 0;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.career-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.file-label {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px dashed #aaa;
  text-align: center;
  cursor: pointer;
}

.file-label input {
  display: none;
}
/* DATE INPUT WITH ICON */
.date-field {
  position: relative;
  width: 100%;
}

.date-field::after {
  content: "📅";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.6;
}

.date-field input {
  padding-right: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .career-grid,
  .form-row {
    flex-direction: column;
  }
}
