/*:root {
    --blue: #0b5ba4;
    --blue-dark: #08457d;
    --red: #c8102e;
    --cyan: #18b6c9;
    --ink: #102a43;
    --muted: #66788a;
    --bg: #f4f8fb;
    --surface: #ffffff;
    --border: #e3edf4;
    --shadow: 0 18px 50px rgba(16, 42, 67, .08);
}*/



:root {
    --blue: #0b5ba4;
    --blue-dark: #08457d;
    --blue-light: #eaf4fb;
    --red: #c8102e;
    --red-dark: #a80d26;
    --red-light: #fcecef;
    --cyan: #18b6c9;
    --ink: #102a43;
    --ink-soft: #29465d;
    --muted: #66788a;
    --bg: #f4f8fb;
    --surface: #ffffff;
    --border: #e3edf4;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 8px 25px rgba(16, 42, 67, .06);
    --shadow: 0 18px 50px rgba(16, 42, 67, .08);
    --shadow-lg: 0 30px 80px rgba(16, 42, 67, .13);
    --transition: .28s cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: "DM Sans", sans-serif;
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.admin-brand {
    font-family: "Manrope", sans-serif;
}

a {
    color: var(--blue);
    text-decoration: none;
}

    a:hover {
        color: var(--blue-dark);
    }

.topbar {
    padding: .55rem 0;
    color: #fff;
    background: var(--blue);
    font-size: .84rem;
}

.site-nav,
.portal-nav {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(16, 42, 67, .06);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--ink);
    font-weight: 700;
    font-size: 1.3rem;
}

    .brand:hover {
        color: var(--ink);
    }

    .brand strong {
        font-weight: 800;
    }

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    background: var(--blue);
    border-radius: 13px;
    box-shadow: 0 12px 25px rgba(11, 91, 164, .22);
}

    .brand-icon.large {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

.nav-link {
    color: #536777;
    font-weight: 600;
    padding: .7rem .8rem !important;
}

    .nav-link:hover,
    .nav-link:focus {
        color: var(--blue);
    }

.nurse-link {
    color: var(--blue) !important;
}




.site-nav,
.portal-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(11, 91, 164, .08);
    box-shadow: 0 6px 30px rgba(16, 42, 67, .05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navbar {
    min-height: 72px;
}

.nav-link {
    position: relative;
    color: #536777;
    font-weight: 600;
    transition: color var(--transition);
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: .8rem;
        right: .8rem;
        bottom: .35rem;
        height: 2px;
        background: var(--blue);
        border-radius: 10px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform var(--transition);
    }

    .nav-link:hover::after,
    .nav-link:focus::after {
        transform: scaleX(1);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--blue);
    }



.btn-primary {
    background: var(--blue);
    border-color: var(--blue);
}

    .btn-primary:hover,
    .btn-primary:focus {
        background: var(--blue-dark);
        border-color: var(--blue-dark);
    }

.btn-outline-primary {
    color: var(--blue);
    border-color: #a9c9e2;
}

    .btn-outline-primary:hover {
        background: var(--blue);
        border-color: var(--blue);
    }

.eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 18%, rgba(24, 182, 201, .16), transparent 31%), radial-gradient(circle at 20% 80%, rgba(11, 91, 164, .08), transparent 30%), linear-gradient(135deg, #fafdff, #edf8fc);
}

.min-vh-75 {
    min-height: 75vh;
}

.display-title {
    max-width: 760px;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.02;
    font-weight: 800;
}

    .display-title span {
        color: var(--blue);
    }

.hero-visual {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.hero-care-card {
    position: relative;
    z-index: 2;
    width: min(390px, 92%);
    padding: 48px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 30px;
    box-shadow: 0 35px 80px rgba(16, 42, 67, .14);
    backdrop-filter: blur(18px);
    animation: floatCard 5s ease-in-out infinite;
}

    .hero-care-card h3 {
        margin-top: .75rem;
    }

.care-points {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.3rem;
}

    .care-points span {
        padding: .45rem .7rem;
        border-radius: 999px;
        color: var(--blue);
        background: #eef7fc;
        font-size: .8rem;
        font-weight: 700;
    }

    .care-points i {
        margin-right: .2rem;
    }

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(11, 91, 164, .12);
    border-radius: 50%;
    animation: rotateOrbit 18s linear infinite;
}

.orbit-one {
    width: 420px;
    height: 420px;
}

