/* Overall visual modernization: refresh typography, spacing, cards, calls-to-action, forms, and responsive presentation without changing company content or workflow contracts. */
:root {
    --site-ink: #18212b;
    --site-muted: #5d6874;
    --site-surface: rgba(255, 255, 255, .94);
    --site-surface-soft: rgba(247, 249, 251, .96);
    --site-border: rgba(25, 38, 52, .12);
    --site-shadow: 0 16px 44px rgba(24, 33, 43, .10);
    --site-radius: 18px;
    --site-accent: #2f6f62;
    --site-accent-dark: #24574d;
    --site-brand-rgb: 47, 111, 98;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--site-ink);
    background-color: #eef2f4;
    background-position: center top;
    background-size: cover !important;
}

/* Visual redesign refinement: keep the original background artwork visible through a lighter wash so pages retain company character without sacrificing readability. */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(238,242,244,.40));
}

a {
    color: #245f83;
    text-underline-offset: .16em;
}

a:hover,
a:focus {
    color: #173f58;
}

h1, h2, h3 {
    color: var(--site-ink);
    letter-spacing: -.015em;
}

h1 {
    font-size: clamp(1.75rem, 2.6vw, 2.35rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.3;
}

h3 {
    font-size: 1.12rem;
    line-height: 1.4;
}

p, li {
    font-size: 1rem;
}

img {
    max-width: 100%;
}

.section {
    width: 100%;
    padding: 1.75rem 0;
}

.section > .container {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.section > .container > .row {
    row-gap: 1.5rem;
}

/* Overall visual modernization: replace the dated edge-gradient content panels with readable card surfaces while retaining the legacy .style2 hook used throughout the shared pages. */
.section .style2 {
    text-indent: 0;
    color: var(--site-ink);
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: linear-gradient(145deg, rgba(var(--site-brand-rgb), .085), rgba(255,255,255,.91)) !important;
    filter: none;
    box-shadow: var(--site-shadow);
}

.section .style2 > :last-child {
    margin-bottom: 0;
}

/* Overall visual modernization: give the common left-hand logo/image rail a quiet card treatment that becomes full-width naturally on mobile. */
.section .row > [class*="col-md-4"]:first-child {
    align-self: flex-start;
}

.section .row > [class*="col-md-4"]:first-child > img,
.section .row > [class*="col-md-4"]:first-child > a > img,
.section .row > [class*="col-md-4"]:first-child .img-responsive {
    margin-left: auto;
    margin-right: auto;
}

.section .row > [class*="col-md-4"]:first-child .img-responsive:not(:first-child) {
    border-radius: 14px;
}

.style5 {
    font-size: clamp(1.08rem, 1.5vw, 1.3rem) !important;
    line-height: 1.65;
    font-weight: 600 !important;
}

.small {
    font-size: .9rem;
    color: var(--site-muted);
}

hr,
hr.stylebar,
hr.style-two {
    margin: 1.75rem 0;
    opacity: .18;
}

/* Overall visual modernization: make the shared header feel lighter and more intentional while preserving normal and LTSS navbar variants. */
.shared-site-navbar {
    min-height: 78px;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(18, 31, 42, .12);
    box-shadow: 0 8px 28px rgba(24, 33, 43, .11);
    backdrop-filter: blur(10px);
}

.navbar-inverse.shared-site-navbar {
    background-color: rgba(242, 246, 247, .96);
    background-image: url('../images/transBG.png');
    background-size: cover;
}

.navbar-ltss.shared-site-navbar {
    background-color: rgba(226, 229, 232, .97);
}

.shared-site-navbar__brand img {
    max-width: 122px;
    max-height: 60px;
}

.shared-site-navbar .nav-link {
    padding: .68rem .78rem;
    font-size: .94rem;
    border-radius: 999px;
    transition: background-color .18s ease, transform .18s ease;
}

.shared-site-navbar .nav-link:hover,
.shared-site-navbar .nav-link:focus {
    background-color: rgba(255,255,255,.82);
    transform: translateY(-1px);
}


.shared-site-navbar__dropdown .dropdown-menu {
    padding: .55rem;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    box-shadow: var(--site-shadow);
}

.shared-site-navbar__dropdown .dropdown-item {
    padding: .58rem .75rem;
    border-radius: 9px;
}

/* Overall visual modernization: elevate the normal homepage into a balanced two-column introduction while leaving all existing company content and carousel variables intact. */
.page-index2 .site-home-shell {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.page-index2 .site-home-panel {
    height: 100%;
    padding: clamp(1.35rem, 3vw, 2.25rem);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: linear-gradient(145deg, rgba(var(--site-brand-rgb), .09), rgba(255,255,255,.90));
    border-color: rgba(var(--site-brand-rgb), .20);
    box-shadow: var(--site-shadow);
}

.page-index2 .site-home-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-index2 .site-home-intro .img-responsive,
.page-index2 .site-home-intro img {
    margin-left: auto;
    margin-right: auto;
}

.page-index2 .site-home-visual {
    overflow: hidden;
}

.page-index2 .site-home-visual > .img-responsive,
.page-index2 .site-home-visual > img,
.page-index2 .site-home-visual p > img {
    border-radius: 14px;
}

.page-index2 #carousel {
    margin-top: 1.5rem;
}

.page-index2 .carousel,
.page-index2 .carousel-inner,
.page-index2 .carousel-item {
    border-radius: 14px;
}

.page-index2 .site-home-proof {
    margin: 1.5rem 0 0;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    background: var(--site-surface-soft);
    border: 1px solid var(--site-border);
    text-align: center;
}

/* Visual redesign refinement: the Contact Us information block uses a compact translucent tint and stronger hierarchy instead of a large plain-white card. */
.page-contactus .contact-info-card {
    padding: 1.35rem 1.25rem;
    background: linear-gradient(145deg, rgba(var(--site-brand-rgb), .13), rgba(var(--site-brand-rgb), .055)) !important;
    border-color: rgba(var(--site-brand-rgb), .24);
    box-shadow: 0 12px 32px rgba(24, 33, 43, .08);
    text-align: center;
}

.page-contactus .contact-info-card__group + .contact-info-card__group {
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(25, 38, 52, .12);
}

.page-contactus .contact-info-card__label {
    margin-bottom: .35rem;
    color: var(--site-muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.page-contactus .contact-info-card__label--secondary {
    margin-top: .8rem;
}

.page-contactus .contact-info-card__entry {
    line-height: 1.45;
}

.page-contactus .contact-info-card__entry p {
    margin-bottom: .2rem;
}

.page-contactus .contact-info-card__entry a {
    font-size: 1.08rem;
    font-weight: 750;
}

.page-contactus .contact-info-card__entry strong {
    display: block;
    margin-bottom: .15rem;
    font-size: .9rem;
}

/* Overall visual modernization: buttons and form controls receive current sizing without changing names, ids, actions, validation, or submission behavior. */
.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: .62rem 1.1rem;
}

.btn-sm {
    padding: .55rem 1rem;
}

.btn-lg {
    padding: .8rem 1.45rem;
}

.btn-danger,
.btn-success {
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(24,33,43,.13);
}

.form-group {
    margin-bottom: 1rem;
}

.form-control,
input[type=text],
textarea[type=text] {
    width: 100%;
    margin-left: 0;
    min-height: 46px;
    padding: .65rem .8rem;
    border: 1px solid #aeb8c2;
    border-radius: 10px;
    background: #fff;
    font-size: 1rem;
}

textarea.form-control,
textarea[type=text] {
    min-height: 130px;
}

.form-control:focus,
input[type=text]:focus,
textarea[type=text]:focus {
    border-color: #557d98;
    box-shadow: 0 0 0 .2rem rgba(85,125,152,.14);
}

.control-label {
    display: inline-block;
    margin-bottom: .4rem;
    color: var(--site-ink);
}

/* Overall visual modernization: leadership biographies read as deliberate profile cards instead of raw Bootstrap-3-era blockquotes. */
.page-leadership blockquote {
    margin-bottom: 1.4rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--site-border);
    border-left: 5px solid #7f8b94;
    border-radius: 0 var(--site-radius) var(--site-radius) 0;
    background: var(--site-surface);
    box-shadow: 0 10px 28px rgba(24,33,43,.07);
}

.page-leadership blockquote > p {
    font-size: 1.25rem;
    font-weight: 750;
}

.page-leadership blockquote footer {
    color: var(--site-muted);
}

/* Visual redesign refinement: condense both footer families so required contact/company text remains readable without dominating the page. */
.shared-site-footer {
    min-height: 0;
    margin-top: auto;
    padding: 1.05rem 0 .9rem;
    color: #172027;
    border-top: 1px solid rgba(18,31,42,.12);
}

.shared-site-footer--standard {
    position: relative;
    background-color: #a9b0b5;
    background-position: center;
    background-size: cover;
}

.shared-site-footer--standard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.32);
}

