@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;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: SF Pro Display proxima !important;
    color: var(--ink);
    background: #fff;
    margin: 0
}
:root {
    --rust: #BF5708;
    --blue: #1d7dff;
    --ink: #000;
    --muted: #4B5563;
    --soft: #eef4fb;
    --teal: #1f6d5e;
    --teal-soft: #e6f3ef;
    --rust-soft: #fdece4;
    --dark: #2a3259;
}

* {
    box-sizing: border-box
}

/* 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;
}

a:active {
    color: #BF5708;
}

a {
    text-decoration: none;
}

.rounded-xl {
  border-radius: 12px;
}
.right {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* mocdoc logo */

.brand-logo-image {
    max-width: 125px;
}


/* section css */

section {
    padding: 2.4rem 5rem;
    overflow: hidden;
}

p {
    color: #4B5563;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.fw-bold {
    font-weight: 700;
}

/*progress scroll style css start*/
#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;
}
.scroll-arrow {
    width: 24px;
}
/*progress scroll style css end*/

/*whatsapp sticky style start*/
.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%;
}
/*whatsapp sticky style end*/

/*Breadcrumbs style start*/
.breadcrumb-div {
    /*position: absolute;*/
    background-color: #fff;
    color: #f1f1f1;
    padding: 0;
    letter-spacing: 1px;
    top: 78px;
    /*z-index: 2;*/
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    padding-left: 5rem;
}
.breadcrumb {
    margin-top: 1rem;
}
.breadcrumb a {
    font-size: 16px;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}
.home-nav {
  color: #BF5708;
  padding: 12px;
}
.home-icon {
   display: none;
   cursor: pointer;
} 
.fawidth {
    padding-left: 8px;
    padding-right: 8px;

}
.product-nav {
    color: #2e475d;
    pointer-events: none;
}
/*Breadcrumbs style end*/

/* HERO */

.hero {
    position: relative;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .85) 42%, rgba(255, 255, 255, 0) 84%), url('/images/new-homepage/nabh-audit-landing.webp') center/cover no-repeat;
    padding: 70px 0 0px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px;
}

.hero h1 span {
    color: var(--rust)
}

.hero p {
    max-width: 630px;
    margin-bottom: 25px;
    font-weight: 400;
}

.btn-rust {
    background: var(--rust);
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 16px 28px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 18px
}

.btn-rust:hover {
    background: #a8381f;
    color: #fff
}

.hero-trust,
.benefits-wrap {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.hero-trust .item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-trust .item p {
    margin-bottom: 0;
}

.hero-trust .sep,
.benefits .sep {
    width: 1px;
    height: 32px;
    background: #cbd5e1
}


/* benefits strip */

.benefits {
    background: var(--soft);
    padding: 28px 0
}

.benefits .row {
    justify-content: space-between
}

.benefit {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #334155;
    font-size: 14px;
    font-weight: 500
}

.benefit .ic {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px
}

.benefit.b1 .ic {
    color: var(--blue)
}

.benefit.b2 .ic {
    color: #16a34a
}

.benefit.b3 .ic {
    color: #7c3aed
}

.benefit.b4 .ic {
    color: #eab308
}

.benefit .benefit-content {
    font-size: 18px;
}


/* why */

.why h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.2
}

.why h2 em {
    color: var(--rust);
    font-style: normal
}

.why ul li {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 18px;
}

.why-img {
    text-align: center
}

.why-img img {
    max-width: 100%;
    height: auto
}


/* simplifying */

.cs-section {
    margin-bottom: 20px;
}

.cs-title {
    font-weight: 700;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    text-align: center;
    margin-bottom: 56px;
}

.cs-title em {
    font-style: normal;
    color: var(--rust);
}

.cs-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

.cs-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 35px 28px 40px;
    box-shadow: 0 14px 40px rgba(20, 30, 50, .05);
}

.cs-card.challenges {
    background: #fff5ee;
}