.orbit-two {
    width: 540px;
    height: 540px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.brand-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.section {
    padding: 68px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
}

    .section-heading h2 {
        margin-top: .5rem;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .section-heading p {
        color: var(--muted);
    }

.service-card,
.feature-card,
.panel,
.info-card,
.shift-card,
.auth-card,
.contact-info-card,
.service-detail-card,
.portal-stat,
.admin-stat-card,
.admin-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.service-card {
    display: block;
    height: 100%;
    padding: 40px;
    color: var(--ink);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .service-card:hover {
        color: var(--ink);
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(16, 42, 67, .12);
    }



.service-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    color: var(--blue);
    background: #eaf5fb;
    border-radius: 16px;
    font-size: 1.4rem;
}

    .service-icon.large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

.service-card h4 {
    margin-top: 1.3rem;
}

.service-card p {
    min-height: 76px;
    color: var(--muted);
}

.service-link {
    font-weight: 700;
}

.cta-section {
    padding: 0 0 88px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 54px;
    color: #fff;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--blue), #087eae);
    box-shadow: 0 25px 70px rgba(11, 91, 164, .22);
}

    .cta-card .eyebrow {
        color: #bdeff6;
    }

.page-head {
    padding: 82px 0 52px;
    background: linear-gradient(135deg, #eff9fc, #fff);
}

    .page-head h1 {
        margin-top: .45rem;
        font-size: clamp(2.3rem, 5vw, 4.5rem);
        font-weight: 800;
    }

    .page-head p {
        max-width: 760px;
        color: var(--muted);
        font-size: 1.08rem;
    }

.info-card,
.contact-info-card,
.service-detail-card,
.panel {
    padding: 32px;
}

.info-row,
.contact-detail {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

    .info-row:last-child,
    .contact-detail:last-child {
        border-bottom: 0;
    }

    .info-row > i,
    .contact-detail > i {
        color: var(--blue);
        font-size: 1.3rem;
    }

    .info-row div,
    .contact-detail div {
        display: flex;
        flex-direction: column;
    }

    .info-row span,
    .contact-detail span {
        color: var(--muted);
        font-size: .9rem;
    }

.check-list {
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

    .check-list li {
        margin: .7rem 0;
    }

    .check-list i {
        margin-right: .5rem;
        color: var(--blue);
    }

.gallery-box {
    min-height: 250px;
    display: grid;
    place-items: center;
    gap: .3rem;
    align-content: center;
    color: var(--blue);
    background: linear-gradient(135deg, rgba(24, 182, 201, .18), rgba(11, 91, 164, .08)), #edf6fa;
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: transform .25s ease;
}

    .gallery-box:hover {
        transform: translateY(-5px);
    }

    .gallery-box i {
        font-size: 2.4rem;
    }

.form-control,
.form-select {
    min-height: 48px;
    padding: .7rem .95rem;
    color: var(--ink);
    border-color: #d6e4ed;
    border-radius: 12px;
}

textarea.form-control {
    min-height: auto;
}

.form-control:focus,
.form-select:focus {
    border-color: #76add2;
    box-shadow: 0 0 0 .2rem rgba(11, 91, 164, .11);
}

.form-label {
    font-weight: 700;
}

.auth-page {
    min-height: 82vh;
    display: grid;
    place-items: center;
    padding: 70px 0;
    background: radial-gradient(circle at 20% 20%, rgba(24, 182, 201, .12), transparent 30%), linear-gradient(135deg, #f8fcff, #edf7fb);
}

.auth-card {
    width: min(520px, 100%);
    padding: 48px;
    margin: 0 auto;
}

.auth-card-wide {
    width: min(860px, 100%);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--muted);
    font-size: .9rem;
}

    .auth-divider::before,
    .auth-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.public-footer,
.portal-footer {
    color: #d8e7f0;
    background: #102a43;
}

    .public-footer a {
        display: block;
        margin: .4rem 0;
        color: #d8e7f0;
    }

        .public-footer a:hover {
            color: #fff;
        }

.footer-brand {
    display: inline-flex !important;
    align-items: center;
    gap: .5rem;
    color: #fff !important;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.call-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(11, 91, 164, .28);
}

.portal-body {
    background: #f4f8fb;
}

.portal-nav {
    background: rgba(255, 255, 255, .98);
}

.portal-head {
    padding: 58px 0 36px;
    background: linear-gradient(135deg, #eef8fb, #fff);
    border-bottom: 1px solid var(--border);
}

    .portal-head h1 {
        margin-top: .35rem;
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .portal-head p {
        margin-bottom: 0;
        color: var(--muted);
    }

.portal-stat {
    padding: 24px;
}

    .portal-stat span {
        color: var(--muted);
        font-size: .9rem;
    }

    .portal-stat strong {
        display: block;
        margin-top: .2rem;
        font-family: "Manrope", sans-serif;
        font-size: 2.3rem;
    }

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

    .panel-header h3 {
        margin: .25rem 0 0;
    }

.empty-state {
    padding: 50px 20px;
    text-align: center;
    color: var(--muted);
}

    .empty-state i {
        display: block;
        margin-bottom: .7rem;
        color: var(--blue);
        font-size: 2.5rem;
    }

    .empty-state.compact {
        padding: 30px 10px;
    }

.status-pill {
    display: inline-flex;
    padding: .32rem .65rem;
    border-radius: 999px;
    color: var(--ink);
    background: #edf2f5;
    font-size: .75rem;
    font-weight: 800;
    text-transform: capitalize;
}

.status-open,
.status-active,
.status-selected {
    color: #12633b;
    background: #dff5e9;
}

.status-applied,
.status-new,
.status-shortlisted {
    color: #075e93;
    background: #e2f2fb;
}

.status-contacted {
    color: #725400;
    background: #fff1c7;
}

.status-closed,
.status-rejected,
.status-cancelled,
.status-blocked,
.status-filled,
.status-expired {
    color: #8c1f2d;
    background: #fde6e9;
}

.shift-card {
    height: 100%;
    padding: 30px;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .shift-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 60px rgba(16, 42, 67, .12);
    }

.shift-type {
    color: var(--muted);
    font-weight: 700;
    font-size: .85rem;
}

.shift-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.1rem;
    color: #526a7c;
    font-size: .9rem;
}

    .shift-meta i {
        color: var(--blue);
        margin-right: .25rem;
    }

.requirements {
    padding: 15px;
    color: #425b6e;
    background: #f4f8fb;
    border-radius: 14px;
}

    .requirements strong {
        display: block;
        margin-bottom: .3rem;
        color: var(--ink);
    }

.form-panel {
    max-width: 850px;
    margin: 0 auto;
}

.profile-avatar,
.mini-avatar {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--blue);
    background: #eaf5fb;
    border-radius: 16px;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
}

.mini-avatar.large {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
}

.profile-label {
    display: block;
    margin-bottom: .15rem;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.profile-card strong {
    display: block;
}

.admin-body {
    min-height: 100vh;
    background: #f4f7fa;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: .75rem 0;
    color: #fff;
    background: #102a43;
    box-shadow: 0 8px 25px rgba(16, 42, 67, .12);
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
}

    .admin-brand:hover {
        color: #fff;
    }

    .admin-brand .brand-icon {
        width: 38px;
        height: 38px;
        box-shadow: none;
    }

.admin-user {
    color: #dce8ef;
    font-size: .9rem;
}

.admin-menu-btn {
    color: #fff;
    font-size: 1.5rem;
}

.admin-shell {
    display: flex;
    min-height: calc(100vh - 62px);
}

.admin-sidebar {
    width: 250px;
    flex: 0 0 250px;
    color: #d7e4ec;
    background: #102a43;
}

.admin-sidebar-inner {
    width: 100%;
    padding: 25px 14px;
}

.sidebar-label {
    padding: 10px 14px 7px;
    color: #7f9aae;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.admin-side-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 3px 0;
    padding: 11px 14px;
    color: #d7e4ec;
    border-radius: 12px;
    font-weight: 600;
}

    .admin-side-link:hover,
    .admin-side-link.active {
        color: #fff;
        background: rgba(255, 255, 255, .09);
    }

    .admin-side-link i {
        width: 22px;
        text-align: center;
    }

.admin-content {
    min-width: 0;
    flex: 1;
    padding: 30px;
}

.admin-page {
    max-width: 1500px;
    margin: 0 auto;
}

.admin-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 25px;
}

    .admin-page-head h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .admin-page-head p {
        margin: 0;
        color: var(--muted);
    }

.admin-stat-card {
    height: 100%;
    padding: 24px;
}

    .admin-stat-card span {
        color: var(--muted);
        font-size: .9rem;
    }

    .admin-stat-card strong {
        display: block;
        margin: .3rem 0 .6rem;
        font-family: "Manrope", sans-serif;
        font-size: 2.5rem;
    }

    .admin-stat-card a {
        font-size: .88rem;
        font-weight: 700;
    }

.admin-panel {
    padding: 25px;
}

.admin-table {
    min-width: 900px;
}

.admin-list-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 13px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
}

    .admin-list-item:last-child {
        border-bottom: 0;
    }

    .admin-list-item span:nth-child(2) {
        display: flex;
        flex-direction: column;
    }

    .admin-list-item small {
        color: var(--muted);
    }

.applicant-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fbfdff;
}

.applicant-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .applicant-main h4 {
        margin: 0;
    }

    .applicant-main p {
        color: #526a7c;
    }

.applicant-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.applicant-message {
    margin-top: 1rem;
    padding: 14px;
    background: #f4f8fb;
    border-radius: 14px;
}

    .applicant-message p {
        margin: .25rem 0 0;
        white-space: pre-line;
    }

.applicant-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .7rem;
    margin-top: 1rem;
}

.status-form {
    display: flex;
    flex: 1 1 600px;
    gap: .5rem;
}

    .status-form .form-select {
        max-width: 160px;
    }

.message-cell {
    max-width: 220px;
    max-height: 90px;
    overflow: auto;
    white-space: pre-line;
    color: var(--muted);
    font-size: .85rem;
}

.admin-login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.2rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.admin-offcanvas {
    width: 280px !important;
    color: #d7e4ec;
    background: #102a43;
}

    .admin-offcanvas .offcanvas-header {
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .admin-offcanvas .btn-close {
        filter: invert(1);
    }

    .admin-offcanvas .admin-sidebar-inner {
        padding-top: 15px;
    }

.admin-auth-page {
    min-height: calc(100vh - 70px);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991.98px) {
    .public-header .navbar-nav {
        padding: .75rem 0;
    }

    .hero-visual {
        min-height: 420px;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 430px;
        height: 430px;
    }

    .admin-content {
        padding: 22px 16px;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        font-size: .72rem;
    }

        .topbar .container {
            justify-content: center !important;
        }

    .brand {
        font-size: 1.05rem;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .section {
        padding: 58px 0;
    }

    .page-head {
        padding: 55px 0 38px;
    }

    .hero {
        text-align: left;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-care-card {
        padding: 28px;
    }

    .orbit-one {
        width: 280px;
        height: 280px;
    }

    .orbit-two {
        width: 350px;
        height: 350px;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }

    .admin-page-head {
        align-items: flex-start;
        flex-direction: column;
    }

        .admin-page-head .btn {
            width: 100%;
        }

    .admin-panel,
    .panel {
        padding: 20px;
        border-radius: 18px;
    }

    .applicant-details {
        grid-template-columns: 1fr;
    }

    .status-form {
        flex-direction: column;
    }

        .status-form .form-select {
            max-width: none;
        }

    .auth-card {
        padding: 28px 20px;
    }

    .call-fab {
        right: 15px;
        bottom: 15px;
    }
}

.status-select {
    min-width: 110px;
}

/* =========================================================
   Junee Home Care - Refreshed Public Home Experience
   Official brand: #0B5BA4 / #C5102F
   ========================================================= */

.public-home .hero {
    min-height: calc(100vh - 112px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 88% 16%, rgba(197, 16, 47, .12), transparent 24%), radial-gradient(circle at 8% 78%, rgba(11, 91, 164, .16), transparent 30%), linear-gradient(135deg, #fafdff 0%, #edf6fc 48%, #ffffff 100%);
}

    .public-home .hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -180px;
        top: -190px;
        border: 70px solid rgba(197, 16, 47, .055);
        border-radius: 50%;
        animation: heroPulse 7s ease-in-out infinite;
    }

    .public-home .hero::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        left: -110px;
        bottom: -110px;
        border-radius: 50%;
        background: rgba(11, 91, 164, .08);
        filter: blur(3px);
    }

    .public-home .hero .container {
        position: relative;
        z-index: 2;
    }

.public-home .hero-copy {
    position: relative;
}

.public-home .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .9rem;
    color: var(--blue);
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(11,91,164,.14);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(11,91,164,.08);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
}

    .public-home .hero-badge i {
        color: var(--red);
    }

.public-home .display-title {
    margin-bottom: 0;
    letter-spacing: -.045em;
}

    .public-home .display-title .accent-red {
        color: var(--red);
    }

.public-home .hero-description {
    max-width: 650px;
    color: #536777;
    font-size: 1.12rem;
}

.public-home .hero-actions .btn {
    min-height: 54px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(11,91,164,.16);
}

.public-home .hero-actions .btn-primary:hover {
    transform: translateY(-2px);
}

.public-home .btn-brand-red {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
}

    .public-home .btn-brand-red:hover,
    .public-home .btn-brand-red:focus {
        color: #fff;
        background: var(--red-dark);
        border-color: var(--red-dark);
    }

.public-home .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 1.7rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(11,91,164,.12);
}

.public-home .hero-trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #536777;
    font-size: .88rem;
    font-weight: 700;
}

    .public-home .hero-trust-item i {
        color: var(--red);
    }

.public-home .hero-visual {
    min-height: 560px;
}

.public-home .hero-care-card {
    width: min(410px, 90%);
    padding: 34px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.95);
    box-shadow: 0 35px 90px rgba(16,42,67,.17), 0 0 0 10px rgba(11,91,164,.035);
}

    .public-home .hero-care-card::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        right: -35px;
        top: -35px;
        border-radius: 50%;
        background: rgba(197,16,47,.10);
        border: 1px solid rgba(197,16,47,.16);
    }

    .public-home .hero-care-card .brand-icon {
        background: linear-gradient(145deg, var(--blue), #0d76ca);
    }

.public-home .care-points span {
    background: var(--blue-light, #eaf3fb);
    border: 1px solid rgba(11,91,164,.08);
}

.public-home .hero-stat-strip {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 22px;
    display: flex;
    gap: .7rem;
    width: 100%;
    justify-content: center;
}

.public-home .hero-stat {
    min-width: 145px;
    padding: .8rem 1rem;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(11,91,164,.10);
    border-radius: 18px;
    box-shadow: 0 16px 35px rgba(16,42,67,.10);
    backdrop-filter: blur(14px);
}

    .public-home .hero-stat strong {
        display: block;
        color: var(--blue);
        font-family: "Manrope", sans-serif;
        font-size: 1.1rem;
    }

    .public-home .hero-stat small {
        color: #6b7f90;
    }

.public-home .section.services-section {
    position: relative;
    background: #fff;
}

    .public-home .section.services-section::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(234,243,251,.45), transparent 28%);
    }

