/*==============================================
  OLIPATH — Healthcare ITSM & ITSM Education
  Design System v2.0 (modernized)
  All original class names preserved — safe drop-in
  replacement for the previous style.css.
================================================*/

:root {
    /* Brand */
    --op-navy: #092a49;
    --op-navy-dark: #051a30;
    --op-blue: #0796fe;
    --op-blue-dark: #0670c4;
    --op-blue-light: #e8f4ff;
    --op-teal: #12b3a6;
    --op-ink: #1c2b3a;
    --op-body: #5b6b7b;
    --op-body-light: #7c8a97;
    --op-white: #ffffff;
    --op-bg-soft: #f5f8fb;
    --op-border: rgba(9, 42, 73, .08);

    /* Elevation */
    --op-shadow-sm: 0 2px 10px rgba(9, 42, 73, .06);
    --op-shadow: 0 10px 30px rgba(9, 42, 73, .10);
    --op-shadow-lg: 0 20px 50px rgba(9, 42, 73, .14);
    --op-shadow-blue: 0 10px 25px rgba(7, 150, 254, .25);

    /* Shape */
    --op-radius: 14px;
    --op-radius-sm: 8px;
    --op-radius-pill: 999px;

    /* Motion */
    --op-ease: cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: var(--op-body);
    background: var(--op-white);
    font-family: 'Lato', 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--op-navy);
    font-family: 'Oswald', 'Segoe UI', Tahoma, sans-serif;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--op-navy);
    text-decoration: none;
    transition: color .25s var(--op-ease);
}

a:hover,
a:active,
a:focus {
    color: var(--op-blue);
    outline: none;
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    background: var(--op-blue);
    color: #fff;
}

/* Buttons */
.btn {
    border-radius: var(--op-radius-sm);
    font-weight: 600;
    letter-spacing: .4px;
    transition: all .3s var(--op-ease);
}

.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(7, 150, 254, .18);
}

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

.btn-primary:hover,
.btn-primary:focus {
    background: var(--op-blue-dark);
    border-color: var(--op-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(7, 150, 254, .32);
}

.btn-outline-light:hover {
    color: var(--op-navy);
    transform: translateY(-2px);
}

.btn-light {
    box-shadow: var(--op-shadow-sm);
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--op-blue);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: var(--op-radius-pill);
    text-align: center;
    line-height: 1;
    font-size: 18px;
    right: 20px;
    bottom: 20px;
    box-shadow: var(--op-shadow-blue);
    transition: all .3s var(--op-ease);
    z-index: 999;
}

.back-to-top i {
    color: #fff;
    padding-top: 0;
}

.back-to-top:hover {
    background: var(--op-navy);
    transform: translateY(-4px);
}

.back-to-top:hover i {
    color: var(--op-blue);
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 38px;
    background-image: linear-gradient(90deg, var(--op-navy) 0%, var(--op-blue-dark) 100%);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 38px;
    padding: 0 14px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.top-bar .text i {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    margin-right: 6px;
}

.top-bar .text h2 {
    color: #f2f6fa;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: .6px;
    margin: 0;
}

.top-bar .text p {
    color: #f2f6fa;
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .text a {
    color: #f2f6fa;
}

.top-bar .text a:hover {
    color: #ffffff;
}

.top-bar .social {
    display: flex;
    height: 38px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    border-right: 1px solid rgba(255, 255, 255, .12);
    transition: all .25s var(--op-ease);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.top-bar .social a:hover {
    color: var(--op-navy);
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: all .4s var(--op-ease);
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(9, 42, 73, .97) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
    transition: all .4s var(--op-ease);
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 200;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 42px;
    transition: transform .3s var(--op-ease);
}

.navbar .navbar-brand:hover img {
    transform: scale(1.03);
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: rgba(255, 255, 255, .92);
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--op-blue);
    transition: color .25s var(--op-ease);
}

.navbar .dropdown-menu {
    margin-top: 4px;
    border: 0;
    border-radius: var(--op-radius-sm);
    background: #ffffff;
    box-shadow: var(--op-shadow-lg);
    padding: 10px;
    overflow: hidden;
}

.navbar .dropdown-item {
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--op-ink);
    transition: all .2s var(--op-ease);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: var(--op-blue-light);
    color: var(--op-blue-dark);
}

.dropdown-submenu > .dropdown-menu {
    margin-top: -4px;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 38px;
        padding: 16px 60px;
        background: rgba(9, 42, 73, .92) !important;
        z-index: 9;
    }

    .navbar.nav-sticky {
        padding: 10px 60px;
    }

    .page .navbar {
        background: var(--op-navy) !important;
    }

    .navbar a.nav-link {
        padding: 8px 16px;
        font-size: 13.5px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: var(--op-navy) !important;
    }

    .navbar a.nav-link {
        padding: 8px 5px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
        background: rgba(255, 255, 255, .05);
    }

    .navbar .dropdown-item {
        color: rgba(255, 255, 255, .85);
    }

    .navbar .dropdown-item:hover {
        background: rgba(255, 255, 255, .08);
        color: #ffffff;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 50px;
    background: linear-gradient(180deg, var(--op-blue-light) 0%, #ffffff 62%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    width: 340px;
    height: 340px;
    top: -140px;
    right: -100px;
    background: radial-gradient(circle, rgba(7, 150, 254, .18), transparent 70%);
}

.hero::after {
    width: 300px;
    height: 300px;
    bottom: -160px;
    left: -100px;
    background: radial-gradient(circle, rgba(18, 179, 166, .14), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 22px;
    background: var(--op-blue-light);
    color: var(--op-blue-dark);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--op-radius-pill);
}

.hero-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--op-navy);
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--op-body);
    max-width: 620px;
    margin: 0 auto 28px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-cta .btn {
    padding: 13px 30px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .3px;
    border-radius: var(--op-radius-pill);
    min-width: 200px;
}

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

