.fj_service img
{
	margin:0 auto !important;
}div#how_work h2 {
    background: #3aa6b9;
    padding: 20px;
    border-radius: 10px;
   width: 75px;
    display: inline-block;
    color: white;
	text-align:center !important;
}
.fj_boxed .elementor-icon {
    padding: 30px !important;
    background: #2f4156 !important;
    border-radius: 60px !important;
    /* color: white; */
    fill: white !important;
}
footer#colophon p, footer#colophon a, footer#colophon h5,footer#colophon h2 {
    font-style: italic !important;
}
.elementor-element-01007ab span {
    font-style: normal !important;
}
a.elementor-button.elementor-button-link.elementor-size-sm span {
    font-style: normal !important;
}

.elementor-2542 .elementor-element.elementor-element-76c1cd81 img,#about_imge img {
    
    box-shadow: 8px 8px 0px 0px #f2ab913d !important;
}
.ast-header-button-1 .ast-custom-button {
    color: #ffffff !important;
    background: #2f4156 !important;
}
.ast-header-button-1 .ast-custom-button:hover {
    background: #567c8d !important;
}
.footer-widget-area.widget-area.site-footer-focus-item.ast-footer-html-1 p {
    font-size: 16px !important;
}

@media (min-width: 600px) {
.main-header-menu .sub-menu
{
background: #567C8D !important;
}
ul.sub-menu li {
    border-bottom: 1px solid #fff;
}
.ast-builder-menu-1 .sub-menu, .ast-builder-menu-1 .inline-on-mobile .sub-menu
{
border-color: #2F4156;
}
}
@media (max-width: 600px) {
.pagination {
    display: grid !important;
}
}

#nextBtn { display: none; }
    .fjquiz.quiz-container{
      width: 100%;
/*       background: #FFEFE6; */
      border-radius: 10px;
/*       box-shadow: 0 2px 8px rgba(0,0,0,.08); */
/*       padding: 20px; */
      box-sizing: border-box;
    }

/*     .fjquiz h3 { font-size: 1.15rem; margin: 0 0 12px 0; } */

    /* questions wrapper holds absolutely positioned slides */
    .questions-wrapper{
      position: relative;
      overflow: hidden;
      transition: height .35s ease; /* smooth height change */
      margin-bottom: 18px;
    }

    /* each question slide */
    .question{
      position: absolute;
      inset: 0 0 0 0;
      padding: 8px 0 12px 0;
      box-sizing: border-box;
      opacity: 0;
      transform: translateX(100%);
      transition: transform .45s cubic-bezier(.2,.9,.3,1), opacity .35s ease;
      pointer-events: none;
    }

    /* visible */
    .question.active{
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }

    /* incoming from left (when navigating back) */
    .question.enter-left{
      transform: translateX(-100%);
    }
    /* incoming from right (when navigating forward) */
    .question.enter-right{
      transform: translateX(100%);
    }

    /* outgoing animations */
    .question.exit-left{
      transform: translateX(-100%);
      opacity: 0;
      pointer-events: none;
    }
    .question.exit-right{
      transform: translateX(100%);
      opacity: 0;
      pointer-events: none;
    }

    /* Option label layout (custom radio visuals) */
    .question .option-label{
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      margin: 10px 0;
      border: 2px solid #2f4156;
      border-radius: 28px;
      cursor: pointer;
      transition: background .18s ease, border-color .18s ease, transform .08s ease;
      user-select: none;
    }
    .question .option-label:hover{
      border-color: #2f4156;
      background: #f4faff;
      transform: translateY(-2px);
    }

    /* hide the native radio but keep in DOM for accessibility */
    .option-label input[type="radio"]{
      position: absolute;
      opacity: 0;
      width: 1px;
      height: 1px;
      pointer-events: none;
    }

    /* fake radio circle */
    .fake-radio{
      width: 20px;
      height: 20px;
      min-width: 20px;
      border-radius: 50%;
      border: 2px solid #ccc;
      display: inline-block;
      position: relative;
      box-sizing: border-box;
      flex-shrink: 0;
      background: white;
      transition: border-color .18s ease, background .18s ease;
    }
    /* inner dot (hidden until checked) */
    .fake-radio::after{
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%) scale(0);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: white;
      transition: transform .14s ease;
      box-shadow: inset 0 0 0 4px #2f4156;
    }

    /* when the radio is checked (input is sibling before fake-radio) */
    .option-label input[type="radio"]:checked + .fake-radio{
      border-color: #2f4156;
      background: #2f4156;
    }
    .option-label input[type="radio"]:checked + .fake-radio::after{
      transform: translate(-50%,-50%) scale(1);
      background: white;
      box-shadow: none;
    }

    .option-text{ flex: 1; font-size: 0.98rem; color: #222; }

    /* progress */
    .quiz-progress{
      background: #e9e9e9;
      border-radius: 8px;
      height: 18px;
      overflow: hidden;
      margin-bottom: 8px;
    }
    .quiz-progress-bar{
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #2f4156, #2f4156);
      transition: width .35s ease;
    }
    #progress-text{ text-align:center; font-size: .95rem; margin-bottom: 10px; color:#333; }

    /* pagination area (outside questions) */
/*     .pagination{
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 8px;
    } */

    .fjquiz button{
/*       padding: 10px 18px; */
/*       border-radius: 8px; */
      border: none;
      background: #2f4156;
      color: white;
      cursor: pointer;
/*       font-size: 1rem; */
      transition: background .12s ease, transform .08s ease;
    }
    .fjquiz button:hover{ transform: translateY(-2px); background: #567c8d; }
    .fjquiz button:disabled{ background: #cfcfcf; cursor: not-allowed; transform: none; }

    /* result screen */
    .result-screen{ display: none; text-align: center; margin-top: 12px; }
    .result-screen.active{ display: block; }

    /* small responsive tweaks */
    @media (max-width:520px){
      .option-label{ padding: 10px; gap: 10px; }
      .fake-radio{ width:18px; height:18px; }
    }

.elementor-element-6fd5e0e p {
    margin-bottom: 0px;
}