.public-home .services-section .container {
    position: relative;
}

.public-home .section-heading .eyebrow {
    color: var(--red);
}

.eyebrow {
    color: var(--red);
}

.public-home .service-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-color: rgba(11,91,164,.10);
    box-shadow: 0 15px 45px rgba(16,42,67,.07);
}

    .public-home .service-card::after {
        content: "";
        position: absolute;
        width: 95px;
        height: 95px;
        right: -48px;
        bottom: -48px;
        border-radius: 50%;
        background: rgba(197,16,47,.055);
        transition: transform .3s ease;
    }

    .public-home .service-card:hover::after {
        transform: scale(1.7);
    }

    .public-home .service-card:hover {
        border-color: rgba(11,91,164,.20);
        box-shadow: 0 25px 60px rgba(11,91,164,.12);
    }

.public-home .service-icon {
    color: var(--blue);
    background: linear-gradient(145deg, #eaf3fb, #f8fbfe);
    border: 1px solid rgba(11,91,164,.08);
}

.public-home .service-link {
    color: var(--blue);
}

.public-home .service-card:nth-child(3n) .service-icon {
    color: var(--red);
    background: var(--red-light, #fcecef);
}

.public-home .home-highlight {
    padding: 50px 0;
    background: linear-gradient(135deg, #f7fbfe 0%, #edf6fc 100%);
}

.public-home .highlight-card {
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(11,91,164,.10);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(16,42,67,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}


.highlight-card:hover {
    color: var(--ink);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(16, 42, 67, .12);
}


.public-home .highlight-card .icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    color: #fff;
    background: var(--blue);
    border-radius: 16px;
    font-size: 1.25rem;
}

.public-home .highlight-card:nth-child(2) .icon {
    background: var(--red);
}

.public-home .highlight-card:nth-child(3) .icon {
    background: linear-gradient(145deg, var(--blue), #0b83bd);
}

.public-home .home-final-cta {
    padding: 0 0 90px;
    background: linear-gradient(180deg, #f7fbfe, #fff);
}

.public-home .cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--blue) 0%, #0871bd 68%, #075394 100%);
}

    .public-home .cta-card::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        right: -80px;
        top: -110px;
        border: 55px solid rgba(255,255,255,.08);
        border-radius: 50%;
    }

    .public-home .cta-card > * {
        position: relative;
        z-index: 2;
    }

    .public-home .cta-card .eyebrow {
        color: #ffd6de;
    }

    .public-home .cta-card .btn-light {
        color: var(--blue);
        font-weight: 800;
    }

@keyframes heroPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .75;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .public-home .hero {
        min-height: auto;
    }

    .public-home .hero-visual {
        min-height: 500px;
    }
}

@media (max-width: 575.98px) {
    .public-home .hero {
        padding-bottom: 1.5rem;
    }

    .public-home .display-title {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .public-home .hero-description {
        font-size: 1rem;
    }

    .public-home .hero-actions .btn {
        width: 100%;
    }

    .public-home .hero-visual {
        min-height: 420px;
    }

    .public-home .hero-care-card {
        padding: 26px;
    }

    .public-home .hero-stat-strip {
        position: relative;
        bottom: auto;
        margin-top: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .public-home .hero-stat {
        min-width: 0;
    }
}



.home-stats {
    padding: 45px 0 60px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0B5BA4;
}

.stat-label {
    color: #526273;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}


/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    padding: 40px 0 50px;
    background: #f7fbfd;
}

.about-title {
    max-width: 700px;
    margin: 0 0 20px;
    color: #102f4d;
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
}

    .about-title .accent-red {
        color: var(--red);
    }

    .about-title span {
        color: #176bb0;
    }

.about-lead {
    max-width: 650px;
    margin: 0;
    color: #5d7890;
    font-size: 18px;
    line-height: 1.7;
}

.about-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

    .about-hero-image img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

.about-heart {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #0871bc;
    background: #fff;
    border-radius: 50%;
    font-size: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.hero-feature {
    height: 100%;
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    color: #086bb5;
    background: #eaf5fc;
    border-radius: 12px;
    font-size: 20px;
}

.hero-feature strong,
.hero-feature small {
    display: block;
}

.hero-feature strong {
    margin-bottom: 5px;
    color: #173754;
    font-size: 13px;
}

.hero-feature small {
    color: #688197;
    font-size: 11px;
    line-height: 1.5;
}


/* INTRO */

.about-intro {
    padding: 45px 0;
    background: #f2f7fa;
}

.section-title {
    margin: 0 0 15px;
    color: #102f4d;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
}

.about-intro p,
.values-section p,
.support-section p {
    color: #617b91;
    line-height: 1.75;
}


/* SECTION HEADING */

.section-heading {
    max-width: 760px;
    margin: 0 auto;
}

    .section-heading p {
        margin: 0;
        color: #617b91;
        line-height: 1.7;
    }


/* HOW WE HELP */

.how-help-section {
    padding: 50px 0;
    background: #fff;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 32px;
    background: #f8fbfd;
    border: 1px solid #e1edf4;
    border-radius: 20px;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .process-card:hover {
        color: var(--ink);
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(16, 42, 67, .12);
    }

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    color: #086bb5;
    background: #e8f4fc;
    border-radius: 50%;
    font-size: 25px;
}

.process-number {
    display: inline-block;
    margin-bottom: 10px;
    color: #0870bb;
    font-size: 12px;
    font-weight: 700;
}

.process-card h3 {
    margin-bottom: 10px;
    color: #153652;
    font-size: 20px;
}

.process-card p {
    margin: 0;
    color: #657e93;
    line-height: 1.7;
}


/* VALUES */

.values-section {
    padding: 50px 0;
    background: #f2f7fa;
}

.values-card {
    padding: 12px 30px;
    background: #fff;
    border: 1px solid #e1ebf2;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(20, 65, 95, .06);
}

.value-item {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
}

    .value-item + .value-item {
        border-top: 1px solid #e2ebf1;
    }

.value-icon {
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #0870bb;
    background: #edf7fd;
    border-radius: 12px;
}

.value-item h4 {
    margin: 0 0 3px;
    color: #153652;
    font-size: 16px;
}

.value-item p {
    margin: 0;
    color: #678096;
    font-size: 14px;
}


/* COMMITMENT */

.commitment-text {
    margin-top: 25px;
    color: #153652 !important;
    font-weight: 600;
}


/* SERVICES */

.about-services {
    padding: 50px 0;
    background: #fff;
}

.mini-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 125px;
    padding: 18px 10px;
    text-align: center;
    background: #f7fbfd;
    border: 1px solid #e2edf3;
    border-radius: 16px;
    transition: .2s ease;
}

    .mini-service:hover {
        transform: translateY(-3px);
        border-color: #c9e2f2;
    }

    .mini-service i {
        margin-bottom: 10px;
        color: #0870bb;
        font-size: 27px;
    }

    .mini-service span {
        color: #173b59;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.4;
    }

.about-services-btn {
    padding: 10px 22px;
    border-radius: 30px;
}


/* WHO WE SUPPORT */

.support-section {
    padding: 50px 0;
    background: #f2f7fa;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.support-item {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e2ebf1;
    border-radius: 16px;
}

    .support-item > i {
        color: #0870bb;
        font-size: 23px;
    }

    .support-item strong,
    .support-item span {
        display: block;
    }

    .support-item strong {
        margin-bottom: 4px;
        color: #173b59;
        font-size: 14px;
    }

    .support-item span {
        color: #6b8398;
        font-size: 12px;
        line-height: 1.5;
    }


/* CTA */

.about-cta {
    padding: 30px 0 80px;
    background: #f2f7fa;
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 40px;
    color: #fff;
    background: #086abd;
    border-radius: 22px;
}

.cta-icon {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #086abd;
    background: #fff;
    border-radius: 50%;
    font-size: 25px;
}

.cta-content {
    flex: 1;
}

    .cta-content h2 {
        margin: 0 0 8px;
        font-size: 27px;
    }

    .cta-content p {
        max-width: 550px;
        margin: 0;
        opacity: .9;
        line-height: 1.6;
    }

.cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

    .cta-actions .btn {
        padding: 11px 20px;
        border-radius: 30px;
        font-size: 14px;
    }


/* MOBILE */

@media (max-width: 991.98px) {

    .about-hero {
        padding: 55px 0;
    }

    .about-title {
        font-size: 48px;
    }

    .about-hero-image {
        margin-top: 10px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .cta-content {
        flex: 1 1 calc(100% - 90px);
    }

    .cta-actions {
        width: 100%;
        margin-left: 85px;
    }
}

@media (max-width: 575.98px) {

    .about-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .about-lead {
        font-size: 16px;
    }

    .section-title {
        font-size: 29px;
    }

    .hero-feature small {
        font-size: 10px;
    }

    .process-card {
        padding: 25px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        padding: 28px 25px;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .cta-content {
        flex-basis: calc(100% - 75px);
    }

        .cta-content h2 {
            font-size: 23px;
        }

    .cta-actions {
        margin-left: 0;
        flex-direction: column;
    }

        .cta-actions .btn {
            width: 100%;
        }
}



/*popup*/
.popup-notice {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 91, 164, .18);
}

.popup-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(11, 91, 164, .1);
    color: #0B5BA4;
    font-size: 1.2rem;
}

.popup-notice h3 {
    color: #17324d;
    font-weight: 700;
}



.btn {
    border-radius: 12px;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn:active {
        transform: translateY(0);
    }

.btn-primary {
    background: linear-gradient(135deg, #0b5ba4, #0877bd);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(11, 91, 164, .18);
}

    .btn-primary:hover,
    .btn-primary:focus {
        background: linear-gradient(135deg, #08457d, #0868a8);
        border-color: transparent;
        box-shadow: 0 14px 32px rgba(11, 91, 164, .25);
    }

.btn-brand-red {
    background: linear-gradient(135deg, var(--red), #e01b3c);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(200, 16, 46, .18);
}

    .btn-brand-red:hover {
        background: linear-gradient(135deg, var(--red-dark), var(--red));
        box-shadow: 0 14px 32px rgba(200, 16, 46, .25);
    }



.service-card {
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 0;
        background: linear-gradient( 180deg, var(--blue), var(--cyan) );
        border-radius: 0 0 8px 8px;
        transition: height var(--transition);
    }

    .service-card:hover::before {
        height: 100%;
    }

.service-icon {
    transition: transform var(--transition), background var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
}



.form-control,
.form-select {
    min-height: 50px;
    border: 1px solid #d8e5ee;
    border-radius: 12px;
    background: #fbfdff;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

    .form-control:hover,
    .form-select:hover {
        border-color: #b9d1e2;
        background: #fff;
    }

    .form-control:focus,
    .form-select:focus {
        background: #fff;
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(11, 91, 164, .09), 0 8px 25px rgba(11, 91, 164, .05);
    }

.form-label {
    color: var(--ink-soft);
    font-size: .88rem;
    font-weight: 700;
}


.admin-body {
    background: radial-gradient( circle at 90% 0%, rgba(11, 91, 164, .05), transparent 25% ), #f4f7fa;
}

.admin-stat-card {
    position: relative;
    overflow: hidden;
}

    .admin-stat-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        right: -35px;
        bottom: -45px;
        border-radius: 50%;
        background: rgba(11, 91, 164, .045);
    }

    .admin-stat-card strong {
        position: relative;
        z-index: 1;
    }

.admin-panel {
    border-color: rgba(16, 42, 67, .07);
}

.admin-table thead th {
    color: #60788b;
    background: #f7fafc;
    border-bottom: 1px solid var(--border);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.admin-table tbody tr {
    transition: background var(--transition);
}

    .admin-table tbody tr:hover {
        background: #f8fbfd;
    }


/* =========================================================
   CAREER / NURSE RECRUITMENT PAGE
   ========================================================= */

.careers-page {
    background: #fff;
}

.careers-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: radial-gradient(circle at 90% 15%, rgba(197,16,47,.10), transparent 25%), radial-gradient(circle at 5% 90%, rgba(11,91,164,.12), transparent 30%), linear-gradient(135deg, #fafdff, #edf7fc);
}

    .careers-hero h1 {
        max-width: 700px;
        margin: 15px 0 20px;
        color: var(--ink);
        font-size: clamp(3rem, 6vw, 5.2rem);
        font-weight: 800;
        line-height: 1.02;
        letter-spacing: -.045em;
    }

        .careers-hero h1 span {
            color: var(--blue);
        }

.careers-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--red);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
}

    .careers-eyebrow i {
        font-size: 1rem;
    }

    .careers-eyebrow.light {
        color: #ffd8df;
    }

.careers-lead {
    max-width: 680px;
    color: #536c7f;
    font-size: 1.12rem;
    line-height: 1.75;
}

.careers-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 30px;
}

    .careers-actions .btn {
        min-height: 52px;
        padding: .75rem 1.3rem;
        border-radius: 13px;
        font-weight: 700;
    }

.careers-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(11,91,164,.12);
}

    .careers-trust span {
        color: #587084;
        font-size: .86rem;
        font-weight: 700;
    }

    .careers-trust i {
        margin-right: .35rem;
        color: var(--red);
    }

.careers-hero-card {
    position: relative;
    padding: 40px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.95);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(16,42,67,.14);
    backdrop-filter: blur(18px);
}

    .careers-hero-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        right: -35px;
        bottom: -35px;
        border-radius: 50%;
        background: rgba(197,16,47,.08);
    }

.careers-hero-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #fff;
    background: linear-gradient(145deg, var(--blue), #087ec1);
    border-radius: 18px;
    font-size: 1.6rem;
}

.careers-hero-card h3 {
    margin-bottom: 12px;
}

.careers-hero-card p {
    color: var(--muted);
}

.career-mini-list {
    margin-top: 25px;
}

    .career-mini-list div {
        display: flex;
        align-items: center;
        gap: .75rem;
        padding: 13px 0;
        border-top: 1px solid var(--border);
        color: #425b6e;
        font-weight: 600;
    }

    .career-mini-list i {
        color: var(--blue);
        font-size: 1.1rem;
    }

.careers-section {
    padding: 85px 0;
}

.careers-light {
    background: #f5f9fc;
}

.career-benefit {
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(16,42,67,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .career-benefit:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(16,42,67,.11);
    }

.career-benefit-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--blue);
    background: #eaf4fb;
    border-radius: 16px;
    font-size: 1.3rem;
}

.career-benefit h4 {
    margin-bottom: 10px;
}

.career-benefit p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.career-check-list {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
}

    .career-check-list li {
        display: flex;
        gap: .7rem;
        margin: 13px 0;
        color: #435d70;
    }

    .career-check-list i {
        color: var(--blue);
        margin-top: 4px;
    }

.career-requirements {
    padding: 35px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 25px;
    box-shadow: 0 18px 50px rgba(16,42,67,.07);
}

    .career-requirements h3 {
        margin-bottom: 22px;
    }

        .career-requirements h3 i {
            margin-right: .5rem;
            color: var(--blue);
        }

.requirement-item {
    display: flex;
    gap: 15px;
    padding: 17px 0;
    border-top: 1px solid var(--border);
}

    .requirement-item > i {
        color: var(--blue);
        font-size: 1.25rem;
    }

    .requirement-item strong,
    .requirement-item span {
        display: block;
    }

    .requirement-item strong {
        margin-bottom: 3px;
    }

    .requirement-item span {
        color: var(--muted);
        font-size: .88rem;
    }

.career-opportunity {
    height: 100%;
    padding: 32px;
    background: #f8fbfd;
    border: 1px solid var(--border);
    border-radius: 22px;
    transition: .25s ease;
}

    .career-opportunity:hover {
        transform: translateY(-5px);
        background: #fff;
        box-shadow: 0 20px 50px rgba(16,42,67,.08);
    }

.opportunity-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--blue);
    background: #e8f4fc;
    border-radius: 15px;
    font-size: 1.35rem;
}

