.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0e2242!important;
    border-color: #0e2242;
}

.page-link {
    position: relative;
    display: block;
    color: #0e2242;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

*,
:root {
    --cge-navy: #16305c;
    --cge-navy-dark: #0e2242;
    --cge-maroon: #7a2048;
    --cge-green: #7cb342;
    --cge-bg: #f5f6f9;
    --cge-border: #e3e6ec;
    --cge-text: #2b2f38;
    --cge-text-light: #697386;
}

.cge-careers {
    padding: 70px 0;
    background: #fff;
}

.cge-careers .container {
    max-width: 1200px;
}

.cge-careers__heading h2 {
    color: var(--cge-navy);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    margin: 0 0 12px;
    letter-spacing: .5px;
}

.cge-careers__underline {
    display: flex;
    margin-bottom: 35px;
}

.cge-careers__underline span:first-child {
    width: 60px;
    height: 3px;
    background: var(--cge-navy);
    display: block;
}

.cge-careers__underline span:last-child {
    width: 20px;
    height: 3px;
    background: var(--cge-green);
    display: block;
    margin-left: 4px;
}

.cge-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    background: var(--cge-bg);
    border: 1px solid var(--cge-border);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 34px;
}

.cge-filter__search {
    position: relative;
    flex: 1 1 26px;
}

.cge-filter__search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--cge-text-light);
}

.cge-filter__search input {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border: 1px solid var(--cge-border);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: var(--cge-text);
    outline: none;
}

.cge-filter__search input:focus {
    border-color: var(--cge-navy);
}

.cge-filter__select {
    flex: 1 1 17px;
}

.cge-filter__select select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--cge-border);
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: var(--cge-text);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316305c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}

.cge-filter__select select:focus {
    border-color: var(--cge-navy);
}

.cge-filter__reset {
    padding: 11px 22px;
    border: 1px solid var(--cge-navy);
    background: transparent;
    color: var(--cge-navy);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.cge-filter__reset:hover {
    background: var(--cge-navy);
    color: #fff;
}

.cge-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--cge-border);
    border-radius: 10px;
}

.cge-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.cge-table thead th {
    background: var(--cge-navy);
    color: #fff;
    text-align: left;
    padding: 14px 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-weight: 600;
}

.cge-table tbody tr {
    border-bottom: 1px solid var(--cge-border);
}

.cge-table tbody tr:nth-child(even) {
    background: var(--cge-bg);
}

.cge-table tbody tr:last-child {
    border-bottom: none;
}

.cge-table td {
    padding: 16px 18px;
    font-size: 14px;
    color: var(--cge-text);
    vertical-align: middle;
}

.cge-table td.cge-position {
    font-weight: 600;
    color: var(--cge-navy);
}

.cge-table__jd-col {
    width: 90px;
}

.cge-jd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cge-navy);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: .2s;
}

.cge-jd-btn:hover {
    background: var(--cge-maroon);
}

.cge-jd-btn svg {
    width: 16px;
    height: 16px;
}

.cge-cards {
    display: none;
    flex-direction: column;
    gap: 14px;
}

.cge-card {
    border: 1px solid var(--cge-border);
    border-radius: 10px;
    padding: 16px 18px;
    background: #fff;
}

.cge-card h4 {
    margin: 0 0 8px;
    color: var(--cge-navy);
    font-size: 16px;
    font-weight: 700;
}

.cge-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 13px;
    color: var(--cge-text-light);
    margin-bottom: 14px;
}

.cge-card__meta span strong {
    color: var(--cge-text);
    font-weight: 600;
}

.cge-card .cge-jd-btn {
    width: auto;
    height: auto;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
}

.cge-card .cge-jd-btn span {
    margin-left: 6px;
}

.cge-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--cge-text-light);
    font-size: 15px;
    border: 1px dashed var(--cge-border);
    border-radius: 10px;
}

.cge-help {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 45px;
    padding: 22px 26px;
    border-radius: 10px;
    background: var(--cge-navy-dark);
    color: #fff;
}

.cge-help__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cge-help__icon svg {
    width: 24px;
    height: 24px;
    color: var(--cge-green);
}

.cge-help strong {
    font-size: 15px;
    display: block;
}

.cge-help p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #c7ceda;
}

.cge-help__email {
    margin-left: auto;
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    font-size: 14px;
}

.cge-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.cge-modal.is-open {
    display: block;
}

.cge-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 34, 66, .55);
}

.cge-modal__dialog {
    position: relative;
    z-index: 1;
    max-width: 640px;
    width: 92%;
    margin: 5vh auto;
    max-height: 88vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 34px 30px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.cge-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--cge-bg);
    color: var(--cge-navy);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.cge-modal__close:hover {
    background: var(--cge-maroon);
    color: #fff;
}

