/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000302;
    color: #fff;
    overflow-x: hidden;
}

/* === HERO BANNER (Full Page) === */
.wptmp-headerbanner-bg-wprevamp03 {
    background-image: url('../images/revamp/banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.banner_text_s {
    color: #ffffff !important;
    font-family: 'Gudea', sans-serif !important;
    text-align: left;
}

@media (min-width:769px) {
    .banner_text_s {
        font-size: 190%;
        line-height: 40px;
    }
}

@media (max-width:768px) {
    .banner_text_s {
        font-size: 100%;
        line-height: 120%;
        padding: 10px 30px;
    }
}

@media (max-width:600px) {
    .spacetop-view {
        padding-top: 250px;
    }
}

.uppercase {
    text-transform: uppercase;
}

.font500 {
    font-weight: 500;
}

.wporangecolor {
    color: #ff6a00;
}

.fontOswald {
    font-family: 'Oswald', sans-serif;
}

.inner-max {
    max-width: 1200px;
    width: 100%;
}

/* === INTERACTIVE SECTION === */
@media (max-width: 991px) {
    .revamp-interactive-section {
        padding: 60px 20px;
    }
}

@media (max-width: 767.98px) {
    .revamp-interactive-section {
        padding-top: 20px;
        padding-bottom: 40px;
    }
}

.header-clip-img {
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.left-panel {
    flex: 0 0 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 60px;
    border-radius: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(7.5px);
    border: 1px solid rgba(127, 191, 255, 0.8);
    color: #fff;
    position: relative;
    z-index: 3;
    max-width: 100%;
}

.menu-card {
    background: rgba(15, 25, 45, 0.8);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 12px;
    padding: 35px 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.1), transparent);
    transition: left 0.6s;
}

.menu-card:hover::before {
    left: 100%;
}

.menu-card:hover {
    background: rgba(20, 35, 60, 0.9);
    border-color: rgba(0, 200, 255, 0.6);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 200, 255, 0.3);
}

.menu-card.active {
    background: rgba(0, 200, 255, 0.15);
    border-color: #00c8ff;
    transform: translateX(15px);
}

.menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.menu-arrow {
    font-size: 32px;
    color: #00c8ff;
    transition: transform 0.3s;
}

.menu-card:hover .menu-arrow {
    transform: translateX(5px);
}

.menu-card.active .menu-arrow {
    transform: rotate(180deg);
}

.right-panel {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.brain-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.brain-image {
    width: 400px;
    height: 400px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.brain-glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    filter: blur(40px);
    animation: pulse 2s ease-in-out infinite;
}

.brain-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.8));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.detail-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 25, 45, 0.95);
    border: 1px solid rgba(0, 200, 255, 0.4);
    border-radius: 12px;
    padding: 40px;
    opacity: 0;
    transform: translateX(50px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.detail-panel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.detail-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.detail-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.highlight {
    color: #ff8c42;
    font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .main-container {
        flex-direction: column;
    }

    .left-panel {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .menu-card {
        padding: 25px 20px;
    }

    .menu-title {
        font-size: 20px;
    }

    .brain-image {
        width: 300px;
        height: 300px;
    }

    .detail-panel {
        padding: 25px;
    }

    .detail-title {
        font-size: 24px;
    }
}

/* MOBILE FIX FOR BANNER BACKGROUND */
@media (max-width: 768px) {

    .wptmp-headerbanner-bg-wprevamp03 {
        background-position: top center !important;
        background-repeat: no-repeat !important;
        min-height: 380px !important;
        padding: 40px 0 !important;
    }

    /* Optional: Center text on mobile */
    .wptmp-headerbanner-bg-wprevamp03 .banner_text_s {
        text-align: center !important;
    }

    .wptmp-headerbanner-bg-wprevamp03 h1 {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    /* Adjust layout */
    .wptmp-headerbanner-bg-wprevamp03 .row {
        flex-direction: column !important;
        text-align: center;
    }
}


.hero-section {
    color: #fff;
    padding: 40px 0;
    overflow: hidden;
}

.hero-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    color: #fff;
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.15;
        max-width: 60vw;
    }

    .revamp-interactive-section .row.align-items-center {
        align-items: center;
    }
}

.hero-title span {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
}

/* underline wrapper */
.underline-center {
    position: relative;
    display: inline-block;
}

/* animated underline */
.underline-center::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    height: 2px;
    background-color: #ff8d37;
    width: 0%;
    transform: translateX(-50%);
    animation: underline-expand 2.8s ease-in-out infinite;
}