.career-opportunity p {
    margin: 0;
    color: var(--muted);
}

.career-step {
    position: relative;
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
}

.step-number {
    display: block;
    margin-bottom: 18px;
    color: var(--red);
    font-family: "Manrope", sans-serif;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.career-step > i {
    display: block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 1.8rem;
}

.career-step h4 {
    font-size: 1.05rem;
}

.career-step p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.careers-cta {
    padding: 0 0 90px;
    background: #f5f9fc;
}

.careers-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px;
    color: #fff;
    background: radial-gradient(circle at 90% 20%, rgba(255,255,255,.10), transparent 25%), linear-gradient(120deg, var(--blue), #075394);
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(11,91,164,.20);
}

    .careers-cta-inner h2 {
        margin: 8px 0;
        font-size: clamp(1.8rem, 4vw, 2.7rem);
    }

    .careers-cta-inner p {
        margin: 0;
        color: #d8eaf5;
    }

.careers-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

    .careers-cta-actions .btn {
        border-radius: 12px;
        font-weight: 700;
        white-space: nowrap;
    }

@media (max-width: 991.98px) {
    .careers-hero {
        padding: 70px 0;
    }

    .careers-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 35px;
    }
}

@media (max-width: 575.98px) {
    .careers-hero {
        padding: 55px 0;
    }

        .careers-hero h1 {
            font-size: 2.8rem;
        }

    .careers-lead {
        font-size: 1rem;
    }

    .careers-actions {
        flex-direction: column;
    }

        .careers-actions .btn {
            width: 100%;
        }

    .careers-trust {
        flex-direction: column;
        gap: .7rem;
    }

    .careers-hero-card {
        padding: 28px;
    }

    .careers-section {
        padding: 60px 0;
    }

    .careers-cta-inner {
        padding: 28px;
        border-radius: 22px;
    }

    .careers-cta-actions {
        width: 100%;
        flex-direction: column;
    }

        .careers-cta-actions .btn {
            width: 100%;
        }
}
/* =========================================================
   CAREER / NURSE RECRUITMENT PAGE
   ========================================================= */