.hero-cta .btn-primary:hover {
    background: var(--op-blue-dark);
    border-color: var(--op-blue-dark);
    transform: translateY(-2px);
}

.hero-cta .btn-outline-primary {
    color: var(--op-navy);
    border: 2px solid var(--op-border);
    background: #fff;
}

.hero-cta .btn-outline-primary:hover {
    color: var(--op-blue-dark);
    border-color: var(--op-blue);
    background: var(--op-blue-light);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-trust li {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--op-body);
    letter-spacing: .2px;
}

.hero-trust i {
    color: var(--op-teal);
    margin-right: 6px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

/* On desktop/tablet the navbar is positioned absolutely over the page
   (see Nav Bar CSS), so the hero needs extra top padding to clear it.
   Below 992px the navbar is in normal document flow, so no extra
   compensation is required there. */
@media (min-width: 992px) {
    .hero {
        padding: 175px 0 90px;
    }

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

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 45px;
}

.section-header p {
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--op-blue);
}

.section-header p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--op-blue);
}

.section-header h2,
.section-header h1 {
    margin: 0;
    position: relative;
    font-size: 44px;
    font-weight: 500;
    color: var(--op-navy);
}

.section-header h2::after,
.section-header h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -18px;
    left: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--op-blue), var(--op-teal));
}

.text-center.section-header h2::after,
.text-center.section-header h1::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header p.text-white-eyebrow {
    color: #9fd6ff;
}

.section-header p.text-white-eyebrow::before {
    background: #9fd6ff;
}

@media (max-width: 991.98px) {
    .section-header h2,
    .section-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2,
    .section-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2,
    .section-header h1 {
        font-size: 28px;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 50px 15px 50px;
}

.fact .fact-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 32px 15px 28px 15px;
    text-align: center;
    background: #ffffff;
    border-radius: var(--op-radius);
    border: 1px solid var(--op-border);
    box-shadow: var(--op-shadow-sm);
    transition: all .3s var(--op-ease);
}

.fact .fact-item:hover {
    border-color: transparent;
    box-shadow: var(--op-shadow);
    transform: translateY(-6px);
}

.fact .fact-item img {
    max-height: 46px;
    margin-bottom: 15px;
}

.fact .fact-item h4,
.fact .fact-item h2 {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .3px;
    margin: 0;
}