.cs-card.solution {
    background: #f0faf4;
}

.cs-pill {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 9px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cs-card.challenges .cs-pill {
    background: var(--rust);
}

.cs-card.solution .cs-pill {
    background: var(--teal);
}

.cs-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.cs-row {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cs-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.cs-card.challenges .cs-icon {
    color: var(--rust);
}

.cs-card.solution .cs-icon {
    color: var(--teal);
}


/* dotted connector — touches icon above & below */

.cs-connector {
    position: relative;
    width: 2px;
    height: 50px;
    background-image: linear-gradient(to bottom, currentColor 50%, transparent 50%);
    background-size: 2px 8px;
    background-repeat: repeat-y;
    color: var(--rust);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    z-index: 1;
    margin: 0 34px;
}

.cs-card.solution .cs-connector {
    color: var(--teal);
}

.cs-connector i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    display: block;
}

.cs-label {
    margin-top: 14px;
    text-align: left;
    margin-left: 25px;
}

.cs-label h4 {
    font-weight: 600;
    margin: 0 0 4px;
}

.cs-label p {
    color: var(--muted);
    margin: 0;
    font-size: 16px;
}
.assess ul li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 18px;
}

/* arrow — half rust / half teal */

.cs-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    z-index: 5;
    box-shadow: 0 12px 28px rgba(20, 30, 50, .2);
}


/* Chevron */

.cs-chev {
    position: relative;
    width: 14px;
    height: 18px;
}

.cs-chev::before,
.cs-chev::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 15px;
    background: currentColor;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform-origin: center;
}


/* upper line */

.cs-chev::before {
    transform: translate(-50%, -84%) rotate(-42deg);
}


/* lower line */

.cs-chev::after {
    transform: translate(-50%, -22%) rotate(42deg);
}

.cs-chev.rust {
    color: var(--rust);
}

.cs-chev.teal {
    color: var(--teal);
    margin-left: -2px;
}

@media (max-width:768.98px) {
    .cs-wrap {
        grid-template-columns: 1fr;
        gap: 90px;
    }
    .cs-arrow {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}


/* assessment form */

.assess {
    background: var(--soft);
}

.assess h2 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px
}

.assess p {
    color: var(--muted);
    line-height: 30px;
}

.assess .form-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155
}

.assess .btn-rust {
    width: 100%;
}

.assess form {
    max-width: 100%;
    width: 500px;
}

.assess .form-control {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 16px
}

.assess .form-control:focus {
    border-color: var(--rust);
    box-shadow: none
}


/* built for */

.built {
    background: var(--dark);
    color: #fff;
    position: relative;
}

.built h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px
}

.built h2 em {
    color: var(--rust);
    font-style: normal
}