.careers-page {
    background: #fff;
}

.careers-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: radial-gradient(circle at 90% 15%, rgba(197,16,47,.10), transparent 25%), radial-gradient(circle at 5% 90%, rgba(11,91,164,.12), transparent 30%), linear-gradient(135deg, #fafdff, #edf7fc);
}

    .careers-hero h1 {
        max-width: 700px;
        margin: 15px 0 20px;
        color: var(--ink);
        font-size: clamp(3rem, 6vw, 5.2rem);
        font-weight: 800;
        line-height: 1.02;
        letter-spacing: -.045em;
    }

        .careers-hero h1 span {
            color: var(--blue);
        }

.careers-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--red);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
}

    .careers-eyebrow i {
        font-size: 1rem;
    }

    .careers-eyebrow.light {
        color: #ffd8df;
    }

.careers-lead {
    max-width: 680px;
    color: #536c7f;
    font-size: 1.12rem;
    line-height: 1.75;
}

.careers-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 30px;
}

    .careers-actions .btn {
        min-height: 52px;
        padding: .75rem 1.3rem;
        border-radius: 13px;
        font-weight: 700;
    }

.careers-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(11,91,164,.12);
}

    .careers-trust span {
        color: #587084;
        font-size: .86rem;
        font-weight: 700;
    }

    .careers-trust i {
        margin-right: .35rem;
        color: var(--red);
    }