.glow-text {
    animation: text-glow 2.8s ease-in-out infinite;
}

.hero-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #ff7b00, #ffb347, transparent);
    margin-top: 30px;
}

.clip-img {
    /* width: 30%; */
}

.service-row {
    --bs-gutter-x: 0;
}

.service-row>[class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.fa-angle-right:before {
    display: none;
    content: "\f105";
}

.wprevamp03-bg-space-img-sc5 {
    background-image: url(../images/revamp/speech.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pl-pr-60 {
    padding: 0px 60px;
}

/* first section tab panels */
.main-section {
    position: relative;
    padding-left: 70px;
    padding-right: 70px;
}

.left-card,
.right-card,
.service-card {
    position: relative;
    z-index: 2;
}

/* Left card */
.left-card {
    border: 1px solid rgba(127, 191, 255, 0.8);
    background-image: linear-gradient(156deg, rgba(65, 160, 255, 0.2) 12.86%, rgba(7, 5, 97, 0.05) 89.68%);
    backdrop-filter: blur(7.5px);
    transition: border-color, background-image, box-shadow 0.2s cubic-bezier(0.15, 0.89, 0.2, 0.91);
    border-radius: 14px;
    padding: 35px 32px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.left-card:hover {
    border-color: #7fbfff;
    background-image: linear-gradient(156deg,
            rgba(65, 160, 255, 0.3) 12.86%,
            rgba(7, 5, 97, 0.05) 90.68%);
    /* box-shadow: 0px 0px 30px 0 rgb(32 188 255 / 40%); */
}

.left-card.active {
    border-color: #7fbfff;
}

.arrow {
    font-size: 30px;
    transition: all 0.3s ease;
}

.left-card.active .arrow {
    transform: rotate(360deg);
    color: #fff;
}

.right-card2.active .arrow {
    transform: rotate(-180deg);
    color: #7fbfff;
}

.right-card {
    border: 1px solid rgba(127, 191, 255, 0.8);
    /* background-image: linear-gradient(156deg, rgba(65, 160, 255, 0.2) 12.86%, rgba(7, 5, 97, 0.05) 89.68%); */
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(7.5px);
    transition: border-color, background-image, box-shadow 0.2s cubic-bezier(0.15, 0.89, 0.2, 0.91);
    padding: 25px;
    border-radius: 14px;
    color: #fff;
}

.left-card .arrow,
.left-card.active .arrow {
    z-index: 3;
}

.right-section-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 33.333333%;
    right: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('../images/revamp/patient-access.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.95;
    transform: translateZ(0);
}

.right-section-bg-second {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 33.333333%;
    right: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('../images/revamp/metrics.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.95;
    transform: translateZ(0);
}

.right-section-bg::after,
.right-section-bg-second::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 14, 0.45);
    z-index: 1;
    pointer-events: none;
}

/* Text style */
.right-card h3 {
    font-size: 2.0rem;
    font-weight: 700;
    color: #c0c0c0 !important;
    margin-bottom: 3rem !important;
}

@media (max-width: 600px) {
    .fade-panel {
        opacity: 1 !important;
        transform: none !important;
        height: auto !important;
        visibility: visible !important;
    }

    .left-card.active .arrow,
    .left-card .arrow {
        transform: none !important;
    }

    .left-card {
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .left-panel {
        margin-top: 15px !important;
    }

    .mirror-card {
        margin-bottom: 10px !important;
        gap: 20px;
    }
}

/* MOBILE + TABLET (up to 1024px) */
@media (max-width: 1024px) {
    .mirror-card {
        gap: 20px !important;
        /* creates a vertical gap */
    }
}

/* SECTION 1 — MOBILE SPACING FIX */
@media (max-width: 768px) {

    .right-card {
        margin-top: 15px !important;
    }

    .right-card {
        padding: 30px 20px !important;
    }

    .left-card {
        padding: 25px 20px !important;
    }
}

/* Desktop remains unchanged — DO NOT TOUCH */

@media (max-width: 768px) {

    .right-section-bg,
    .right-section-bg-second {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        height: 260px;
    }

    /* Add spacing so content does NOT overlap the image */
    .main-section {
        /* padding-top: 280px !important; */
        padding-left: 0px;
        padding-right: 0px;
    }
}

.left-sec-bg {
    position: absolute;
    left: 0;
    top: 280px;
    width: 66.666%;
    pointer-events: none;
    z-index: 0;
}

/* SECTION 2 – RESPONSIVE STATIC LEFT IMAGES */
@media (max-width: 768px) {

    .left-sec-bg {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .left-static-img {
        position: relative !important;
        width: 80% !important;
        /* shrink image */
        max-width: 320px;
        /* optional clamp */
        margin: 15px auto;
        /* center */
        display: block;
    }

    /* stack top image and bottom image vertically */
    #left-img-top {
        margin-bottom: 10px;
    }

    #left-img-bottom {
        margin-top: 10px;
    }

    /* remove absolute background layering on mobile */
    .left-sec-bg::before,
    .left-sec-bg::after {
        display: none !important;
    }
}

/* ======================================
        SECTION 1 — TABLET RESPONSIVE FIX (768px–1024px)
        ====================================== */
@media (min-width: 769px) and (max-width: 1024px) {

    .right-section-bg,
    .right-section-bg-second {
        /* left: 0 !important;
                right: 0 !important;
                width: 100% !important; */
        background-size: contain !important;
        /* show full image */
        /* background-position: center top !important; */
        opacity: 0.75 !important;
    }
}

/* second section tab panels */
/* Main section styling */
.second-section {
    position: relative;
    padding-left: 70px;
    padding-right: 70px;
}

.section2-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.ecg-line {
    width: 260px;
    height: 2px;
    background: linear-gradient(to right, #ff8d37, transparent);
    margin-top: 10px;
}

/* ============================
        SECTION 2 STATIC IMAGES (DESKTOP)
        ============================ */

.left-static-img {
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 650px;
    /* opacity: 0.45; */
    /* filter: blur(1px); */
    object-fit: contain;
}

/* Image 1 → rows 1–2 */
#left-img-top {
    top: 220px;
    /* same visual placement as desktop screenshot */
    height: auto;
}

/* Image 2 → rows 3–5 */
#left-img-bottom {
    top: 550px;
    /* perfectly aligned under image 1 */
    height: auto;
}


/* ============================
        SECTION 2 — MOBILE RESPONSIVE IMAGES (SAFE MODE)
        ============================ */
@media (max-width: 768px) {

    /* Reset absolute positioning ONLY on mobile */
    .left-sec-bg {
        position: relative !important;
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        overflow: visible !important;
        top: 0 !important;
        left: 0 !important;
        margin-bottom: 20px;
    }

    .left-static-img {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        width: 90% !important;
        max-width: 320px !important;
        height: auto !important;
        margin: 10px auto !important;
        display: block !important;
    }

    /* This ensures the images do NOT sit behind rows */
    #left-img-top,
    #left-img-bottom {
        height: auto !important;
    }
}

/* small overlay to dim the image slightly (keeps text readable) */
.left-static-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 14, 0.28);
    pointer-events: none;
}