.shared-site-footer--ltss {
    background: linear-gradient(135deg, #d8dcdf, #aeb4b9);
}

.shared-site-footer .container {
    position: relative;
}

.shared-site-footer__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .35rem 1.4rem;
    font-size: .86rem;
    line-height: 1.4;
}

.shared-site-footer__content > p {
    margin: 0;
}

.shared-site-footer__content p {
    margin-bottom: 0;
}

.shared-site-footer__content a {
    display: inline-block;
    margin-top: .15rem;
    padding: .18rem .42rem;
    border-radius: 7px;
    color: #173f58;
    text-decoration: none;
}

.shared-site-footer__content a:hover,
.shared-site-footer__content a:focus {
    background: rgba(255,255,255,.55);
}

/* Visual redesign refinement: keep the entire employment branding column sticky on larger screens, whether a company renders it as a card or as an open logo/image treatment. */
.page-employment .employment-brand-column,
.page-employmentHHC .employment-brand-column {
    position: sticky;
    top: 102px;
    align-self: flex-start;
}

.page-employment .employment-brand-panel,
.page-employmentHHC .employment-brand-panel {
    padding: 1.25rem;
    border: 1px solid rgba(var(--site-brand-rgb), .18);
    border-radius: var(--site-radius);
    background: linear-gradient(145deg, rgba(var(--site-brand-rgb), .08), rgba(255,255,255,.88));
    box-shadow: var(--site-shadow);
}