.cge-jd-title {
    color: var(--cge-navy);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px;
    padding-right: 30px;
}

.cge-jd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 14px 16px;
    background: var(--cge-bg);
    border-radius: 10px;
    margin-bottom: 24px;
}

.cge-jd-meta__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cge-jd-meta__item svg {
    width: 16px;
    height: 16px;
    color: var(--cge-navy);
    flex-shrink: 0;
}

.cge-jd-meta__item b {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--cge-text-light);
    font-weight: 600;
    letter-spacing: .3px;
}

.cge-jd-section {
    margin-bottom: 20px;
}

.cge-jd-section h5 {
    color: var(--cge-navy);
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 8px;
}

.cge-jd-section p {
    font-size: 14px;
    color: var(--cge-text);
    line-height: 1.6;
    margin: 0;
}

.cge-jd-section ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc outside;
}

.cge-jd-section ul li {
    font-size: 14px;
    color: var(--cge-text);
    line-height: 1.7;
    padding-left: 2px;
}

.cge-jd-section ul li::marker {
    color: var(--cge-maroon);
}

.cge-jd-apply {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding: 20px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cge-navy) 0%, var(--cge-navy-dark) 100%);
    color: #fff;
}

.cge-jd-apply__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cge-jd-apply__icon svg {
    width: 19px;
    height: 19px;
    color: var(--cge-green);
}

.cge-jd-apply__text {
    flex: 1 1 22px;
}

.cge-jd-apply__text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #c7ceda;
}

.cge-jd-apply__text strong {
    color: #fff;
    font-weight: 700;
}

.cge-jd-apply a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    background: var(--cge-green);
    color: #0e2242;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: .2s;
}

.cge-jd-apply a svg {
    width: 15px;
    height: 15px;
}

.cge-jd-apply a:hover {
    background: #6ba233;
}

body.cge-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .cge-careers {
        padding: 36px 0;
    }

    .cge-careers__heading h2 {
        font-size: 24px;
    }

    .cge-careers__underline {
        margin-bottom: 22px;
    }

    .cge-table-wrap {
        display: none;
    }

    .cge-cards {
        display: flex;
        gap: 12px;
    }

    .cge-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        margin-bottom: 22px;
    }

    .cge-filter__search input,
    .cge-filter__select select {
        padding: 10px 12px 10px 36px;
    }

    .cge-filter__select select {
        padding: 10px 12px;
    }

    .cge-filter__reset {
        width: 100%;
        padding: 10px 22px;
    }

    .cge-card {
        padding: 14px 16px;
    }

    .cge-card__meta {
        gap: 6px 12px;
        margin-bottom: 12px;
    }

    .cge-empty {
        padding: 28px 16px;
    }

    .cge-help {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
        margin-top: 24px;
        padding: 16px 18px;
    }

    .cge-help__email {
        margin-left: 0;
    }

    /* Modal */
    .cge-modal__dialog {
        padding: 24px 16px 20px;
        margin: 3vh auto;
        max-height: 94vh;
        width: 94%;
    }

    .cge-modal__close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }

    .cge-jd-title {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .cge-jd-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    margin-bottom: 24px;
}

    .cge-jd-section {
        margin-bottom: 14px;
    }

    .cge-jd-apply {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 16px;
        padding: 16px 18px;
    }

    .cge-jd-apply a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cge-careers {
        padding: 28px 0;
    }

    .cge-careers__heading h2 {
        font-size: 21px;
    }

    .cge-careers__underline {
        margin-bottom: 18px;
    }

    .cge-filter {
        padding: 12px;
        gap: 8px;
        margin-bottom: 18px;
    }

    .cge-cards {
        gap: 10px;
    }

    .cge-card {
        padding: 12px 14px;
    }

    .cge-card h4 {
        font-size: 15px;
    }

    .cge-help {
        margin-top: 18px;
        padding: 14px 16px;
        gap: 8px;
    }

    .cge-modal__dialog {
        padding: 20px 14px 18px;
        margin: 0;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .cge-modal__close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .cge-jd-meta {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
.cge-banner-apply {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0d223f;
    border-radius: 12px;
    padding: 24px 32px;
    gap: 24px;
    margin: 30px 0;
    box-sizing: border-box;
}

.cge-banner-apply__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background-color: #1b385e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cge-banner-apply__icon svg {
    width: 24px;
    height: 24px;
    stroke: #7db83e;
}

.cge-banner-apply__text {
    flex: 1;
}

.cge-banner-apply__text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #c9d6e4;
}