/* fade animation */
.fade-panel {
    opacity: 0;
    transform: translateX(-20px);
    transition: .4s ease;
}

.fade-panel.active {
    opacity: 1;
    transform: translateX(0px);
}

/* ::: RIGHT SIDE CARDS (mirror of left cards from section 1) ::: */
.right-card2 {
    border: 1px solid rgba(127, 191, 255, 0.8);
    background-image: linear-gradient(156deg, rgba(65, 160, 255, 0.2) 12.86%, rgba(7, 5, 97, 0.05) 89.68%);
    backdrop-filter: blur(7.5px);
    transition: border-color, background-image, box-shadow 0.2s cubic-bezier(0.15, 0.89, 0.2, 0.91);
    border-radius: 14px;
    padding: 35px 32px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.right-card2:hover {
    border-color: rgba(160, 200, 255, 0.5);
}

.right-card2.active {
    border-color: #3aa9ff;
}

.arrow2 {
    font-size: 28px;
    transform: rotate(0deg);
    transition: .3s;
}

.right-card2.active .arrow2 {
    transform: rotate(180deg);
    color: #3aa9ff;
}

.dashboard-showcase {
    background: #000;
    padding: 80px 0;
    overflow: visible;
}

.dashboard-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    transition: transform 0.4s ease;
    padding: 20px;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Enhanced glow effect behind image */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse at center,
            rgba(100, 150, 255, 0.6) 0%,
            rgba(80, 120, 220, 0.4) 20%,
            rgba(60, 100, 200, 0.2) 40%,
            rgba(40, 80, 180, 0.1) 60%,
            transparent 80%);
    border-radius: 30px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
    filter: blur(40px);
    pointer-events: none;
}