/* Visual redesign refinement: Before You Begin acknowledgment separates application requirements from Step 1 without adding any submitted application data. */
.employment-before-you-begin {
    margin: 0 0 1.35rem;
    padding: 1.35rem;
    border: 1px solid rgba(var(--site-brand-rgb), .22);
    border-radius: var(--site-radius);
    background: linear-gradient(145deg, rgba(var(--site-brand-rgb), .11), rgba(255,255,255,.88));
    box-shadow: var(--site-shadow-soft);
}

.employment-before-you-begin__eyebrow {
    margin: 0 0 .25rem;
    color: var(--site-muted);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.employment-before-you-begin__important {
    margin: 1rem 0;
    padding: .8rem .9rem;
    border-left: 4px solid rgba(var(--site-brand-rgb), .72);
    background: rgba(var(--site-brand-rgb), .08);
}

.employment-acknowledgment {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin: 1rem 0;
    padding: .85rem;
    border: 1px solid rgba(var(--site-brand-rgb), .18);
    border-radius: 12px;
    background: rgba(255,255,255,.66);
    cursor: pointer;
}

.employment-acknowledgment input {
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
    margin-top: .15rem;
}

/* Visual redesign refinement: step-level validation clearly identifies missing mandatory information before Next can advance. */
.application-validation-summary {
    margin: 0 0 1rem;
    padding: .9rem 1rem;
    border: 1px solid rgba(171, 58, 45, .34);
    border-radius: 12px;
    background: rgba(255, 239, 236, .94);
    color: #76291f;
}

.application-validation-summary ul {
    margin: .45rem 0 0;
    padding-left: 1.2rem;
}

.application-field-invalid {
    outline: 3px solid rgba(190, 76, 54, .24) !important;
    border-color: #b94b38 !important;
}

.employment-progress {
    margin: 0 0 1.35rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(var(--site-brand-rgb), .20);
    border-radius: 14px;
    background: rgba(255,255,255,.78);
}

.employment-progress__eyebrow {
    margin: 0 0 .2rem;
    color: var(--site-muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.employment-progress__title {
    margin: 0 0 .65rem;
    font-size: 1.15rem;
    font-weight: 750;
}

.employment-progress__bar {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(var(--site-brand-rgb), .12);
}

.employment-progress__bar > span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: rgba(var(--site-brand-rgb), .72);
    transition: width .2s ease;
}

.application-step[hidden] { display: none !important; }

.application-step__nav {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--site-border);
}

.application-step__nav .btn-next { margin-left: auto; }

.application-step .style2 {
    background: linear-gradient(145deg, rgba(var(--site-brand-rgb), .075), rgba(255,255,255,.91)) !important;
    border-color: rgba(var(--site-brand-rgb), .18);
}

@media (max-width: 991.98px) {
    body {
        font-size: 15px;
    }

    /* Visual redesign refinement: sticky employment branding becomes normal stacked content on smaller screens. */
    .page-employment .employment-brand-column,
    .page-employmentHHC .employment-brand-column {
        position: static;
        margin-bottom: 1rem;
    }

    .shared-site-navbar__collapse {
        margin-top: .55rem;
        padding: .65rem 0 .85rem;
    }

    .shared-site-navbar .nav-link {
        border-radius: 10px;
        padding: .74rem .55rem;
    }


    .section {
        padding: .8rem 0;
    }

    .section > .container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .page-index2 .site-home-panel {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    body {
        line-height: 1.62;
    }

    .shared-site-navbar__brand img {
        max-width: 104px;
        max-height: 52px;
    }

    .section .style2 {
        padding: 1.1rem;
        border-radius: 14px;
    }

    .page-index2 .site-home-panel {
        border-radius: 14px;
    }

    /* Visual redesign refinement: stack the condensed footer cleanly on narrow screens while keeping mobile padding modest. */
    .shared-site-footer {
        min-height: 0;
        padding: 1rem 0 .9rem;
    }

    .shared-site-footer__content {
        display: block;
        font-size: .84rem;
    }

    .shared-site-footer__content > p + p {
        margin-top: .35rem;
    }
}

/* Accessibility: provide a high-visibility keyboard focus treatment, a skip link, and practical WCAG 2.2 target sizing without changing company branding. */
.skip-link {
    position: fixed;
    top: .5rem;
    left: .5rem;
    z-index: 2000;
    padding: .7rem 1rem;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
    outline: 3px solid #0b5fff !important;
    outline-offset: 3px;
}

.shared-site-navbar .nav-link,
.shared-site-navbar .dropdown-item,
.shared-site-navbar__toggler,
.btn {
    min-height: 44px;
}

.shared-site-navbar .nav-link,
.shared-site-navbar .dropdown-item,
.btn {
    display: inline-flex;
    align-items: center;
}

.form-control,
input[type=text],
input[type=email],
input[type=tel],
textarea[type=text] {
    font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