@media (max-width: 991.98px) {
    .fact {
        padding: 45px 0 15px 0;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 70px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    transition: .5s;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: 40px;
    right: 40px;
    bottom: 40px;
    left: 40px;
    background: transparent;
    border: 4px solid var(--op-blue);
    border-radius: var(--op-radius);
    opacity: .55;
    z-index: 0;
    transition: all .4s var(--op-ease);
}

.about .about-img:hover::after {
    top: 24px;
    right: 24px;
    bottom: 24px;
    left: 24px;
    opacity: .85;
}

.about .about-img-1 {
    position: relative;
    height: 100%;
    margin: 0 90px 90px 0;
    border-radius: var(--op-radius);
    overflow: hidden;
    box-shadow: var(--op-shadow-lg);
    z-index: 1;
}

.about .about-img-2 {
    position: absolute;
    height: 100%;
    top: 90px;
    left: 90px;
    border-radius: var(--op-radius);
    overflow: hidden;
    box-shadow: var(--op-shadow-lg);
    z-index: 2;
    border: 6px solid #ffffff;
}

.about .about-img-1 img,
.about .about-img-2 img {
    position: relative;
    width: 100%;
    display: block;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #ffffff;
    border: none;
    border-radius: var(--op-radius-pill);
    background: var(--op-blue);
    box-shadow: var(--op-shadow-blue);
    transition: all .3s var(--op-ease);
}

.about .about-text a.btn:hover {
    color: #ffffff;
    background: var(--op-navy);
    box-shadow: 0 14px 30px rgba(9, 42, 73, .3);
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .about {
        padding: 45px 0;
    }

    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }

    .about .about-img-1 {
        margin: 0 40px 40px 0;
    }

    .about .about-img-2 {
        top: 40px;
        left: 40px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 60px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
    padding: 34px 28px;
    text-align: center;
    background: #ffffff;
    border-radius: var(--op-radius);
    border: 1px solid var(--op-border);
    box-shadow: var(--op-shadow-sm);
    transition: all .3s var(--op-ease);
}

.service .service-item:hover {
    border-color: transparent;
    box-shadow: var(--op-shadow);
    transform: translateY(-6px);
}

.service .service-item img {
    max-height: 46px;
    margin-bottom: 20px;
}

.service .service-item h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .2px;
}

.service .service-item p {
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--op-body);
}

.service .service-item a:not(.btn) {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: var(--op-blue);
    transition: .3s;
}

.service .service-item a:not(.btn)::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    bottom: -4px;
    left: 20%;
    background: var(--op-blue);
    transition: width .3s var(--op-ease), left .3s var(--op-ease);
}

.service .service-item:hover a:not(.btn)::after {
    width: 80%;
    left: 10%;
}

.service .service-item:hover a.btn {
    color: #ffffff;
    background: var(--op-navy);
    border-color: var(--op-navy);
}

.service .service-item i.fas,
.service .service-item i.fa {
    color: var(--op-blue);
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.feature .col-md-6 {
    height: 100%;
}

.feature .feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.feature .feature-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 30%;
    left: 0;
    border: 4px solid var(--op-blue);
    border-radius: var(--op-radius);
    opacity: .5;
    z-index: 1;
    transition: all .4s var(--op-ease);
}

.feature .feature-img:hover::after {
    opacity: .8;
}

.feature .feature-img img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 0 30px 30px 30px;
    border-radius: var(--op-radius);
    box-shadow: var(--op-shadow-lg);
    z-index: 2;
}

@media (max-width: 767.98px) {
    .feature .feature-img {
        margin-bottom: 45px;
    }
}

.feature .counters .col-6 {
    padding-top: 25px;
    display: flex;
    flex-direction: row;
}

.feature .counters i {
    padding: 5px 15px 0 0;
    font-size: 26px;
    color: var(--op-blue);
}

.feature .counters h2 {
    position: relative;
    display: inline-block;
    color: var(--op-blue);
    font-size: 30px;
    font-weight: 600;
}

.feature .counters h2::after {
    position: absolute;
    content: "+";
    top: -12px;
    right: -14px;
    font-size: 16px;
}

.feature .counters p {
    color: var(--op-navy);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Feature cards used for "Why Hospital IT Needs ITSM" and similar */
.pain-point-card {
    background: #fff;
    border-radius: var(--op-radius);
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--op-shadow-sm);
    border: 1px solid var(--op-border);
    transition: all .3s var(--op-ease);
}

.pain-point-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--op-shadow);
}

.pain-point-card i {
    font-size: 1.6rem;
    margin-right: .6rem;
}

.pain-point-card p:last-child {
    margin-bottom: 0;
    color: var(--op-body);
    font-size: 14.5px;
}

/* Process timeline steps */
.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform .3s var(--op-ease);
}

.process-step:hover {
    transform: translateY(-6px);
}