/* Secondary glow layer for intensity */
.glow-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at center,
            rgba(150, 200, 255, 0.8) 0%,
            rgba(100, 150, 255, 0.4) 30%,
            transparent 60%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Hover effects */
.dashboard-img-wrapper:hover {
    transform: translateY(-15px);
}

.dashboard-img-wrapper:hover .dashboard-img {
    transform: scale(1.03);
}

.dashboard-img-wrapper:hover .glow-effect {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.dashboard-img-wrapper:hover .glow-effect::before {
    opacity: 1;
}

.accent {
    color: #ff8d37;
}

.color-p {
    color: #c0c0c0 !important;
}

.right-card2 span {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

#sec2-panel1 h3,
#sec2-panel2 h3,
#sec2-panel3 h3,
#sec2-panel4 h3,
#sec2-panel5 h3 {
    font-size: 2.0rem !important;
    font-weight: 700 !important;
    color: #c0c0c0 !important;
}

.left-sec-bg img {
    text-align: center;
}



/* video section */
.video-hero-section {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

@media (max-width: 767.98px) {
    .video-hero-section {
        padding-top: 20px;
        padding-bottom: 3rem;
    }
}

.text-gold {
    color: #f5a623;
}

.vertical-patch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 500px;
    border-radius: 60px;
    background: #282828;
    filter: blur(1px);
    z-index: -1;
    pointer-events: none;
}

/* Your card stays exactly as you had it */
.video-patch {
    /* position: relative; */
    /* border-radius: 2.5rem; */
    padding: 3rem 2rem;
    /* max-width: 580px; */
    /* margin: 0 auto; */
    /* width: 100%; */
    /* z-index: 2; */
}

.video-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3rem;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 60px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

h1.display-5 {
    font-weight: 300;
    line-height: 1.4;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .vertical-patch {
        width: clamp(180px, 50vw, 260px);
        height: clamp(260px, 55vh, 420px);
        top: 50%;
        left: 50%;
        border-radius: 60px;
    }

    .video-patch {
        padding: 2rem 1rem;
        max-width: 100%;
    }

    .video-stage {
        padding-bottom: 2rem;
    }

    .video-wrapper {
        border-radius: 1rem;
    }
}

@media (max-width: 767.98px) {
    .vertical-patch {
        width: clamp(160px, 70vw, 240px);
        height: clamp(220px, 50vh, 360px);
        border-radius: 52px;
    }

    .video-stage {
        padding-bottom: 1.5rem;
    }

    .row.align-items-center {
        flex-direction: column;
    }

    .col-md-6,
    .col-lg-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .hero-section {
        padding: 2.5rem 0 1rem 0;
        min-height: auto;
    }

}

@media (max-width: 575.98px) {
    .vertical-patch {
        width: clamp(140px, 80vw, 200px);
        height: clamp(200px, 45vh, 320px);
        min-height: 200px;
        left: 50%;
        border-radius: 48px;
    }
}

@media (max-width: 767.98px) {
    .vertical-patch {
        display: none;
    }

    .revamp-interactive-section .row.align-items-center {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.75rem;
        justify-content: space-between;
    }

    .revamp-interactive-section .col-md-7,
    .revamp-interactive-section .col-md-5 {
        flex: 0 0 auto;
        width: auto;
    }

    .revamp-interactive-section .col-md-5 {
        justify-content: flex-end;
    }

    .revamp-interactive-section .clip-img {
        width: 60px;
        max-width: 60px;
    }
}

.vetk-new-insight-section .vetk-news-card {
    background-color: #ffffff;
}


/* Common Font Styles */

.left-card span {
    font-size: 150%;
    font-family: var(--vetk-font-oxygen) !important;
}

.right-card2 span {
    font-size: 150%;
    font-family: var(--vetk-font-oxygen) !important;
}

.left-panel h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
}