.built p {
    color: #cbd5e1;
}
/*Form*/
#demo-form-div {
  text-align: center;
  border: 1px solid transparent;
  padding: 20px;
  box-shadow: 1px 1px 2rem rgba(192, 185, 185, 0.3);
  margin-bottom: 50px;
  overflow: hidden;
}
/*FAQ secion css start*/
.faq {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.accordion-container {
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
}
.accordion-item {
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.accordion-header {
  background-color: #fff;
  color: #212529;
  padding: 15px;
  font-size: 20px;
  border: none;
  height: 75px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}
.accordion-content {
  background-color: #FAFAFA;
  overflow: hidden;
  padding: 0 15px;
  border-radius: 10px;
  transition: max-height 0.3s ease;
}
.accordion-content p {
  margin: 15px 0;
  line-height: 1.5;
  font-size: 18px;
}
.accordion-header:hover {
  background: #fff8ee;
  border: 1px solid #f5c48a;
  color: #C14E00;
}
.accordion-header.active {
  background: #fff8ee;
  border: 1px solid #f5c48a;
  color: #C14E00;
}
/*FAQ secion css end*/
@media (max-width:768px) {
    .hero h1 {
        font-size: 32px
    }
    .cs-arrow {
        position: relative;
        top: auto;
        left: auto;
        transform: rotate(90deg);
        margin: 10px auto
    }
}


/* mobile view css start */

@media screen and (max-width: 567px) {
    section {
        padding: 2rem 0.625rem;
        overflow: hidden;
    }
    p {
        font-size: 16px;
        line-height: 25px;
    }
    /*Breadcrumbs style start*/
    .breadcrumb-div {
        padding: 5px 5px !important;
    }
    .home-menu {
       display: none;
    }
    .home-icon {
        display: block;
        padding: 0;
        padding-left: 8px;
    } 
    /*Breadcrumbs style end*/

    /*whatsapp sticky style start*/
    .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; 
    }
    /*whatsapp sticky style end*/
    .btn-rust {
        font-size: 16px;
        padding: 10px 18px;
    }
    .hero-trust {
        gap: 10px;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-around;
    }
    .hero-trust .item {
        flex-direction: column;
        text-align: center;
    }
    .hero-trust svg {
        width: 35px;
        height: 35px;
    }
    .hero-trust .item p {
        margin-bottom: 10px;
    }
    .image-wrapper img {
        height: auto;
    }
    .hero {
        position: relative;
        background: linear-gradient(177deg, #fff 0%, rgba(255, 255, 255, .85) 42%, rgba(255, 255, 255, 0) 84%), url(assets/images/nabh-audit-landing.png);
        padding: 70px 0 0px;
        background-size: 100% 49%;
        background-position: bottom;
        background-repeat: no-repeat;
    }
    .benefits-wrap {
        gap: 0px;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 15px;
    }
    .benefits .sep {
        display: none;
    }
    .benefit .benefit-content {
        font-size: 16px;
    }
    .benefit {
        display: flex;
        gap: 10px;
        width: 50%;
    }
    .why ul li {
        font-size: 16px;
    }
    .why p {
        margin-bottom: 0px;
    }
    .cs-wrap {
        padding: 0 0px;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .cs-card {
        padding: 50px 15px 40px;
    }
    .cs-label {
        margin-top: 0px;
        margin-left: 10px;
        width: 100%;
    }
    .cs-connector i {
        width: 7px;
        height: 7px;
    }
    .cs-connector {
        width: 2px;
        height: 45px;
        margin: 0 19px;
    }
    .cs-icon {
        width: 50px;
        height: 45px;
        font-size: 1rem;
    }
    .cs-section {
        margin-bottom: 0px;
    }
    .assess .form-wrap {
        width: 100%;
    }
    /*FAQ Section CSS Start*/
.accordion-header {
    background-color: #fff;
    color: #212529;
    padding: 15px;
    font-size: 16px !important;
    border: none;
    height: auto !important;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
.accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
    font-size: 14px !important;
  }
/*FAQ Section CSS End*/
}

@media (min-width: 568px) and (max-width: 699.98px) {
    section {
        padding: 2rem 0.625rem;
        overflow: hidden;
    }
    p {
        font-size: 16px;
        line-height: 25px;
    }
    .btn-rust {
        font-size: 16px;
        padding: 10px 18px;
    }
    .hero-trust {
        gap: 10px;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-around;
    }
    .hero-trust .item {
        flex-direction: column;
        text-align: center;
    }
    .hero-trust svg {
        width: 35px;
        height: 35px;
    }
    .hero-trust .item p {
        margin-bottom: 10px;
    }
    .hero {
        position: relative;
        background: linear-gradient(177deg, #fff 0%, rgba(255, 255, 255, .85) 42%, rgba(255, 255, 255, 0) 84%), url(assets/images/nabh-audit-landing.png);
        padding: 70px 0 0px;
        background-size: 100% 49%;
        background-position: bottom;
        background-repeat: no-repeat;
    }
    .image-wrapper img {
        height: auto;
    }
    .benefits-wrap {
        gap: 0px;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 15px;
    }
    .benefits .sep {
        display: none;
    }
    .benefit .benefit-content {
        font-size: 16px;
    }
    .benefit {
        display: flex;
        gap: 10px;
        width: 50%;
    }
    .why ul li {
        font-size: 16px;
    }
    .why p {
        margin-bottom: 0px;
    }
    .cs-wrap {
        padding: 0 0px;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .cs-card {
        padding: 50px 15px 40px;
    }
    .cs-label {
        margin-top: 0px;
        margin-left: 10px;
        width: 100%;
    }
    .cs-connector i {
        width: 7px;
        height: 7px;
    }
    .cs-connector {
        width: 2px;
        height: 45px;
        margin: 0 19px;
    }
    .cs-icon {
        width: 50px;
        height: 45px;
        font-size: 1rem;
    }
    .cs-section {
        margin-bottom: 0px;
    }
    .assess .form-wrap {
        width: 100%;
    }
}


/* mobile view css end */


/* Tab view css start */

@media (min-width:767.98px) and (max-width:991.98px) {
    .hero-image {
        position: absolute;
        top: -55px;
    }
    /*Breadcrumbs style start*/
    .breadcrumb-div {
        padding: 4px 1.6rem !important;
    }
    /*Breadcrumbs style end*/ 
}

@media (min-width:700.98px) and (max-width:991.98px) {
    section {
        padding: 2rem 1.5rem;
        overflow: hidden;
    }
    .hero-trust .item {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-direction: column;
    }
    .hero-trust {
        gap: 5px;
        flex-wrap: wrap;
    }
    .hero-trust i {
        font-size: 20px;
    }
    .btn-rust {
        padding: 10px 25px;
        font-size: 16px;
    }
    p {
        color: #4B5563;
        font-weight: 400;
        font-size: 16px;
        line-height: 25px;
    }
    .hero-trust .item p {
        text-align: center;
    }
    .benefits-wrap {
        flex-wrap: nowrap;
    }
    .benefits .container {
        max-width: 100%;
    }
    .cs-wrap {
        padding: 0 0px;
        gap: 20px;
    }
    .cs-card {
        padding: 50px 15px 40px;
    }
    .cs-label {
        margin-top: 0px;
        margin-left: 10px;
        width: 100%;
    }
    .cs-connector i {
        width: 7px;
        height: 7px;
    }
    .cs-connector {
        width: 2px;
        height: 45px;
        margin: 0 19px;
    }
    .cs-icon {
        width: 50px;
        height: 45px;
        font-size: 1rem;
    }
    .cs-section {
        margin-bottom: 0px;
    }
    .why ul li {
        font-size: 16px;
    }
    .assess .form-wrap {
        width: 100%;
    }
}


/* Tab view css end */


/* Tab horizontal view css start */

@media (min-width:992px) and (max-width:1200px) {
    section {
        padding: 2rem 1.5rem;
        overflow: hidden;
    }
    .hero-trust .item {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-direction: column;
    }
    .hero-image {
        position: absolute;
        top: -170px;
    }
    .hero-trust {
        gap: 5px;
        flex-wrap: wrap;
    }
    .hero-trust i {
        font-size: 20px;
    }
    .btn-rust {
        padding: 10px 25px;
        font-size: 16px;
    }
    p {
        color: #4B5563;
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
    }
    .hero-trust .item p {
        text-align: center;
    }
    .assess .form-wrap {
        width: 100%;
    }
}


/* Tab horizontal view css end */


/* small desktop view css start */

@media (min-width: 1200px) and (max-width: 1399.98px) {
    section {
        padding: 3rem 2.5rem;
        overflow: hidden;
    }
    .hero-trust {
        gap: 15px;
    }
}


/* small desktop view css end */

@media (min-width: 1400px) {
    .assess .form-wrap {
        width: 500px;
    }
}