.careers-hero-card {
    position: relative;
    padding: 40px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.95);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(16,42,67,.14);
    backdrop-filter: blur(18px);
}

    .careers-hero-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        right: -35px;
        bottom: -35px;
        border-radius: 50%;
        background: rgba(197,16,47,.08);
    }

.careers-hero-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #fff;
    background: linear-gradient(145deg, var(--blue), #087ec1);
    border-radius: 18px;
    font-size: 1.6rem;
}

.careers-hero-card h3 {
    margin-bottom: 12px;
}

.careers-hero-card p {
    color: var(--muted);
}

.career-mini-list {
    margin-top: 25px;
}

    .career-mini-list div {
        display: flex;
        align-items: center;
        gap: .75rem;
        padding: 13px 0;
        border-top: 1px solid var(--border);
        color: #425b6e;
        font-weight: 600;
    }

    .career-mini-list i {
        color: var(--blue);
        font-size: 1.1rem;
    }

.careers-section {
    padding: 65px 0;
}

.careers-light {
    background: #f5f9fc;
}

.career-benefit {
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(16,42,67,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .career-benefit:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(16,42,67,.11);
    }

.career-benefit-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--blue);
    background: #eaf4fb;
    border-radius: 16px;
    font-size: 1.3rem;
}

.career-benefit h4 {
    margin-bottom: 10px;
}