.cge-banner-apply__text strong {
    color: #ffffff;
    font-weight: 700;
}

.cge-banner-apply__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #7db83e;
    color: #13263a;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.cge-banner-apply__btn:hover {
    background-color: #6ea434;
    color: #0b1825;
    text-decoration: none;
}

.cge-banner-apply__btn svg {
    width: 18px;
    height: 18px;
    stroke: #13263a;
}

@media (max-width: 768px) {
    .cge-banner-apply {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 18px;
    }

    .cge-banner-apply__btn {
        width: 100%;
        justify-content: center;
    }
}

.cge-jd-meta__head {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cge-jd-meta__head svg {
    width: 16px;
    height: 16px;
    color: var(--cge-navy, #16305c);
    flex-shrink: 0;
}

.cge-jd-meta__head b {
    font-size: 11px;
    text-transform: uppercase;
    color: #627d98;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}
.cge-footer-contact {
  width: 100%;
  background-color: #f7f9fa;
  border-top: 1px solid #e2e8f0;
  border-radius:20px;
  padding: 24px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  margin-top: 20px;
}

.cge-footer-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cge-footer-contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Avatar / Icon Circle */
.cge-footer-contact__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #2e7d32;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cge-footer-contact__avatar svg {
  width: 22px;
  height: 22px;
}

/* Text Block */
.cge-footer-contact__text h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0b2240;
}

.cge-footer-contact__text p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #556987;
}

/* Divider Line */
.cge-footer-contact__divider {
  width: 1px;
  height: 38px;
  background-color: #d1d9e2;
}

/* Links & Icons */
.cge-footer-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0b2240;
  font-size: 15px;
  transition: opacity 0.2s ease;
}

.cge-footer-contact__link:hover {
  opacity: 0.75;
}

.cge-footer-contact__icon {
  color: #2e7d32;
  display: flex;
  align-items: center;
}

.cge-footer-contact__icon svg {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .cge-footer-contact__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cge-footer-contact__divider {
    display: none;
  }
}

.career-hero-banner {
    background-image: var(--bg-image);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.career-hero-content {
    max-width: 580px;
}

.career-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a2b49;
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.career-hero-brand {
    color: #2e6930;
}

.career-hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: #1a2b49;
    /* color: #f2f2f2; */
    font-weight: 900;
    margin: 0 0 24px 0;
}

.career-hero-line {
    width: 60px;
    height: 4px;
    background-color: #2e6930;
    border-radius: 2px;
}

/* Responsive adjustments for tablets and mobiles */
@media (max-width: 992px) {
    .career-hero-banner {
        min-height: 350px;
        padding: 50px 0;
    }

    .career-hero-title {
        font-size: 34px;
    }

    .career-hero-subtitle {
        font-size: 16px;
         color: #ffffff;
    }
}

@media (max-width: 576px) {
    .career-hero-banner {
        min-height: 280px;
        padding: 40px 0;
        /* Adds a slight tint on mobile so text remains readable over the image */
        /* background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), var(--bg-image); */
    }

    .career-hero-title {
        font-size: 26px;
    }

    .career-hero-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
         color: #ffffff;
    }

    .career-hero-line {
        width: 45px;
        height: 3px;
    }
}

.cge-modal__body .cge-jd-section ul,
#cgeModalBody .cge-jd-section ul,
.cge-jd-section ul {
    list-style-type: disc !important;
    list-style-position: outside !important;
    margin: 8px 0 16px 24px !important;
    padding-left: 10px !important;
}

.cge-modal__body .cge-jd-section ol,
#cgeModalBody .cge-jd-section ol,
.cge-jd-section ol {
    list-style-type: decimal !important;
    list-style-position: outside !important;
    margin: 8px 0 16px 24px !important;
    padding-left: 10px !important;
}

.cge-modal__body .cge-jd-section ul li,
.cge-modal__body .cge-jd-section ol li,
#cgeModalBody .cge-jd-section ul li,
#cgeModalBody .cge-jd-section ol li,
.cge-jd-section li {
    display: list-item !important;
    list-style: inherit !important;
    margin-bottom: 6px !important;
    line-height: 1.6 !important;
    color: #4a5568 !important;
}

/* Nested lists */
.cge-jd-section ul ul {
    list-style-type: circle !important;
    margin: 4px 0 4px 20px !important;
}

.cge-jd-section ol ol {
    list-style-type: lower-alpha !important;
    margin: 4px 0 4px 20px !important;
}

.cge-modal__body .cge-jd-section p,
#cgeModalBody .cge-jd-section p,
.cge-jd-section p {
    margin-bottom: 10px !important;
    line-height: 1.6 !important;
    color: #4a5568 !important;
}