.process-step .process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--op-blue), var(--op-navy));
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
    box-shadow: var(--op-shadow-blue);
    border: 4px solid var(--op-bg-soft);
}

.process-step h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.process-step p {
    font-size: 13px;
    color: var(--op-body-light);
    margin-bottom: 0;
}

/* Counter boxes (mission/vision page) */
.counter-box {
    border-radius: var(--op-radius);
    border: 1px solid var(--op-border);
    transition: all .3s var(--op-ease);
}

.counter-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--op-shadow) !important;
}

.counter-box h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--op-blue);
    margin-bottom: .25rem;
}

/* Healthcare ITSM service grid cards */
.healthcare-service-item {
    background: #fff;
    border-radius: var(--op-radius);
    border: 1px solid var(--op-border);
    box-shadow: var(--op-shadow-sm);
    padding: 1.85rem;
    height: 100%;
    transition: all .3s var(--op-ease);
}

.healthcare-service-item:hover {
    box-shadow: var(--op-shadow);
    transform: translateY(-6px);
    border-color: transparent;
}

.healthcare-service-item i {
    font-size: 1.9rem;
    color: var(--op-blue);
    margin-bottom: .85rem;
    display: inline-block;
}

.healthcare-service-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: .6rem;
}

.healthcare-service-item p {
    font-size: 14.5px;
    color: var(--op-body);
    margin-bottom: 0;
}

.anchor-offset {
    scroll-margin-top: 130px;
}











/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 60px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 75px;
    border-radius: var(--op-radius);
    overflow: hidden;
    box-shadow: var(--op-shadow-sm);
    transition: box-shadow .3s var(--op-ease);
}

.team .team-item:hover {
    box-shadow: var(--op-shadow);
}

.team .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-img img {
    width: 100%;
    transition: transform .4s var(--op-ease);
}

.team .team-item:hover .team-img img {
    transform: scale(1.06);
}

.team .team-text {
    position: absolute;
    width: calc(100% - 30px);
    min-height: 96px;
    bottom: -46px;
    left: 15px;
    padding: 22px 18px;
    text-align: center;
    background: rgba(255, 255, 255, .96);
    border-radius: var(--op-radius-sm);
    box-shadow: var(--op-shadow);
    transition: all .3s var(--op-ease);
    overflow: hidden;
}

.team .team-text h2 {
    color: var(--op-blue);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 8px;
}

.team .team-text p {
    margin-bottom: 16px;
    color: var(--op-navy);
    font-size: 14px;
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 3px;
    text-align: center;
    font-size: 13px;
    color: var(--op-navy);
    border: 2px solid var(--op-border);
    border-radius: 50%;
    transition: all .25s var(--op-ease);
}

.team .team-social a:hover {
    color: #fff;
    background: var(--op-blue);
    border-color: var(--op-blue);
}

.team .team-item:hover .team-text {
    height: auto;
    min-height: 160px;
}

/* On touch devices there is no persistent hover state, so the
   overlay-reveal pattern above would permanently hide team member
   names/roles. Show the info card in normal flow instead. */
@media (max-width: 767.98px), (hover: none) {
    .team .team-item {
        overflow: visible;
    }

    .team .team-text {
        position: static;
        width: 100%;
        left: 0;
        bottom: auto;
        min-height: auto;
        margin-top: 14px;
    }

    .team .team-item:hover .team-text {
        min-height: auto;
    }
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 30px 30px 25px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    margin: 0 15px;
    background: #fff;
    border-radius: var(--op-radius);
    border: 1px solid var(--op-border);
    box-shadow: var(--op-shadow-sm);
}

.testimonial .testimonial-item i.fa-user-circle {
    color: var(--op-blue);
    margin-bottom: 12px;
}

.testimonial .testimonial-item img {
    position: relative;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 70px;
    margin-bottom: 15px;
    border: 3px solid var(--op-blue-light);
}

.testimonial .testimonial-item p {
    margin-bottom: 15px;
    font-style: italic;
    color: var(--op-body);
}

.testimonial .testimonial-item h2 {
    position: relative;
    color: var(--op-navy);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 5px;
    padding-bottom: 8px;
}

.testimonial .testimonial-item h2::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 3px;
    bottom: 0;
    left: 0;
    background: var(--op-blue);
    transition: .3s;
}

.testimonial .testimonial-item:hover h2::before {
    width: 60px;
}

.testimonial .testimonial-item h3 {
    color: var(--op-body-light);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}

