/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* ===== NAVBAR ===== */
header {
  background: #000000; /* EKD Blue like DHL */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  flex-wrap: wrap;
}

.navbar .logo img {
  height: 50px;
  width: auto;
}

.navbar .menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s;
}

.navbar .menu li a:hover,
.navbar .menu li a.active {
  background: #ffcc00; /* EKD Yellow accent */
  color: #000000;
}

/* ===== HERO BANNER ===== */
.hero {
  text-align: center;
  background: #000000;
  color: white;
  padding-bottom: 40px;
}

.hero-banner {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.hero-text {
  padding: 30px 5%;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: #fff;
  padding: 50px 0;
}

.about h2 {
  text-align: center;
  color: #000000;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== TRACKING FORM ===== */
.track-form {
  background: #eef4ff;
  padding: 50px 0;
}

.track-form h2 {
  text-align: center;
  color: #000000;
  font-size: 2rem;
  margin-bottom: 10px;
}

.track-form p {
  text-align: center;
  margin-bottom: 30px;
}

#ekdTrackForm {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #ffcc00;
  outline: none;
}

.btn-track {
  width: 100%;
  padding: 14px;
  background: #ffcc00;
  color: #0b3d91;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn-track:hover {
  background: #0b3d91;
  color: #fff;
}

/* ===== FOOTER ===== */
footer {
  background: #0b3d91;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .navbar .menu {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .about h2, .track-form h2 {
    font-size: 1.5rem;
  }

  #ekdTrackForm {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .navbar .menu li a {
    font-size: 14px;
    padding: 6px 8px;
  }
  .btn-track {
    font-size: 16px;
  }
}/* ========== EKD EXPRESS GLOBAL MOBILE CSS ========== */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, sans-serif; }
body { background: #f5f7fa; color: #333; line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 20px 0; }

/* NAVBAR */
.navbar { display: flex; justify-content: space-between; align-items: center; background: #000000; padding: 15px 5%; flex-wrap: wrap; }
.navbar .logo img { height: 45px; }
.navbar .menu { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; }
.navbar .menu a { color: #fff; text-decoration: none; font-weight: 600; padding: 8px 12px; border-radius: 6px; transition: 0.3s; }
.navbar .menu a:hover, .navbar .menu a.active { background: #e63946; }

/* HERO + SECTIONS */
.hero { background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(230,57,70,0.8)), url('EKD/EXD.jpeg') center/cover; color: #fff; text-align: center; padding: 80px 20px; }
.hero h1 { font-size: 2.5rem; margin-bottom: 15px; }
.btn-track { background: #e63946; color: #fff; padding: 14px 28px; border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-track:hover { background: #c62d3a; transform: translateY(-2px); }

/* TRACK + CONTACT FORM BOX */
.track-form { padding: 50px 0; }
.track-form .container { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.track-form h2 { text-align: center; color: #000000; margin-bottom: 10px; }

/* ========== CONTACT PAGE DESIGN ========== */
.contact-wrapper { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.contact-form-box { flex: 1; min-width: 320px; background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.contact-info-box { flex: 1; min-width: 280px; background: linear-gradient(135deg, #000000, #e63946); color: #fff; padding: 30px; border-radius: 12px; }
.contact-info-box h3 { color: #fff; border-bottom: 2px solid rgba(255,255,255,0.5); padding-bottom: 10px; margin-bottom: 20px; }
.contact-item { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; }
.contact-icon { font-size: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { font-weight: 600; color: #000000; margin-bottom: 8px; display: block; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 8px; font-size: 15px; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: #000000; outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.success-msg { background: #d4edda; color: #155724; padding: 12px; border-radius: 8px; text-align: center; margin-top: 15px; }

/* ADMIN */
.admin-login, .admin-dashboard { background: #fff; padding: 30px; border-radius: 12px; max-width: 500px; margin: 50px auto; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.admin-tabs button { flex: 1; padding: 12px; border: none; background: #ddd; cursor: pointer; font-weight: 600; }
.admin-tabs button.active { background: #000000; color: #fff; }
.message-box { background: #f8f9fa; border-left: 4px solid #000000; padding: 15px; margin-bottom: 15px; border-radius: 6px; }
.message-box.unread { border-left-color: #e63946; background: #fff3cd; }

/* FOOTER */
footer { background: #000000; color: #fff; text-align: center; padding: 20px; margin-top: 50px; }

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .navbar { flex-direction: column; gap: 10px; }
  .navbar .menu { justify-content: center; }
  .hero h1 { font-size: 1.8rem; }
  .contact-wrapper { flex-direction: column; }
  .contact-form-box, .contact-info-box { min-width: 100%; }
  .admin-tabs { flex-direction: column; }
}

