
    @font-face {
     font-family: "SF Pro Display proxima";
     src: url("/fonts/SF-Pro-Display-Proxima-Nova.woff2") format("woff2");
     font-weight: 500;
     font-style: normal;
     font-display: swap;
    }
    :root {
        --primary-color: #bf5708;
        --text-dark: #000;
        --text-light: #676565;
        --white: #ffffff;
        --max-width: 1200px;
    }

    *,
    *::before,
    *::after {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        list-style: none;
        list-style-type: none;
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    html {
        scroll-behavior: smooth;
        height: -webkit-fill-available;
    }
    
    body {
        font-family: SF Pro Display proxima !important;
        font-size: 16px;
        scroll-behavior: auto;
        overflow-x: hidden;
    }
    
    .brand-logo-image {
        max-width: 125px;
    }
    /* section css */
    
    section {
        padding: 2.4rem 5rem;
        overflow: hidden;
    }
    
    .custom-topbar {
        background: linear-gradient(to right, #fff1e5, #d2e5ff);
    }
    
    .custom-divider {
        height: 24px;
    }
    
    .fw-black {
        font-weight: 900;
    }
    
    .tracking-wide {
        letter-spacing: 1.5px;
    }
    
    .icon-circle {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }
    
    .text-medical {
        color: #0ea5a4;
    }
    
    .medical-accent {
        background-color: rgba(14, 165, 164, 0.1);
        border: 1px solid rgba(14, 165, 164, 0.2);
    }
    
    .primary-accent {
        background-color: rgba(13, 110, 253, 0.1);
        border: 1px solid rgba(13, 110, 253, 0.2);
    }
    
    .indigo-accent {
        background-color: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.2);
    }
    
    .text-indigo {
        color: #6366f1;
    }
    
    a {
        text-decoration: none;
    }
    
    p {
        font-size: 18px;
        color: #676565;
    }
    
    .fw-extrabold {
        font-weight: 800 !important;
    }
    
    .tracking-widest {
        letter-spacing: 0.3em;
    }
    
    .decorative-bg {
        z-index: -1;
    }

    .rounded-4 {
      border-radius: 0.6rem;
    }

    .rounded-5 {
      border-radius: 1rem;
    }
    .scroll-arrow {
      width: 24px;
    }
    #progress {
        position: fixed;
        bottom: 110px;
        right: 20px;
        height: 50px;
        width: 50px;
        display: none;
        place-items: center;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 9999;
    }
    #progress-value {
        display: block;
        height: calc(100% - 8px);
        width: calc(100% - 8px);
        background-color: #ffffff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #001a2e;
    }
    .whatsapp-sticky {
        position: fixed;
        bottom: 54px;
        right: 20px;
        height: 50px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        cursor: pointer;
        z-index: 9999;
        background-color: #2ab540; 
    }
    .whatsapp-sticky img {
        width: 98%; 
        height: auto; 
        max-width: 100%;
        max-height: 100%;
    }
    /* font */
    
    .h1-tag {
        font-size: calc(1.375rem + 1.5vw) !important;
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .h2-tag {
        font-size: calc(1.325rem + .9vw) !important;
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .h3-tag {
        font-size: calc(1.3rem + .6vw) !important;
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .h4-tag {
        font-size: calc(1.275rem + .3vw) !important;
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .h5-tag {
        font-size: 1.25rem;
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .h6-tag {
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    /* hero-section  */
    
    .hero-section .section__container {
        padding: 2rem 1rem 0rem;
    }
    
    .section__container {
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .section__header {
        max-width: 900px;
        margin-inline: auto;
        margin-bottom: 1rem;
        color: var(--text-dark);
        text-align: center;
    }
    
    .lap-resp {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .section__header span {
        color: var(--primary-color);
    }
    
    .section__description {
        max-width: 800px;
        margin-inline: auto;
        color: var(--text-light);
        line-height: 1.75rem;
        text-align: center;
        font-size: 20px;
    }
    
    .btn {
        padding: 1rem 2rem;
        outline: none;
        border: none;
        font-size: 1rem;
        color: var(--white);
        background-color: var(--primary-color);
        border-radius: 5px;
        transition: 0.3s;
        cursor: pointer;
    }
    
    .btn:hover {
        background-color: var(--primary-color);
        box-shadow: none;
        color: var(--white);
    }
    
    .header__container {
        position: relative;
        isolation: isolate;
    }
    
    .hero-section {
        overflow: visible;
        padding: 0rem 5rem;
    }
    
    .header__container .hero-tag {
        max-width: fit-content;
        margin-bottom: 10px;
        padding: 0.5rem 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--white);
        background: linear-gradient(90deg, var(--primary-color), #1e3a8a);
        border-radius: 5rem;
    }
    
    .header__container h2 img {
        max-width: 25px;
    }
    
    .header__container h1 {
        margin-bottom: 1rem;
        font-weight: 700;
        color: var(--text-dark);
        text-align: left;
    }
    
    .header__container h1 span {
        color: var(--primary-color);
    }
    
    .header__container p {
        margin-bottom: 2rem;
        margin-inline: auto;
        color: var(--text-light);
        text-align: left;
    }
    
    .header__btns {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .hero-promo {
        position: absolute;
        bottom: -90px;
    }
    
    .promo-box {
        width: 150px;
        height: 150px;
        background: var(--white);
        border-radius: 10px;
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .demo-btn {
        padding: 12px 35px;
        border-radius: 10px;
        font-size: 18px;
    }
    
    .header__container>img {
        position: absolute;
        max-width: 40px;
        padding: 3px;
        border-radius: 100%;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        z-index: -1;
    }
    
    .point-table {
        font-size: 18px;
        color: #676565;
    }
    
    .icon-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    .logo-text {
        letter-spacing: -0.5px;
    }
    
    .logos-wrapper {
        transition: all 0.5s ease;
    }
    
    .icon-hover {
        transition: transform 0.3s ease;
    }
    
    .logo-item:hover .icon-hover {
        transform: scale(1.1);
        color: var(--primary-color);
    }
    
    .icon-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(13, 110, 253, 0.1);
        transition: all 0.3s ease;
    }
    /* section-2 */
    
    .step-wrap {
        margin-top: 90px;
    }
    
    .steps {
        position: absolute;
        top: 5px;
    }
    
    .stepes {
        position: absolute;
        top: -70px;
    }
    
    .steps-title {
        text-align: left;
    }
    
    .steps__grid {
        margin-top: 2rem;
        display: grid;
        gap: 1rem;
        z-index: 99;
    }
    
    .stepes__card {
        text-align: left !important;
    }
    
    .steps__card {
        padding: 1rem;
        text-align: center;
        border-radius: 5px;
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .steps__card span {
        display: inline-block;
        padding: 5px 11px;
        font-size: 1.5rem;
        border-radius: 100%;
    }
    
    .list-unstyled li .points-ele {
        color: var(--primary-color) !important;
        background-color: var(--white) !important;
        padding: 0 !important;
    }
    
    .pmjay-sec-p {
        text-align: center;
        max-width: 800px;
        padding-top: 50px;
    }
    
    #about {
        margin-top: 0px;
    }
    
    .steps__card p {
        color: #676565;
    }
    /* section-3 */
    
    .certified-section {
        padding: 0rem 5rem 3rem;
    }
    .contant-font a {
        font-size: 19px;
        color: #676565;
    }
    .contant-font a:hover {
        font-size: 19px;
        color: #676565;
        text-decoration: underline;
    }
    .section__headers {
        max-width: 900px;
        margin-inline: auto;
        margin-bottom: 1rem;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-dark);
        text-align: left;
    }
    
    .section__descriptions {
        max-width: 800px;
        margin-inline: auto;
        color: var(--text-light);
        line-height: 1.75rem;
        text-align: left;
        font-size: 20px;
    }
    
    .nhcx-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .cap-item {
        transition: all 0.3s ease;
        border-color: #dee2e6;
        background-color: #e9edf3 !important;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        height: 200px;
    }
    
    .items {
        width: 100%;
    }
    
    .hub-wrap {
        width: 200px;
    }
    
    .text-tag {
        background: linear-gradient(90deg, var(--primary-color), #1e3a8a);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }
    
    .nhcx-row {
        margin-top: 0px;
        max-width: 1100px;
    }
    
    .nhcx-title {
        color: var(--text-dark);
        margin-bottom: 0;
    }
    
    .text-primary {
        color: var(--primary-color) !important;
    }
    
    .hup-card {
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        scroll-behavior: smooth;
        /* hide scrollbar */
        scrollbar-width: none;
    }
    
    .hup-card::-webkit-scrollbar {
        display: none;
    }
    
    .hup-card:active {
        cursor: grabbing;
    }
    
    .cap-item {
        flex: 0 0 auto;
    }
    
    .hup-card {
        scroll-snap-type: x mandatory;
    }
    
    .cap-item {
        scroll-snap-align: start;
    }
    
    .step-line {
        height: 6px;
    }
    
    .step-progress {
        width: 75%;
        height: 100%;
        background: linear-gradient(90deg, #1e3a8a, var(--primary-color));
    }
    
    .step-node {
        width: 64px;
        height: 64px;
        background: var(--primary-color);
        color: var(--white);
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 4px solid var(--white);
        transition: transform 0.3s ease;
        position: relative;
        z-index: 10;
    }
    
    .step-item:hover .step-node {
        transform: scale(1.1);
    }
    
    .bg-brand {
        background-color: var(--primary-color);
    }
    
    .m-wrap {
        background: #F3F7FD;
        padding: 10px 10px;
        border-radius: 10px;
    }
    
    .m-point {
        background: var(--white);
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 0;
    }
    /* Position helpers */
    
    .top-text {
        top: -225px;
        left: 0;
        right: 0;
        width: 275px;
    }
    
    .bottom-text {
        bottom: -220px;
        left: 0;
        right: 0;
    }
    
    .top-badge {
        top: -60px;
        left: 0;
        right: 0;
    }
    
    .bottom-badge {
        bottom: -60px;
        left: 0;
        right: 0;
    }
    
    .readiness-box {
        background: var(--primary-color);
        width: 280px;
        padding: 15px 10px 10px;
    }
    
    .lap-device {
        margin-top: 200px;
        margin-bottom: 150px;
    }
    
    .contant-font {
        font-size: 18px;
        color: #676565;
        background-color: transparent;
        margin-bottom: 0px !important;
        padding: 0;
    }
    
    .step-wrap .contant-font {
        font-size: 18px;
        color: #676565 !important;
        background-color: transparent !important;
        margin-bottom: 0px !important;
        padding: 0;
    }
    
    .box-lap {
        text-align: left;
    }
    
    .arrow-circle {
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Mobile vertical */
    
    .vertical-line {
        position: absolute;
        left: 22px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: rgba(13, 110, 253, 0.1);
    }
    
    .vertical-node {
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        background: var(--primary-color);
        color: white;
        font-weight: 900;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* section-4 */
    
    .moc-part-wrap {
        max-width: 800px;
    }
    
    .point-table-alter {
        color: var(--text-dark);
        font-weight: 600;
    }
    
    .points-row {
        column-gap: 15px;
    }
    
    .point-box-wrap {
        padding: 15px;
        background: #F3F7FD;
        width: 275px;
        transition: transform 0.3s ease;
    }
    
    .point-box-wrap:hover {
        box-shadow: 0 0 4px light-dark(#e8eef7, #1e2229), 0 4px 12px 4px light-dark(rgba(15, 17, 20, 0.1), rgba(255, 255, 255, 0.1));
        transform: scale3d(1.03, 1.03, 1.08) translate3d(0.1rem, -0.25rem, 20rem);
    }
    
    .icon-check {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .decorative-circle {
        position: absolute;
        width: 260px;
        height: 260px;
        background: rgba(13, 110, 253, 0.08);
        border-radius: 50%;
        filter: blur(80px);
    }
    
    .top-circle {
        top: -10%;
        left: -5%;
    }
    
    .bottom-circle {
        bottom: -10%;
        right: -5%;
    }
    /* section-5 */
    
    .automate-section {
        padding: 4rem 5rem 4.5rem;
    }
    
    .workflow-card-expand {
        background: var(--white);
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        text-align: center;
        position: relative;
        transition: all .35s ease;
        height: 100%;
    }
    /* step circle */
    
    .step-circle {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: #FEF7F1;
        color: var(--primary-color);
        font-weight: 700;
        display: flex;
        border: 5px solid var(--white);
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 30px;
        position: absolute;
        top: -85px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .title {
        padding: 5px;
        margin-bottom: 0;
        margin-left: 10px;
        text-align: left;
        font-weight: 600;
    }
    
    .icon {
        font-size: 32px;
        color: var(--primary-color);
    }
    
    .card-front {
        display: flex;
        transition: all .35s ease;
        position: relative;
        height: 65px;
        align-items: center;
    }
    
    .card-hover-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -40%);
        opacity: 0;
        width: 100%;
        padding: 20px;
        text-align: left;
        transition: all .35s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-card-expand:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    }
    
    .workflow-card-expand:hover .card-front {
        opacity: 0;
        transform: translateY(-20px);
    }
    
    .workflow-card-expand:hover .card-hover-content {
        opacity: 1;
        transform: translate(-50%, -50%);
        height: 236px;
        background: var(--primary-color);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
        border-radius: 10px;
        justify-content: center;
    }
    
    .benefit-row {
        row-gap: 100px;
        margin-top: 30px;
    }
    
    .card-hover-content ul {
        margin-top: 15px;
        color: var(--white);
    }
    
    .card-hover-content ul li {
        font-size: 18px;
        color: var(--white);
    }
    
    .card-main {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 10px;
    }
    /* section-6 */
    
    .glass-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        padding: 1rem;
        border-radius: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
        transform: rotate(3deg);
        transition: transform 0.5s ease;
        max-width: 330px;
    }
    
    .enterprise-wrapper {
        background: linear-gradient(135deg, #8d4006, var(--primary-color));
        border-radius: 2rem;
        padding: 65px;
        position: relative;
        background-image: linear-gradient(to bottom right, #8d4006, var(--primary-color));
        max-width: 1200px;
    }
    
    .text-white-80 {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .bg-circle-top {
        position: absolute;
        top: -100px;
        right: -100px;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }
    
    .bg-circle-bottom {
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 380px;
        height: 380px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
    }
    
    .poster-demo-btn,
    .poster-demo-btn:hover {
        background: var(--text-dark);
        color: var(--white);
        padding: 12px 35px;
        margin-top: 25px;
        border-radius: 10px;
        border: 1px solid var(--text-dark);
        font-size: 18px;
    }
    /*  */
    
    @media (width>540px) {
        .steps__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (width>768px) {
        .steps__grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
    @media (width>1024px) {
        .steps__card {
            padding: 1.5rem;
        }
    }
    /* ================================
   Media query
   ================================ */
    /* mobile view css start */
    
    @media screen and (max-width: 567px) {
        .h1-tag {
            font-size: calc(1.375rem + 1.5vw);
            margin-top: 0;
            margin-bottom: .5rem;
            font-weight: 500;
            line-height: 1.2;
        }
        .h2-tag {
            font-size: calc(1.325rem + .9vw);
            margin-top: 0;
            margin-bottom: .5rem;
            font-weight: 500;
            line-height: 1.2;
        }
        .h3-tag {
            font-size: calc(1.3rem + .6vw);
            margin-top: 0;
            margin-bottom: .5rem;
            font-weight: 500;
            line-height: 1.2;
        }
        .h4-tag {
            font-size: calc(1.275rem + .3vw);
            margin-top: 0;
            margin-bottom: .5rem;
            font-weight: 500;
            line-height: 1.2;
        }
        #progress {
            position: fixed;
            bottom: 110px;
            right: 20px;
            height: 50px !important;
            width: 50px !important;
            display: none;
            place-items: center;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            z-index: 9999;
        }
        .whatsapp-sticky {
            position: fixed;
            bottom: 54px;
            right: 20px;
            height: 46px;
            width: 46px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            cursor: pointer;
            z-index: 9999;
            background-color: #2ab540; 
        } 
    }
    
    @media screen and (max-width: 567px) {
        section {
            padding: 1.5rem 1rem;
            overflow: hidden;
        }
        .hero-section {
            overflow: visible;
            padding: 2rem 1rem;
        }
        .hero-title {
            font-size: 30px;
            font-weight: 800;
            line-height: 1.1;
            color: #0f172a;
        }
        .badge-pill {
            font-size: 10px;
            margin-top: 30px;
        }
        .text-tag {
            display: block;
            margin-bottom: 10px;
        }
        p {
            font-size: 16px;
            color: #676565;
            line-height: 25px;
            font-weight: 500;
        }
        .pmjay-sec-p {
            margin-bottom: 0;
        }
        .sticky-tag {
            padding: 10px;
        }
        .header__container .hero-tag {
            font-size: 12px;
        }
        .hero-section .section__container {
            padding: 0rem 0rem 1rem;
        }
        .demo-btn {
            padding: 14px 35px;
            border-radius: 10px;
            font-size: 16px;
            width: 100%;
        }
        .hero-img {
            margin-top: 30px;
        }
        .hero-promo {
            position: relative;
            bottom: 0;
        }
        .promo-box {
            width: 100px;
            height: 100px;
        }
        .step-wrap {
            margin-top: 0px;
        }
        .steps {
            display: none;
        }
        .certified-section {
            padding: 1.5rem 1rem;
        }
        .enterprise-wrapper {
            text-align: center;
            margin-bottom: 15px;
            padding: 30px;
        }
        .vertical-line {
            position: absolute;
            left: 22px;
            background: linear-gradient(360deg, var(--primary-color), #1e3a8a);
        }
        .vertical-node {
            position: absolute;
            left: -12px;
        }
        .arrow-circle {
            position: absolute;
            left: -2px;
            top: -10%;
            transform: rotate(90deg);
        }
        .readiness-box {
            background: var(--primary-color);
            width: auto;
        }
        .automate-section {
            padding: 1.5rem 1rem 5rem;
        }
        .stepes {
            display: none;
        }
        .points-row {
            column-gap: 5px;
            justify-content: center;
        }
        .point-box-wrap {
            padding: 10px;
            background: #F3F7FD;
            width: 150px;
        }
        .mob-resp {
            display: flex;
            flex-direction: column-reverse;
        }
        .point-table-alter {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 14px;
        }
        .title {
            font-size: 18px;
        }
        .workflow-card-expand:hover .card-hover-content {
            text-align: center;
        }
        .step-circle {
            top: -90px;
        }
        .tab-resp {
            margin-top: 20px;
        }
    }
    /* mobile view css end */
    
    @media (min-width: 568px) and (max-width:699.98px) {
        section {
            padding: 2rem 1rem;
            overflow: hidden;
        }
        .hero-section {
            overflow: visible;
            padding: 2rem 1rem;
        }
        .hero-title {
            font-size: 30px;
            font-weight: 800;
            line-height: 1.1;
            color: #0f172a;
        }
        .badge-pill {
            font-size: 10px;
            margin-top: 30px;
        }
        p {
            font-size: 16px;
            color: #676565;
            line-height: 25px;
            font-weight: 500;
        }
        .sticky-tag {
            padding: 10px;
        }
        .header__container .hero-tag {
            font-size: 14px;
        }
        .hero-section .section__container {
            padding: 0rem 0rem 1rem;
        }
        .demo-btn {
            padding: 14px 35px;
            border-radius: 10px;
            font-size: 16px;
            width: 100%;
        }
        .text-tag {
            display: block;
            margin-bottom: 10px;
        }
        .hero-img {
            margin-top: 30px;
        }
        .hero-promo {
            position: relative;
            bottom: 0;
        }
        .pmjay-sec-p {
            margin-bottom: 0;
        }
        .promo-box {
            width: 100px;
            height: 100px;
        }
        .step-wrap {
            margin-top: 0px;
        }
        .steps {
            display: none;
        }
        .certified-section {
            padding: 2rem 1rem;
        }
        .enterprise-wrapper {
            text-align: center;
            padding: 30px;
            margin-bottom: 20px;
        }
        .vertical-line {
            position: absolute;
            left: 22px;
            background: linear-gradient(360deg, var(--primary-color), #1e3a8a);
        }
        .vertical-node {
            position: absolute;
            left: -12px;
        }
        .custom-divider {
            display: none !important;
        }
        .arrow-circle {
            position: absolute;
            left: -2px;
            top: -10%;
            transform: rotate(90deg);
        }
        .readiness-box {
            background: var(--primary-color);
            width: auto;
        }
        .automate-section {
            padding: 2rem 1rem;
        }
        .stepes {
            display: none;
        }
        .points-row {
            column-gap: 5px;
        }
        .point-box-wrap {
            padding: 10px;
            background: #F3F7FD;
            width: 170px;
        }
        .point-table-alter {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 16px;
        }
        .workflow-card-expand:hover .card-hover-content {
            text-align: center;
        }
        .mob-resp {
            display: flex;
            flex-direction: column-reverse;
        }
    }
    /* Tab view css start */
    
    @media (max-width:767.98px) {
        .mob-resp {
            display: flex;
            flex-direction: column-reverse;
        }
        .automate-section {
            padding: 1.5rem 1rem 5rem !important;
        }
    }
    
    @media (min-width:700.98px) and (max-width:990px) {
        section {
            padding: 2rem 1.5rem;
            overflow: hidden;
        }
        .hero-section {
            overflow: visible;
            padding: 2rem 1.5rem;
        }
        .badge-pill {
            font-size: 10px;
            margin-top: 30px;
        }
        .custom-divider {
            display: none !important;
        }
        .step-wrap {
            margin-top: 45px;
        }
        p {
            font-size: 16px;
            color: #676565;
            line-height: 25px;
            font-weight: 500;
        }
        .hero-section .section__container {
            padding: 2rem 1rem 4.2rem;
        }
        .promo-box {
            width: 120px;
            height: 120px;
        }
        .pmjay-sec-p {
            margin-bottom: 0;
        }
        .hero-promo {
            position: absolute;
            bottom: -65px;
        }
        .hero-img {
            display: flex;
            height: 100%;
            justify-content: center;
            align-items: center;
        }
        .header__container .hero-tag {
            font-size: 12px;
        }
        .enterprise-wrapper {
            padding: 35px;
        }
        .vertical-line {
            position: absolute;
            left: 22px;
            background: linear-gradient(360deg, var(--primary-color), #1e3a8a);
        }
        .vertical-node {
            position: absolute;
            left: -12px;
        }
        .arrow-circle {
            position: absolute;
            left: -2px;
            top: -10%;
            transform: rotate(90deg);
        }
        .readiness-box {
            background: var(--primary-color);
            width: auto;
        }
        .certified-section {
            padding: 2rem 1.5rem;
        }
        .point-box-wrap {
            padding: 15px;
            background: #F3F7FD;
            width: 170px;
        }
        .step-circle {
            top: -95px;
        }
        .workflow-card-expand:hover .card-hover-content {
            text-align: center;
        }
        .automate-section {
            padding: 2rem 1.5rem;
        }
        .tab-resp {
            height: 100%;
            display: flex;
            align-items: center;
        }
        .container,
        .container-md,
        .container-sm {
            max-width: 720px;
        }
    }
    /* Tab view css end */
    /* Tab horizontal view css start */
    
    @media (min-width:991px) and (max-width:1070px) {
        .hero-section .section__container {
            padding: 2rem 1rem 4rem !important;
        }
    }
    
    @media (min-width:991px) and (max-width:1200px) {
        section {
            padding: 2rem 1.5rem;
            overflow: hidden;
        }
        .hero-section {
            overflow: visible;
            padding: 2rem 1.5rem 0rem;
        }
        .badge-pill {
            font-size: 10px;
            margin-top: 30px;
        }
        .custom-divider {
            display: none !important;
        }
        p {
            font-size: 16px;
            color: #676565;
            line-height: 25px;
            font-weight: 500;
        }
        .hero-section .section__container {
            padding: 2rem 1rem 0rem;
        }
        .promo-box {
            width: 120px;
            height: 120px;
        }
        .pmjay-sec-p {
            margin-bottom: 0;
        }
        .hero-promo {
            position: absolute;
            bottom: -75px;
        }
        .hero-img {
            display: flex;
            height: 100%;
            justify-content: center;
            align-items: center;
        }
        .header__container .hero-tag {
            font-size: 12px;
        }
        .enterprise-wrapper {
            padding: 45px;
        }
        .certified-section {
            padding: 2rem 1.5rem;
        }
        .bottom-text {
            bottom: -235px;
            left: 0;
            right: 0;
        }
        .point-box-wrap {
            padding: 15px;
            background: #F3F7FD;
            width: 220px;
        }
        .step-circle {
            top: -95px;
        }
        .workflow-card-expand:hover .card-hover-content {
            text-align: center;
        }
        .top-text {
            top: -260px;
            left: 0;
            right: 0;
            width: auto;
        }
        .lap-device {
            margin-top: 230px;
            margin-bottom: 150px;
        }
        .tab-resp {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
        .step-wrap {
            margin-top: 0px;
        }
        .lap-tab {
            margin-top: 80px;
        }
        .automate-section {
            padding: 2rem 1.5rem 5rem;
        }
    }
    /* Tab horizontal view css end */
    
    @media (min-width:1201px) and (max-width:1400px) {
        section {
            padding: 3rem 2.5rem;
            overflow: hidden;
        }
        .badge-pill {
            font-size: 10px;
            margin-top: 30px;
        }
        p {
            font-size: 18px;
            color: #676565;
            line-height: 28px;
            font-weight: 500;
        }
        .promo-box {
            width: 130px;
            height: 130px;
        }
        .hero-promo {
            position: absolute;
            bottom: -90px;
        }
        .hero-img {
            display: flex;
            height: 100%;
            justify-content: center;
            align-items: center;
        }
        .header__container .hero-tag {
            font-size: 12px;
        }
        .enterprise-wrapper {
            padding: 45px;
        }
        .certified-section {
            padding: 2rem 1.5rem;
        }
        .automate-section {
            padding: 2rem 1.5rem 5rem;
        }
        .point-box-wrap {
            padding: 15px;
            background: #F3F7FD;
            width: 230px;
        }
        .benefit-row {
            row-gap: 115px;
            margin-top: 30px;
        }
        .step-circle {
            top: -95px;
        }
        .workflow-card-expand:hover .card-hover-content {
            text-align: center;
        }
        .top-text {
            top: -260px;
            left: 0;
            right: 0;
            width: auto;
        }
        .lap-device {
            margin-top: 230px;
            margin-bottom: 150px;
        }
        .tab-resp {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
        .step-wrap {
            margin-top: 0px;
        }
        .lap-tab {
            margin-top: 85px;
        }
        .pmjay-sec-p {
            margin-bottom: 0;
        }
        .m1 .container {
            max-width: 100%;
        }
        .moc-wrap {
            max-width: none;
        }
    }
    
    @media (min-width:1200px) and (max-width:1399.98px) {
        .point-box-wrap {
            padding: 15px;
            background: #F3F7FD;
            width: 270px !important;
        }
    }