.testimonial .owl-nav {
    position: relative;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--op-blue);
    font-size: 22px;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev {
    padding-right: 80px;
}

.testimonial .owl-nav .owl-next {
    padding-left: 80px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    color: var(--op-navy);
}

.testimonial .owl-nav .owl-prev::after,
.testimonial .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    border-radius: 3px;
    top: 11px;
    background: var(--op-blue);
    transition: .3s;
}

.testimonial .owl-nav .owl-prev::after {
    left: 9px;
}

.testimonial .owl-nav .owl-next::after {
    right: 9px;
}

.testimonial .owl-nav .owl-prev:hover::after,
.testimonial .owl-nav .owl-next:hover::after {
    background: var(--op-navy);
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.blog .section-header {
    margin-bottom: 75px;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
    transition: transform .3s var(--op-ease);
}

.blog.blog-page .blog-item {
    margin: -30px 0 30px 0;
}

.blog .blog-item:hover {
    transform: translateY(-6px);
}

.blog .blog-img {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: var(--op-radius) var(--op-radius) 0 0;
}

.blog .blog-img img {
    width: 100%;
    transition: transform .5s var(--op-ease);
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.06);
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: var(--op-radius-sm);
    box-shadow: var(--op-shadow);
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .2px;
}

.blog .blog-content h2.blog-title a {
    color: var(--op-navy);
}

.blog .blog-content h2.blog-title a:hover {
    color: var(--op-blue);
}

.blog .blog-meta {
    position: relative;
    margin-bottom: 15px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    color: var(--op-body-light);
}

.blog .blog-meta i {
    color: var(--op-blue);
    margin: 0 4px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 12px;
    font-size: 15px;
}

.blog .blog-item a.btn {
    position: relative;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--op-blue);
    background: none;
    transition: .3s;
}

.blog .blog-item a.btn:hover {
    color: var(--op-navy);
}

.blog .blog-item a.btn::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    top: 10px;
    left: 0;
    background: var(--op-blue);
}

.blog .owl-nav {
    position: relative;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--op-blue);
    font-size: 22px;
    transition: .3s;
}

.blog .owl-nav .owl-prev {
    padding-right: 80px;
}

.blog .owl-nav .owl-next {
    padding-left: 80px;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: var(--op-navy);
}

.blog .owl-nav .owl-prev::after,
.blog .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    border-radius: 3px;
    top: 11px;
    background: var(--op-blue);
    transition: .3s;
}

.blog .owl-nav .owl-prev::after {
    left: 9px;
}

.blog .owl-nav .owl-next::after {
    right: 9px;
}

.blog .owl-nav .owl-prev:hover::after,
.blog .owl-nav .owl-next:hover::after {
    background: var(--op-navy);
}

.blog .pagination {
    margin-bottom: 0;
}

.blog .pagination .page-link {
    margin: 4px;
    color: var(--op-navy);
    border-radius: var(--op-radius-sm);
    border-color: var(--op-border);
    transition: all .25s var(--op-ease);
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #ffffff;
    background: var(--op-blue);
    border-color: var(--op-blue);
}

.blog .pagination .disabled .page-link {
    color: #b7c0c9;
}

/* Search bar (articles page) modernization */
.search-bar-container {
    margin: 20px 0;
    position: relative;
}

.search-bar {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--op-border);
    border-radius: var(--op-radius-sm);
    font-size: 16px;
    transition: all .25s var(--op-ease);
}

.search-bar:focus {
    outline: none;
    border-color: var(--op-blue);
    box-shadow: 0 0 0 3px rgba(7, 150, 254, .15);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid var(--op-border);
    border-top: none;
    background-color: #fff;
    border-radius: 0 0 var(--op-radius-sm) var(--op-radius-sm);
    box-shadow: var(--op-shadow);
    max-height: 220px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-suggestions div {
    padding: 10px 16px;
    cursor: pointer;
    transition: background .2s var(--op-ease);
}

.search-suggestions div:hover {
    background-color: var(--op-blue-light);
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 60px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 28px;
    border-radius: var(--op-radius);
    border: 1px solid var(--op-border);
    background: #fff;
    margin-bottom: 30px;
    box-shadow: var(--op-shadow-sm);
    transition: all .3s var(--op-ease);
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: var(--op-shadow);
    transform: translateY(-4px);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--op-blue-light);
    border: none;
}