.career-benefit p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.career-check-list {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
}

    .career-check-list li {
        display: flex;
        gap: .7rem;
        margin: 13px 0;
        color: #435d70;
    }

    .career-check-list i {
        color: var(--blue);
        margin-top: 4px;
    }

.career-requirements {
    padding: 35px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 25px;
    box-shadow: 0 18px 50px rgba(16,42,67,.07);
}

    .career-requirements h3 {
        margin-bottom: 22px;
    }

        .career-requirements h3 i {
            margin-right: .5rem;
            color: var(--blue);
        }

.requirement-item {
    display: flex;
    gap: 15px;
    padding: 17px 0;
    border-top: 1px solid var(--border);
}

    .requirement-item > i {
        color: var(--blue);
        font-size: 1.25rem;
    }

    .requirement-item strong,
    .requirement-item span {
        display: block;
    }

    .requirement-item strong {
        margin-bottom: 3px;
    }

    .requirement-item span {
        color: var(--muted);
        font-size: .88rem;
    }

.career-opportunity {
    height: 100%;
    padding: 32px;
    background: #f8fbfd;
    border: 1px solid var(--border);
    border-radius: 22px;
    transition: .25s ease;
}

    .career-opportunity:hover {
        transform: translateY(-5px);
        background: #fff;
        box-shadow: 0 20px 50px rgba(16,42,67,.08);
    }

