/* CAREER.CSS - Page Scoped Styles */

/* ── Scope Protection & Global Typography ── */
  body { font-family:'Avenir Next','Avenir',sans-serif!important; margin:0!important; background:#fff!important; color:#3d4a5c; }
  footer a,header a { text-decoration:none!important; color:inherit!important; }
  footer ul { list-style:none!important; padding:0!important; margin:0!important; }
  footer h4 { font-size:1rem!important; font-weight:700!important; margin-bottom:1rem!important; color:#000!important; }
  footer p  { margin:0!important; }
  footer > div { display:grid!important; }
  footer .flex { display:flex!important; }
  footer > div.border-t { text-align:center!important; }
  header { text-align:left!important; }

  #career-scope { background:#fff; overflow-x:hidden; }

  #career-scope h1,
  #career-scope h2,
  #career-scope h3,
  #career-scope h4,
  #career-scope .heading-font {
    font-family: 'Urbanist', 'Helvetica Neue', sans-serif !important;
    font-weight: 700;
  }
  #career-scope p,
  #career-scope span,
  #career-scope a,
  #career-scope button,
  #career-scope div,
  #career-scope .body-font {
    font-family: 'Avenir Next', 'Avenir', sans-serif;
  }

  /* ── 1. Hero Banner ── */
  #career-scope .career-hero {
    background: linear-gradient(135deg, rgba(13, 56, 211, 0.88) 0%, rgba(7, 37, 156, 0.88) 100%),
                url('../../images/hero-square-bg-1.png') center/cover no-repeat;
    padding: 85px 0 95px;
    position: relative;
    overflow: visible !important;
    color: #ffffff;
  }
  #career-scope .career-hero h1 {
    font-size: 44px;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 0;
  }
  #career-scope .hero-job-img {
    position: absolute;
    right: 7%;
    max-height: 290px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.16));
    transition: all 0.3s ease;
  }

  @media (max-width: 991px) {
    #career-scope .career-hero {
      padding: 60px 0 70px;
      overflow: hidden !important;
    }
    #career-scope .hero-job-img {
      position: relative;
      bottom: auto;
      right: auto;
      margin-top: 25px;
      max-height: 220px;
    }
  }

  /* ── 2. Intro Section ── */
  #career-scope .career-intro {
    padding: 85px 0 65px;
    text-align: center;
    background: #ffffff;
  }
  #career-scope .career-intro h2 {
    font-size: 34px;
    color: #183b56;
    margin-bottom: 20px;
  }
  #career-scope .career-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a7184;
    max-width: 860px;
    margin: 0 auto;
  }

  /* ── 3. Opportunities Grid (10 Royal Blue Benefit Cards) ── */
  #career-scope .career-opps {
    padding: 40px 0 80px;
    background: #ffffff;
    text-align: center;
  }
  #career-scope .career-opps h2 {
    font-size: 32px;
    color: #183b56;
    margin-bottom: 45px;
  }
  #career-scope .benefit-card {
    background: #0d38d3;
    color: #ffffff;
    border-radius: 12px;
    padding: 22px 18px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(13, 56, 211, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
  }
  #career-scope .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(13, 56, 211, 0.25);
  }
  #career-scope .benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #career-scope .benefit-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    margin: 0;
  }

  /* ── 4. Moments That Matter (Photo Collage) ── */
  #career-scope .moments-section {
    padding: 80px 0;
    background: #ffffff;
  }
  #career-scope .moments-section h2 {
    font-size: 36px;
    color: #183b56;
    margin-bottom: 48px;
    text-align: center;
  }
  #career-scope .moment-img-box {
    position: relative;
    overflow: hidden !important;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    display: block;
  }
  #career-scope .moment-img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: 16px;
    transition: transform 0.35s ease;
  }
  #career-scope .moment-img-box:hover .moment-img {
    transform: scale(1.04);
  }
  #career-scope .moment-cta-card {
    background: #0d38d3;
    color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 20px rgba(13, 56, 211, 0.2);
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  #career-scope .moment-cta-card:hover {
    background: #07259c;
    color: #ffffff;
    transform: translateY(-3px);
  }
  #career-scope .moment-cta-card span {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Urbanist', sans-serif;
    color: #ffffff;
  }

  @media (max-width: 991px) {
    #career-scope .moments-section [style*="height:"] {
      height: 220px !important;
    }
  }
  @media (max-width: 575px) {
    #career-scope .moments-section [style*="height:"] {
      height: 180px !important;
    }
  }

  /* ── 5. Open Positions / Job Board ── */
  #career-scope .open-positions-section {
    padding: 90px 0;
    background: #f4f6fb;
  }
  #career-scope .open-positions-section h2 {
    font-size: 36px;
    color: #183b56;
    margin-bottom: 50px;
    text-align: center;
  }

  /* Category Filter Sidebar */
  #career-scope .filter-sidebar {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #eef2f7;
  }
  #career-scope .filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #5a7184;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 4px;
  }
  #career-scope .filter-item:last-child {
    margin-bottom: 0;
  }
  #career-scope .filter-item.active,
  #career-scope .filter-item:hover {
    background: #eef3ff;
    color: #0d38d3;
    font-weight: 700;
  }

  /* Job Cards */
  #career-scope .job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #eef2f7;
    transition: all 0.25s ease;
  }
  #career-scope .job-card:hover {
    box-shadow: 0 8px 30px rgba(13, 56, 211, 0.08);
    border-color: #d8e2f3;
  }
  #career-scope .job-title {
    font-size: 22px;
    font-weight: 700;
    color: #183b56;
    margin-bottom: 14px;
  }
  #career-scope .job-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d0d7e2;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    color: #5a7184;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 16px;
    background: #fafbfc;
  }
  #career-scope .job-resp-title {
    font-size: 13px;
    font-weight: 700;
    color: #183b56;
    margin-bottom: 8px;
  }
  #career-scope .job-resp-list {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  #career-scope .job-resp-list li {
    font-size: 14px;
    color: #5a7184;
    line-height: 1.7;
    margin-bottom: 4px;
  }
  #career-scope .btn-job-apply {
    background: #0d38d3;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-block;
  }
  #career-scope .btn-job-apply:hover {
    background: #07259c;
    color: #ffffff;
  }

  /* Pagination */
  #career-scope .career-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
  }
  #career-scope .page-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #d0d7e2;
    background: #ffffff;
    color: #5a7184;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  #career-scope .page-btn.active,
  #career-scope .page-btn:hover {
    background: #0d38d3;
    border-color: #0d38d3;
    color: #ffffff;
  }

@media (max-width: 991px) {
    #career-scope .career-opps .row > div {
      width: 33.333% !important;
    }
  }
  @media (max-width: 575px) {
    #career-scope .career-opps .row > div {
      width: 50% !important;
    }
  }