.contact .contact-icon i {
    font-size: 18px;
    color: var(--op-blue);
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 18px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--op-navy);
    letter-spacing: .3px;
}

.contact .contact-text p {
    margin: 0;
    font-size: 15px;
}

.contact .contact-form {
    position: relative;
    padding: 32px;
    border-radius: var(--op-radius);
    border: 1px solid var(--op-border);
    background: #fff;
    margin-bottom: 30px;
    box-shadow: var(--op-shadow-sm);
    transition: .3s;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: var(--op-shadow);
}

.contact .contact-form input,
.contact .contact-form .form-control {
    padding: 14px 16px;
    background: var(--op-bg-soft);
    border-radius: var(--op-radius-sm);
    border: 1px solid var(--op-border);
    transition: all .25s var(--op-ease);
}

.contact .contact-form input:focus,
.contact .contact-form .form-control:focus {
    background: #fff;
    border-color: var(--op-blue);
}

.contact .contact-form textarea {
    height: 120px;
    padding: 12px 16px;
    background: var(--op-bg-soft);
    border-radius: var(--op-radius-sm);
    border: 1px solid var(--op-border);
}

.contact .contact-form .btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #ffffff;
    background: var(--op-blue);
    border: none;
    border-radius: var(--op-radius-pill);
    box-shadow: var(--op-shadow-blue);
    transition: all .3s var(--op-ease);
}

.contact .contact-form .btn:hover {
    color: #ffffff;
    background: var(--op-navy);
    transform: translateY(-3px);
}

.contact .help-block ul {
    margin: 6px 0 0;
    padding: 0;
    list-style-type: none;
    color: #dc3545;
    font-size: 13px;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
    border-radius: var(--op-radius);
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
    margin-bottom: 8px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--op-blue);
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 60px;
    padding-top: 90px;
    background: linear-gradient(160deg, var(--op-navy) 0%, var(--op-navy-dark) 100%);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 12px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .5px;
    color: #ffffff;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    border-radius: 3px;
    bottom: 0;
    left: 0;
    background: var(--op-blue);
}

.footer .footer-contact p {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .8);
}

.footer .footer-contact p a {
    color: rgba(255, 255, 255, .8);
}

.footer .footer-contact p a:hover {
    color: var(--op-blue);
}

.footer .footer-link a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .8);
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--op-blue);
}

.footer .footer-link a:hover {
    color: var(--op-blue);
    letter-spacing: .6px;
}

.footer .footer-contact p i {
    width: 25px;
    color: var(--op-blue);
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    margin-right: 8px;
    transition: all .25s var(--op-ease);
}

.footer .footer-social a i {
    margin-right: 0;
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:last-child {
    margin-right: 0;
}

.footer .footer-social a:hover {
    background: var(--op-blue);
    transform: translateY(-3px);
}

.footer .footer-newsletter p {
    color: rgba(255, 255, 255, .75);
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--op-radius-sm);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding: 0 18px;
}

.footer .footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.footer .footer-newsletter .btn {
    position: relative;
    width: 100%;
    margin-top: 10px;
    height: 48px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #ffffff;
    background: var(--op-blue);
    border-radius: var(--op-radius-sm);
    border: none;
    box-shadow: var(--op-shadow-blue);
    transition: .3s;
}

.footer .footer-newsletter .btn:hover {
    color: #ffffff;
    background: var(--op-blue-dark);
    transform: translateY(-2px);
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer .copyright p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: rgba(255, 255, 255, .85);
}

.footer .copyright p a:hover {
    color: var(--op-blue);
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


/*******************************/
/**** Misc utility polish ******/
/*******************************/
.bg-light {
    background-color: var(--op-bg-soft) !important;
}

.shadow-sm {
    box-shadow: var(--op-shadow-sm) !important;
}

.shadow {
    box-shadow: var(--op-shadow) !important;
}

.rounded {
    border-radius: var(--op-radius) !important;
}

section.bg-primary,
.bg-primary {
    background: linear-gradient(120deg, var(--op-navy) 0%, var(--op-blue-dark) 100%) !important;
}


/*******************************/
/****** Article / Post CSS *****/
/*******************************/

/* Post metadata line (author, date, read time, views) */
.post-meta {
    font-size: 14px;
    color: var(--op-body-light);
    margin: 8px 0 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.post-meta span {
    white-space: nowrap;
}

.post-meta i {
    color: var(--op-blue);
}

/* Featured image */
.post-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: var(--op-radius);
    box-shadow: var(--op-shadow-sm);
}

/* In-content links Olipath highlights automatically */
.post-body .highlighted-link,
.highlighted-link {
    color: var(--op-blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(7, 150, 254, .35);
}

.post-body .highlighted-link:hover,
.highlighted-link:hover {
    color: var(--op-blue-dark);
}

.post-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--op-body);
}