.opportunity-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--blue);
    background: #e8f4fc;
    border-radius: 15px;
    font-size: 1.35rem;
}

.career-opportunity p {
    margin: 0;
    color: var(--muted);
}

.career-step {
    position: relative;
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
}

.step-number {
    display: block;
    margin-bottom: 18px;
    color: var(--red);
    font-family: "Manrope", sans-serif;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.career-step > i {
    display: block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 1.8rem;
}

.career-step h4 {
    font-size: 1.05rem;
}

.career-step p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.careers-cta {
    padding: 0 0 90px;
    background: #f5f9fc;
}

.careers-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px;
    color: #fff;
    background: radial-gradient(circle at 90% 20%, rgba(255,255,255,.10), transparent 25%), linear-gradient(120deg, var(--blue), #075394);
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(11,91,164,.20);
}

    .careers-cta-inner h2 {
        margin: 8px 0;
        font-size: clamp(1.8rem, 4vw, 2.7rem);
    }

    .careers-cta-inner p {
        margin: 0;
        color: #d8eaf5;
    }

.careers-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

    .careers-cta-actions .btn {
        border-radius: 12px;
        font-weight: 700;
        white-space: nowrap;
    }

@media (max-width: 991.98px) {
    .careers-hero {
        padding: 50px 0;
    }

    .careers-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 35px;
    }
}

@media (max-width: 575.98px) {
    .careers-hero {
        padding: 55px 0;
    }

        .careers-hero h1 {
            font-size: 2.8rem;
        }

    .careers-lead {
        font-size: 1rem;
    }

    .careers-actions {
        flex-direction: column;
    }

        .careers-actions .btn {
            width: 100%;
        }

    .careers-trust {
        flex-direction: column;
        gap: .7rem;
    }

    .careers-hero-card {
        padding: 28px;
    }

    .careers-section {
        padding: 50px 0;
    }

    .careers-cta-inner {
        padding: 28px;
        border-radius: 22px;
    }

    .careers-cta-actions {
        width: 100%;
        flex-direction: column;
    }

        .careers-cta-actions .btn {
            width: 100%;
        }
}


.notice-slide {
    display: none;
}

    .notice-slide.active {
        display: block;
    }

.popup-notice-image {
    display: block;
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.notice-error-fallback {
    display: none;
}

.notice-slide.notice-error .popup-notice-image {
    display: none;
}

.notice-slide.notice-error .notice-error-fallback {
    display: block;
}

/*.d-none {
    display: none !important;
}*/
