/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f9fc;
  color: #0b1f38;
  line-height: 1.6;
}

/* ============================================================================
   HEADER – Clean, Compact, Responsive
============================================================================ */
.header {
    width: 100%;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
}

/* ============================================================================
   NAVIGATION MENU
============================================================================ */
.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #002D62;
    padding: 8px 0;
    transition: 0.25s;
}

.navbar ul li a:hover {
    color: #0096FF;
}

/* ============================================================================
   STABLE DROPDOWN (DESKTOP)
============================================================================ */
.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 55px;
    left: 0;
    width: 250px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.dropdown:hover .mega-menu,
.dropdown.hover-active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    height: 25px;
}

.mega-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #002D62;
    margin-bottom: 10px;
}

.mega-menu a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #002D62;
    text-decoration: none;
    transition: 0.2s ease;
}

.mega-menu a:hover {
    color: #0096FF;
    padding-left: 5px;
}

/* ============================================================================
   MOBILE MENU ICON
============================================================================ */
.mobile-menu-icon {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

/* ============================================================================
   MOBILE RESPONSIVE
============================================================================ */
@media (max-width: 900px) {

    .mobile-menu-icon {
        display: block;
    }

    .navbar .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 20px 0;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
    }

    .nav-links.nav-active {
        max-height: 700px;
        opacity: 1;
        pointer-events: auto;
        border-bottom: 1px solid #eee;
    }

    .dropdown:hover .mega-menu {
        display: none;
    }

    .dropdown.open .mega-menu {
        display: block !important;
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto;
        padding: 12px 20px;
        background: #f4f8ff;
        border-radius: 10px;
        box-shadow: none;
    }
}


/* ================= HERO ================= */
.career-hero {
  background: linear-gradient(135deg, #002d62, #0059b3);
  padding: 140px 6% 100px;
  color: #ffffff;
}

.career-hero-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  max-width: 560px;
  opacity: 0.95;
}

/* CTA */
.hero-cta {
  margin-top: 35px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* RIGHT IMAGE */
.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .career-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin-top: 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.btn-primary {
  background: #0096ff;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0077cc;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* ================= WHY JOIN ================= */
.why-join {
  padding: 90px 10%;
  background: #ffffff;
  text-align: center;
}

.why-join h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #002d62;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: #f7f9fc;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #002d62;
}

/* ================= CAREER TRACKS ================= */
.career-tracks {
  padding: 90px 10%;
  background: #f7f9fc;
  text-align: center;
}

.career-tracks h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #002d62;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.track-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
}

.track-card h3 {
  font-size: 20px;
  color: #002d62;
  margin-bottom: 15px;
}

.track-card ul {
  list-style: none;
}

.track-card li {
  padding: 6px 0;
  font-size: 15px;
}

/* ================= CTA ================= */
.career-cta {
  background: #002d62;
  color: #ffffff;
  padding: 80px 10%;
  text-align: center;
}

.career-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.career-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .career-hero {
    padding: 120px 8% 80px;
  }

  .career-hero h1 {
    font-size: 34px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= FORCE ALL CTA BUTTONS BLUE ================= */

/* Covers all common CTA classes */
.btn,
.btn-primary,
.btn-secondary,
.cta-btn,
.hero-btn,
a.button,
button {
  background-color: #0d6efd !important;   /* Nexora Blue */
  color: #ffffff !important;
  border: none !important;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover state */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.cta-btn:hover,
.hero-btn:hover,
a.button:hover,
button:hover {
  background-color: #084298 !important;   /* Darker blue */
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(13,110,253,0.35);
}

