:root {
    --purple: #342C6C;
    /* primary brand purple */
    --purple-dark: #2b2459;
    --purple-100: #F6F5FF;
    /* light background */
    --mustard: #FFC415;
    /* accent */
    --blue: #3C2C83;
    /* deep blue/purple */
    --text: #4b4b4b;
}

.text-mustard {
    color: var(--mustard)
}

body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}



p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.85;
    line-height: 32px;
    letter-spacing: 1px;
}

.section-padding {
    padding: 109px 0px;
}

/* ---- Theme vars (edit to match your project) ---- */
:root {
    --yellow-color: #FFC415;
    --blue-color: #342C6C;
    --secondary-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --light-purple-color: rgba(132, 90, 255, 0.6);
}


.float-center {
    display: flex;
    justify-content: center;
}

/* ---- Button styles ---- */
.main-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    padding: 18px;
    border-radius: 50px;
    background-color: var(--yellow-color);
    border: 0.0625rem solid var(--yellow-color);
    color: var(--blue-color);
    text-decoration: none;
    white-space: nowrap;
}


.mouse-cursor-gradient::before {
    content: "";
    position: absolute;
    inset: 0%;
    pointer-events: none;
    transform: translateZ(0);
    background: radial-gradient(circle var(--size, 0px) at var(--x, 50%) var(--y, 50%), rgb(152 85 218 / 90%), transparent 60%);
    transition: background-size .2s ease;
    opacity: 0;
    transition: opacity .12s linear;
}

.mouse-cursor-gradient.is-hovered::before {
    --size: 110px;
    opacity: 1;
}


.ehr-demo-form .hs-submit .actions::before {
    content: "";
    position: absolute;
    inset: 0%;
    pointer-events: none;
    transform: translateZ(0);
    background: radial-gradient(circle var(--size, 0px) at var(--x, 50%) var(--y, 50%), rgb(152 85 218 / 90%), transparent 60%);
    transition: background-size .2s ease;
    opacity: 0;
    transition: opacity .12s linear;
    border-radius: 50px;
}

.ehr-demo-form .hs-submit .actions.is-hovered::before{
    --size: 110px;
    opacity: 1;
}

.main-btn .arrow-icon {
    transition: transform .5s ease;
}

.main-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Loader */
#ehr-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .85);
    z-index: 2000;
    transition: opacity .4s ease;
}

#ehr-loader.loader-hidden {
    opacity: 0;
    pointer-events: none
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: #fff
}

.circle-loader {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, .25);
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    margin-bottom: .5rem
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.stars {
    letter-spacing: .25rem
}

.click-icon svg {
    font-size: 24px
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, var(--mustard), #ffd800);
    color: var(--purple);
    border: none;
    font-weight: 600;
    box-shadow: 0 10px 18px rgba(255, 196, 21, .25);
}

.btn-gradient:hover {
    filter: brightness(.95);
    color: var(--purple)
}

.btn-outline-mustard {
    border: 2px solid var(--mustard);
    color: var(--purple)
}

/* Hero */
.hero {
    background: url('../images/ehrreviews-banner.webp') center/cover no-repeat;
    position: relative;
    color: #fff;
    /*height: 100vh;*/
    overflow-x: hidden;
}

.hero-heading {
    font-size: 48px;
    color: #fff;
    opacity: 0.85;
    font-weight: 300;
    text-transform: capitalize;
    line-height: 60px;
}

.hero-paragraph {
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 20px;
    font-weight: 300;
    margin-bottom: 0;
    opacity: 0.85;
    line-height: 34px;
}

.hero .badge-round {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--mustard);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    /* transform:translate(20%,-20%); */
}

/*........................................................................tooltip css starts*/
/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    user-select: none;
    pointer-events: none;
    position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: none !important;
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
      content: attr(tooltip);
    text-align: left;
    width: 260px;
    padding: 12px 5px 15px 15px;
    border-radius: .3ch;
    background: #fff;
    color: #000;
    z-index: 1000;
    border-radius: 0 15.917px 15.917px 15.917px;
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
  left: 0% !important;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 8%;
    transform: translate(0) !important;
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

nav ul {
        list-style-type: none !important;
    }

/*................................................................tooltip css ends*/

/* ==================2nd section ============ */
.guide-container-heading {
    font-size: 64px;
    font-weight: 400;
    opacity: 0.85;

}

.guide-container .object-fit-cover {
    object-fit: cover;
    transform: rotate(90);
}

.guide-container img {
    width: 100%;
}

.bg-warning-subtle {
    background-color: transparent !important;
}

.bullet {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    margin-top: 10px;
    border: 1px solid #FFC415 !important;
}

/* ==================3nd section ============ */

/* Section theme */
.ss-section {
    background: #342C6C;
    color: #fff;
}

/* Rotating loops */
.translate-middle {
    transform: translate(-50%, -50%);
}

.rotate-127 {
    transform: rotate(127deg);
}