.video-hero-section p {
    font-size: 120%;
    line-height: 30px;
}

@keyframes underline-expand {
    0% {
        width: 0%;
    }

    40% {
        width: 35%;
    }

    70% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

@keyframes text-glow {
    0% {
        text-shadow: none;
    }

    40% {
        text-shadow:
            0 0 10px rgba(255, 141, 55, 0.35),
            0 0 20px rgba(255, 141, 55, 0.25);
    }

    70% {
        text-shadow:
            0 0 14px rgba(255, 141, 55, 0.75),
            0 0 28px rgba(255, 141, 55, 0.55),
            0 0 44px rgba(255, 141, 55, 0.35);
    }

    100% {
        text-shadow: none;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .dashboard-showcase {
        padding: 40px 0;
    }

    .dashboard-img-wrapper {
        margin-bottom: 30px;
        padding: 15px;
    }

    .glow-effect {
        filter: blur(30px);
    }
}

#revamp-bg-section-1 {
    background-image: url(../images/revamp/patient-access.jpg   );
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.95;
}

@media (max-width: 767.98px) {

    #revamp-bg-section-1,
    #revamp-bg-section-2,
    #revamp-bg-section-3 {
        background-image: none;
    }

    #revamp-bg-section-1::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-image: url(../images/revamp/patient-access.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 12px;
        margin-bottom: 20px;
    }
}

#revamp-bg-section-2 {
    background-image: url(../images/revamp/billing-claim-bg.png);
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.95;
}

@media (max-width: 767.98px) {
    #revamp-bg-section-2 {
        background-image: none;
    }

    #revamp-bg-section-2::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-image: url(../images/revamp/billing-claim-bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 12px;
        margin-bottom: 20px;
    }
}

#revamp-bg-section-3 {
    background-image: url(../images/revamp/metrics.png);
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.95;
}

#revamp-bg-section-4 {
    background-image: url(../images/revamp/coding-automation.jpg);
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.95;
}

@media (max-width: 767.98px) {
    #revamp-bg-section-3 {
        background-image: none;
    }

    #revamp-bg-section-3::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-image: url(../images/revamp/metrics.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    #revamp-bg-section-4 {
        background-image: none;
    }

    #revamp-bg-section-4::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-image: url(../images/revamp/coding-automation.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 12px;
        margin-bottom: 20px;
    }
}

.border-r-50 {
    border-radius: 50px;
}

.left-card .arrow {
    transform: rotate(180deg); /* Points right when closed */
    color: #fff;
}

.left-card.active .arrow {
    transform: rotate(360deg); /* Points down when active/open */
    color: #fff;
}