.post-body h2,
.post-body h3 {
    margin-top: 1.6em;
}

/* Social share bar */
.social-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 12px 16px;
    background: var(--op-bg-soft);
    border-radius: var(--op-radius-sm);
    font-size: 15px;
}

.social-share-label {
    font-weight: 600;
    color: var(--op-navy);
    margin-right: 4px;
}

.social-share a {
    color: var(--op-body-light);
    font-size: 17px;
    transition: color .25s var(--op-ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-share a:hover {
    color: var(--op-blue);
}

/* Listen-to-article audio button */
.audio-button {
    background: var(--op-blue);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: var(--op-radius-pill);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s var(--op-ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--op-shadow-blue);
    margin-left: 4px;
}

.audio-button:hover {
    background: var(--op-navy);
    transform: translateY(-2px);
}

/* Related posts sidebar list */
.related-posts {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--op-border);
}

.related-posts h4 {
    font-size: 17px;
    margin-bottom: 12px;
}

.related-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts ul li {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.related-posts ul li::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--op-blue);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
}

.related-posts ul li a {
    color: var(--op-navy);
    font-size: 14.5px;
}

.related-posts ul li a:hover {
    color: var(--op-blue);
}

/* Word cloud sidebar widget */
#wordcloud {
    width: 100%;
    height: 340px;
}

/* Author hover / tap card */
.author-hover-wrapper {
    position: relative;
    display: inline-block;
}

.author-hover {
    cursor: pointer;
}

.author-hover strong {
    color: var(--op-blue);
    font-weight: 600;
}

.author-tooltip {
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    background: #ffffff;
    width: 280px;
    padding: 18px;
    border-radius: var(--op-radius);
    box-shadow: var(--op-shadow-lg);
    z-index: 999;
    animation: opFadeIn .25s ease-in-out;
}

.author-hover-wrapper:hover .author-tooltip,
.author-hover-wrapper:focus-within .author-tooltip {
    display: block;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin-right: 12px;
    border: 2px solid var(--op-blue-light);
}

.author-tooltip h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--op-navy);
}

.author-tooltip p {
    margin: 4px 0;
    font-size: 13px;
    line-height: 1.4;
    color: var(--op-body);
}

.author-social a {
    display: inline-block;
    margin-right: 12px;
    color: var(--op-blue);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.author-social a:hover {
    color: var(--op-navy);
    text-decoration: underline;
}

@keyframes opFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .author-tooltip {
        width: 240px;
        left: -20px;
    }
}

/* Author box (end-of-article bio card) */
.author-box {
    background: var(--op-bg-soft);
    border-left: 4px solid var(--op-blue);
    border-radius: var(--op-radius);
    padding: 22px;
    margin-top: 40px;
    box-shadow: var(--op-shadow-sm);
}

.author-box .row {
    align-items: center;
}

.author-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--op-blue);
}

.author-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--op-navy);
}

.author-box small {
    font-size: 14px;
    color: var(--op-body-light);
}

.author-box p {
    font-size: 15px;
    color: var(--op-body);
    margin-bottom: 6px;
}


/*******************************/
/****** Blog Stats Strip *******/
/*******************************/
.healthcare-stats {
    padding: 50px 0;
}

.healthcare-stats .stat {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid var(--op-border);
    border-radius: var(--op-radius);
    box-shadow: var(--op-shadow-sm);
    margin-bottom: 20px;
    transition: all .3s var(--op-ease);
}

.healthcare-stats .stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--op-shadow);
}

.healthcare-stats .highlight {
    font-size: 34px;
    font-weight: 700;
    color: var(--op-blue);
    margin: 0 0 6px;
}

.healthcare-stats .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--op-body-light);
    text-transform: uppercase;
    letter-spacing: .5px;
}


/*******************************/
/********* FAQ Accordion *******/
/*******************************/
.faq-item {
    border-bottom: 1px solid var(--op-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--op-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--op-navy);
    cursor: pointer;
    transition: color .25s var(--op-ease);
}