@keyframes rotateClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateAnticlockwise {
    from {
        transform: rotate(127deg);
    }

    to {
        transform: rotate(487deg);
    }

    /* 127 + 360 */
}

.animate-rotate-cw {
    animation: rotateClockwise 80s linear infinite;
}

.animate-rotate-ccw {
    animation: rotateAnticlockwise 80s linear infinite;
}

/* Glow “blast” */
@keyframes blastPulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.85);
    }

    60% {
        opacity: 0.2;
    }

    100% {
        opacity: .3;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
}

.ss-blast {
    position: absolute;
    top: 72%;
    left: 88%;
    width: 50px;
    height: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: radial-gradient(circle,
        rgba(255, 196, 21, .9) 0%,
        rgba(255, 216, 0, .5) 40%,
        rgba(255, 216, 0, .2) 70%,
        transparent 100%);
    filter: blur(25px) drop-shadow(0 0 30px #FFC415) drop-shadow(0 0 60px #FFD800);
    animation: blastPulse 2s ease-out forwards;
    pointer-events: none;
}

.sneak-peak-heading {
    font-size: 63px;
    color: #FFFFFF;

    font-weight: 200 !important;
    text-transform: capitalize;
    line-height: 65px;
}

.sneak-peak-paragraph {
    font-size: 30px;
    color: #FFFFFF;
    margin-top: 20px;
    font-weight: 100;
    margin-bottom: 30px;
    opacity: 1 !important;
    line-height: 44px;
    text-transform: capitalize;
}

.gif-container img {
    border-radius: 35px;
    border: 1px solid #fff;
}

/*============================5-section FAQ================================= */

.faq-small-user img {
    width: 33px;
    height: 33px;
    border-radius: 50%;


}

#faq .main-btn {
    padding: 8px 15px 8px 10px !important;
}

#faq .main-btn h5 {
    font-size: 14px !important;
    font-weight: 500 !important;

}

#faq .main-btn h6 {
    font-size: 14px !important;
    font-weight: 300;

}

.Faq-heading {
    font-size: 64px;
    font-weight: 400;
    color: #000;
    opacity: 0.85;
}

.faq-paragraph {
    font-size: 22px;
    color: #282828;
    font-weight: 400;
    line-height: 34px;
    width: 85%;
    opacity: 1;
}
/* .faq-wrapper {
      max-width: 600px;
      margin: 40px auto;
    } */

.faq-accordion .accordion-item {
    border: 0;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    background: transparent;
}

/* ====COMMON HEADER STYLE====== */
.faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    gap: 16px;
    /* border-radius: 16px; */
    border: 0;
    box-shadow: none;
    padding: 18px 20px;
    font-weight: 500;
    font-size: 30px;
    font-weight: 400;
    background: #ffffff;
    color: #222;
}

.accordion-body p {
    opacity: 1 !important;
    font-size: 18px !important;
    padding: 0px 40px;
}

.accordion-button span {
    padding: 30px 25px !important;
    line-height: 40px;
    font-size: 28px;
}


.accordion-button .faq-number {
    width: 57px;
    min-width: 57px;
    height: 57px;
    /* border-radius: 999px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 42px;
    background: transparent !important;
    /* background: #f3f4ff; */
    color: #9D96A8;
}

.faq-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 57px;
    height: 57px;
    border-radius: 999px;
    background: #f3f4ff;
    content: "+";
    font-weight: 500;
    font-size: 42px;
    color: #3C2C83;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    background-image: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "×";
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}


