/* ===============================
   GLOBAL CAREER & LEARNING HUB
   Custom Header + Footer CSS
   =============================== */

/* ---------- HEADER ---------- */
.gclh-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 999;
}

.gclh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gclh-logo a {
  font-size: 22px;
  font-weight: 700;
  color: #1b3c59;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.gclh-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.gclh-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gclh-nav ul li a:hover {
  color: #1b3c59;
}

/* CTA Button */
.gclh-nav .cta-btn {
  background: #f4b400;
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
}

.gclh-nav .cta-btn:hover {
  background: #e0a800;
}

/* ---------- FOOTER ---------- */
.gclh-footer {
  background: #1b3c59;
  color: #ffffff;
}

.gclh-footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f4b400;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.7;
  color: #e0e0e0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #f4b400;
}

.footer-col a {
  color: #f4b400;
  text-decoration: none;
}

/* Footer Bottom */
.gclh-footer-bottom {
  background: #132c43;
  text-align: center;
  padding: 12px 10px;
  font-size: 13px;
  color: #cccccc;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .gclh-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gclh-container {
    flex-direction: column;
    gap: 12px;
  }

  .gclh-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .gclh-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