.faq-question:hover {
    color: var(--op-blue);
}

.faq-question i {
    flex-shrink: 0;
    color: var(--op-blue);
    transition: transform .3s var(--op-ease);
}

.faq-question.open i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 4px 22px;
    color: var(--op-body);
    font-size: 15px;
    line-height: 1.75;
}

.faq-answer.active {
    display: block;
}

.faq-answer ul {
    margin-top: 6px;
}


/*******************************/
/**** Digital Maturity Score ***/
/*******************************/
.maturity-card {
    background: #fff;
    border: 1px solid var(--op-border);
    border-radius: var(--op-radius);
    box-shadow: var(--op-shadow-sm);
    padding: 2rem;
}

.maturity-overall {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--op-border);
}

.maturity-overall-ring {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--op-blue), var(--op-navy));
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    box-shadow: var(--op-shadow-blue);
}

.maturity-overall-ring span {
    font-size: 13px;
    font-weight: 400;
    margin-left: 2px;
    opacity: .8;
}

.maturity-bars {
    display: grid;
    gap: 16px;
}

.maturity-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--op-navy);
    margin-bottom: 6px;
}

.maturity-bar .progress {
    height: 10px;
    border-radius: var(--op-radius-pill);
    background: var(--op-bg-soft);
    overflow: hidden;
}

.maturity-bar .progress-bar {
    background: linear-gradient(90deg, var(--op-blue), var(--op-teal));
    border-radius: var(--op-radius-pill);
}

@media (max-width: 575.98px) {
    .maturity-overall {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Progress indicator above the quiz */
.maturity-progress-wrap {
    margin-bottom: 18px;
}

.maturity-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--op-navy);
    margin-bottom: 8px;
    letter-spacing: .2px;
}

.maturity-progress-label #maturityProgressPercent {
    color: var(--op-blue);
}

.maturity-progress-bar-outer {
    height: 10px;
    border-radius: var(--op-radius-pill);
    background: #fff;
    border: 1px solid var(--op-border);
    overflow: hidden;
}

.maturity-progress-bar-outer .progress-bar {
    background: linear-gradient(90deg, var(--op-blue), var(--op-teal));
    border-radius: var(--op-radius-pill);
    transition: width .35s var(--op-ease);
}

/* Interactive quiz form */
.maturity-question {
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--op-border);
    transition: opacity .2s var(--op-ease);
}

.maturity-question:last-of-type {
    border-bottom: none;
    margin-bottom: 1.75rem;
    padding-bottom: 0;
}

.maturity-question.is-unanswered {
    animation: opShake .35s var(--op-ease);
}

@keyframes opShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.maturity-question-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1rem;
}

.maturity-question-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--op-blue-light);
    color: var(--op-blue);
    font-size: 18px;
    transition: all .25s var(--op-ease);
}

.maturity-question.is-answered .maturity-question-icon {
    background: var(--op-blue);
    color: #fff;
}

.maturity-question-tag {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--op-blue);
    margin-bottom: 4px;
}

.maturity-question-title {
    font-weight: 600;
    color: var(--op-navy);
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.45;
}

.maturity-options {
    display: grid;
    gap: 10px;
    padding-left: 60px;
}

.maturity-options label {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px 12px 44px;
    background: var(--op-bg-soft);
    border: 1.5px solid transparent;
    border-radius: var(--op-radius-sm);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--op-body);
    cursor: pointer;
    margin-bottom: 0;
    transition: all .2s var(--op-ease);
}

.maturity-options label:hover {
    border-color: var(--op-blue);
    background: var(--op-blue-light);
}

/* Custom radio indicator (circle) drawn to the left of each option */
.maturity-options label::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 13px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--op-body-light);
    background: #fff;
    transition: all .2s var(--op-ease);
}

.maturity-options label.is-selected::before {
    border-color: var(--op-blue);
    border-width: 5px;
}

.maturity-options input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.maturity-options label.is-selected {
    border-color: var(--op-blue);
    background: var(--op-blue-light);
    color: var(--op-navy);
    font-weight: 600;
    box-shadow: var(--op-shadow-sm);
}

@media (max-width: 575.98px) {
    .maturity-question-head {
        gap: 10px;
    }

    .maturity-question-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .maturity-question-title {
        font-size: 15px;
    }

    .maturity-options {
        padding-left: 0;
    }
}