.faq-accordion .accordion-button:not(.collapsed) {
    background: #3C2C83;
    color: #fff;
    padding-bottom: 0;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.faq-accordion .accordion-body {
    background: #3C2C83;
    color: #f7f2ff;
    padding: 0 20px 18px 82px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/*...........................................................................................media queries*/

@media (min-width: 1600px) {
    .container {
        max-width: 1400px !important;
    }
}

@media (min-width: 2000px) {
    .container {
        max-width: 1600px !important;
    }
    .hero .container {
        max-width: 1400px !important;
    }
    .nav-bg.sticky ~ div:not(#pbox,.jp_main_footer_img_wrapper), .nav-bg.sticky ~ header {
        padding-top: 210px;
        padding-bottom: 90px;
    }
    .hero{
        height: 70vh;
    }
    .hero .container.position-relative.h-100{
        padding-top: 160px;
    }

}

@media (max-width: 1700px) {
    .ss-blast {
        top: 70%;
    }
}
@media (max-width: 1600px) {
    .hero .container{
        max-width: 1400px;
    }
}


@media (max-width: 1400px) {

    .hero .container{
        max-width: calc(100% - 40px);
    }
    .guide-container-heading {
        font-size: 66px;
    }
}

@media (max-width: 1300px) {
    img {
        width: 100%;
    }

    .section-padding {
        padding: 90px 0px;
    }

    p {
        font-size: 16px;
        line-height: 26px;
    }

    .main-btn {
        padding: 11px;
    }

    .hero-heading {
        font-size: 46px;
        line-height: 50px;
    }

    .hero-paragraph {
        font-size: 17px;
        line-height: 32px;
    }

    .guide-container-heading {
        font-size: 48px;
        line-height: 50px;
        font-weight: 500;
        opacity: 1;

    }

    .Faq-heading {
        font-size: 48px;
        line-height: 50px;
        font-weight: 500;
        color: #000;
    }

    .faq-paragraph {
        font-size: 16px;
        color: #505050;
        font-weight: 300;
        line-height: 28px;
        width: 100%;
    }

    .accordion-body p {
        font-size: 16px !important;
        /* padding: 0px 66px; */
    }

    .faq-number {
        width: 47px;
        min-width: 47px;
        height: 47px;
        font-weight: 700;
        font-size: 32px;

    }

    .accordion-body p {
        opacity: 1 !important;
        font-size: 15px !important;
        padding: 0px;
        line-height: 25px;
    }

    .accordion-button span {
        padding: 8px !important;
        font-size: 20px;
    }

    .faq-accordion .accordion-button::after {
        width: 47px;
        height: 47px;
        font-size: 32px;

    }

    .sneak-peak-section .section-padding {
        padding: 30px 0px;
    }

    .sneak-peak-heading {
        font-size: 48px;
        line-height: 50px;
        color: #FFFFFF;

        line-height: 60px;
    }

    .sneak-peak-paragraph {
        font-size: 16px;
        color: #FFFFFF;
        margin-top: 5px;
        font-weight: 300;
        margin-bottom: 10px;
        opacity: 1 !important;
        line-height: 28px;
        text-transform: capitalize;
        width: 100% !important;
        text-align: start;
    }

    ul.list-unstyled.m-0 {
        text-align: start;
    }

}

@media (max-width: 1200px) {
    .hero {
        height: auto;
        padding: 80px 0px;
    }

    .hero-heading {
        font-size: 42px;

        line-height: 54px;
    }

    .hero-paragraph {
        font-size: 18px;
        line-height: 32px;
    }

    /* .ehr-demo-form {
    margin-top: -62%!important;

} */
   
}

@media (max-width: 768px) {
    .row.align-items-center{
        margin-top: 0 !important;
    }
    .hero .row.align-items-center{
        margin-top: 50px !important;
    }
    .arrow-go-out.bottom::before {
        right: 0;
        width: 55px;
        height: 55px;
        background-size: 50%;
    }
    img {
        width: 100%;
    }

    .section-padding {
        padding: 60px 0px;
    }
    section.section-padding div[class^="col-"]:first-child {
        margin-top: 0;
    }
    p {
        font-size: 15px;
        line-height: 25px;
    }

    .main-btn {
        padding: 9px;
    }

    .hero-heading {
        font-size: 30px;
        line-height: 40px;
    }

    .hero-paragraph {
        font-size: 16px;
        line-height: 30px;
    }

    .guide-container-heading {
        font-size: 30px;
        font-weight: 500;
        opacity: 1;
    }

    .Faq-heading {
        font-size: 30px;
        font-weight: 500;
        color: #000;
    }

    .faq-paragraph {
        font-size: 16px;
        color: #505050;
        font-weight: 300;
        line-height: 28px;
        width: 100%;
    }

    .accordion-body p {
        font-size: 16px !important;
        /* padding: 0px 66px; */
    }

    .faq-number {
        width: 47px;
        min-width: 47px;
        height: 47px;
        font-weight: 700;
        font-size: 32px;

    }

    .accordion-body p {
        opacity: 1 !important;
        font-size: 15px !important;
        padding: 0px;
        line-height: 25px;
    }

    .accordion-button span {
        padding: 8px !important;
        font-size: 20px;
        line-height: 28px;
        gap: 0;
    }

    .faq-accordion .accordion-button::after {
        width: 47px;
        height: 47px;
        font-size: 32px;

    }

    .sneak-peak-section .section-padding {
        padding: 30px 0px;
    }

    .sneak-peak-heading {
        font-size: 30px;
        color: #FFFFFF;

        line-height: 60px;
    }

    .sneak-peak-paragraph {
        font-size: 16px;
        color: #FFFFFF;
        margin-top: 5px;
        font-weight: 300;
        margin-bottom: 10px;
        opacity: 1 !important;
        line-height: 28px;
        text-transform: capitalize;
        width: 100% !important;
        text-align: start;
    }

    ul.list-unstyled.m-0 {
        text-align: start;
    }

    .faq-accordion .accordion-button {
        gap: 0px;
        margin-bottom: -1px;
        /* border-radius: 16px; */

    }
      .Faq-heading {
        
        line-height: 40px;
     
    }
    
}/*@media (max-width: 768px)*/

@media (max-width: 576px) {
    .faq-accordion .accordion-button {
        align-items: flex-start;
    }

    .faq-accordion .accordion-body {
        padding-left: 10px;
    }
}