*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-radius: 10px !important;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden !important;
    color: var(--themeDark);
    position: relative;
}
ul {
    margin-left: 0 !important;
}
button, input, textarea, span{
    font-family: "Inter", sans-serif;
}
body.no-scroll{
    overflow-y: hidden;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
:root {
    --themeColor: #242C63;
    --themeColor2: #CD0F36;
    --themeColor3: #333333;
    --themeDark: rgb(0, 0, 0, .6); 
}
.gradient-heading {
    background: -webkit-linear-gradient(var(--themeColor), var(--themeColor2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.container {
    position: relative;
    padding-inline: 20px;
    z-index:99;
}
.container-full{
    max-width: 100%;
    padding-inline: 20px;
}
.special-heading{
    letter-spacing: -1px;
    font-family: "Host Grotesk", sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Host Grotesk", sans-serif;
}
a,
button,
svg {
    transition: .5s !important;
    text-decoration: none !important;
}

ul {
    list-style: none;
    padding-left: 0 !important;
}

input {
    box-shadow: none;
    outline: none !important;
}
.theme-color {
    color: var(--themeColor);
}
.pin-spacer {
    width: 100% !important;
    max-width: 100%;
}

.bi-btn {
    padding: 16px 30px;
    background-color: var(--themeColor);
    color: #fff !important;
    border: none;
    transition: .5s;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor:pointer !important;
    position: relative;
    z-index: 99 !important;
}
.bi-btn img{
    border-radius: 0 !important;
}
.bi-btn:hover {
    background-color: var(--themeColor2);
    scale: .96;
}
.bi-btn:hover:before {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.bi-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
    transition: .5s;
    border-radius: 10px;
    z-index: -1;
}
.bi-btn.no-padding {
    padding: 5px;
    font-weight: 700 !important;
}
.bi-btn.transparent {
    background-color: transparent !important;
    color: var(--themeColor) !important;
    text-decoration: underline !important;
}
.bi-btn.transparent:before{
    content: unset;
}
.bi-btn.outline {
    border: 1px solid transparent !important;
}
.bi-btn.outline:hover {
    border-color: var(--themeColor);
}
.bi-btn.tranparent{
    background-color: transparent;
    text-decoration: underline !important;
}
.bi-btn.tranparent.dark{
    color: var(--themeDark);
}
.bi-btn.white{
    background-color: #fff;
    color: #000 !important;
}
.bi-btn.white:hover{
    color: #fff !important;
}
.bi-btn.alt{
    background-color: var(--themeColor2);
}
.bi-btn.white:hover .arrow-alt{
    filter: invert(0);
}
.white {
    color: #fff;
}
.arrow-alt{
    filter: invert(1);
    transition: .5s;
}
.text-white{
    color: #fff !important;
}
.special-heading {
    position: relative;
    color: #fff;
    z-index: 99;
}
.bi-form .d-flex {
    margin-bottom: 10px;
}
.hero-form-wrapper hr {
    margin-bottom: 20px;
}
.special-heading:before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 80%;
    background-color: var(--themeColor2);
    z-index: -1;
    top: 9px;
}
.bi-header {
    padding: 20px 0;
    border-bottom: 2px solid var(--themeColor2);
    background-color: #fff;
}

.bi-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bi-nav {
    width: 60%;
}

.header-logo {
    width: 15%;
}

.header-btn {
    width: 20%;
}

.bi-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom:0 !important;
}

.bi-nav ul a {
    font-weight: 400;
    color: var(--themeColor);
    font-size: 16px;
}
.bi-hero{
    padding: 200px 0 110px;
    position: relative;
    background-color: #F4F5FF;
}
.hero-overlay{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.sub-heading {
    padding: 8px 20px;
    border: 1px solid #ab9f9f;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--themeColor);
    display: block;
    width: fit-content;
}

.hero-heading {
    color: var(--themeColor);
    font-size: 58px;
    letter-spacing: -2px;
    line-height: 1.1em;
    margin: 25px 0;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.col-70 {
    width: 70%;
}

.col-30 {
    width: 30%;
}

.hero-content-wrapper {
    padding-right: 80px;
}

.theme-para {
    font-size: 18px;
    color: var(--themeDark);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.4em;
}

.hero-content-wrapper .theme-para {
    max-width: 90%;
}

.btn-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: start;
}

/* .hero-content-wrapper .btn-wrapper {
    margin-bottom: 50px;
} */

.hero-logos-wrapper {
    display: flex;
    gap: 45px;
    justify-content: start;
    align-items: center;
}

.hero-logos-wrapper img {
    filter: grayscale(1);
}
.hero-form-wrapper {
    padding: 20px;
    border: 1px solid var(--themeColor2);
    background-color: #fff;
}

.form-heading {
    font-size: 24px;
    color: var(--themeColor);
    text-transform: capitalize;
    max-width: 85%;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.hero-form-wrapper hr {
    margin-bottom: 30px;
}
.bi-form{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
}
.bi-form input.col-50 {
    width: 48%;
}
.bi-form input.col-100 {
    width: 100%;
}
.bi-form input{
    height:50px;
    background-color:#EAEAEA;
    border:none;
    text-indent:15px;
    font-size:14px;
}

.bi-form .bi-btn {
    width: 100%;
    display: block;
    text-align: center;
    text-transform: Capitalize;
}

.hero-form-wrapper .modal-footer {
    width: 100%;
}

.marquee-section {
  width: 100%;
  background: var(--themeColor2);
  overflow: hidden;
  padding: 30px 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 50s linear infinite;
}

/* Each sliding block */
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
}

.marquee-item img {
  object-fit: cover;
  border-radius: 14px;
}

.marquee-item h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* Animation */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.bi-services{
    padding: 100px 0;
    background-color: var(--themeColor);
}
.top-content.white {
    color: #fff;
}

.top-content.white .sub-heading.white {
    color: #fff;
}

.theme-heading {
    font-size: 46px;
    letter-spacing: -1px;
    max-width: 90%;
    line-height: 1.1em;
    margin: 30px 0;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    width: 70%;
}

.top-right {
    width: 30%;
}

.top-right .bi-btn {
    margin-left: auto;
}
.service-wrapper {
    margin-top: 80px;
}

.service-number {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.service-number hr {
    width: 100%;
    border-color: #fffdfda1;
}

.service-number span {
    color: #FFACBD;
    font-size: 48px;
    font-weight: 800;
    font-family: 'Host Grotesk';
}

.service-item {
    display: flex;
    gap: 140px;
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
}

.service-item .service-heading {
    width: 30%;
    font-size: 32px;
    color: #fff;
    line-height: 1.2;
}

.service-item .theme-para {
    width: 30%;
    color: #fff;
    font-weight: 300;
    line-height: 1.2em;
    margin-bottom: 0;
}

.service-item img {
    width: 30%;
}
.bi-services .btn-wrapper{
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.bi-counter {
    padding: 100px 0;
    position: relative;
    box-shadow: inset 0 0px 10px #ff000030;
}

.counter-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 100px;
}

.counter-item {
    width: 210px;
}

.counter-number {
    font-size: 64px;
    font-weight: 600;
    font-family: 'Host Grotesk';
    color: #000;
    letter-spacing: -2px;
}

.counter-title {
    font-size: 20px;
    letter-spacing: -1px;
    font-family: 'Host Grotesk';
    padding: 4px 15px;
    background-color: var(--themeColor2);
    color: #fff;
    width: fit-content;
    line-height: 1;
}
.hero-overlay.alt{
    bottom: 0;
    top: unset;
    rotate: 180deg;
    left: 0;
    right: unset;
}
.bi-projects{
    padding: 120px 0;
}
.projects-slider-wrapper {
    margin-top: 60px;
}
.project-slide-item img {
    rotate: -10deg;
}

.projects-slider-wrapper .slick-track {
    padding: 15px 0;
}
.btn-wrapper.center{
    justify-content: center;
}
.bi-projects .btn-wrapper{
    margin-top: 70px;
}

.bi-trusted{
    padding-bottom: 100px;
}

.trusted-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--themeColor);
    text-transform: capitalize;
}

.trusted-special {
    padding: 1px 15px;
    font-family: 'Host Grotesk';
    background-color: var(--themeColor2);
    color: #fff;
    line-height: 1;
}
.trusted-logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #000;
    overflow: hidden;
}

.logos-item {
    flex: 1 0 25%;
    border: 1px solid #000;
    height: 140px;
    display: flex;
    align-items: center;
    border-radius:0 !important;
}
.bi-strive-section{
    padding: 50px 30px 100px;
}
.theme-color-bg{
    background-color: var(--themeColor);
    padding: 20px 35px 35px;
    border-radius: 8px;
}
.col-50{
    width: 50%;
}
.strive-content{
    padding-right: 90px;
}
.strive-content .theme-heading{
    max-width: 100%;
}
.strive-content .theme-para{
    color: #fff;
    font-weight: 200;
}
.strive-content .btn-wrapper{
    margin-top: 50px;
}
.bi-strive-section .btn-wrapper{
    margin-top: 70px;
}
.bi-testimonial{
    padding-bottom: 90px;
}
.testimonial-item {
    margin: 0px 18px;
    padding: 25px;
    border: 1px solid var(--themeColor);
    position: relative;
    height: 310px !important;
}

.testimonial-slider {
    margin-top: 40px;
}

img.quote-img {
    position: absolute;
    right: 25px;
    bottom: 25px;
}

.testimonial-item .theme-para {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 300;
}

.author-name {
    font-size: 24px;
    color: var(--themeColor);
}

.author-designation {
    font-family: 'Inter';
}
.top-content.center {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
}

.top-content.center .sub-heading {
    margin-inline: auto;
}

.top-content.center .top-left {
    width: 100%;
}

.top-content.center  .top-right {
    width: 100%;
}

.top-content.center .bi-btn.alt {
    margin-right: auto;
}

.top-content.center .theme-heading {
    max-width: 100%;
    text-align: center;
}
.bi-convinced {
    padding-bottom: 110px;
    position: relative;
    overflow: hidden;
}
.bi-convinced::before {
    content: "";
    position: absolute;
    width: 35%;
    height: 70%;
    inset: 0;
    background-color: var(--themeColor2);
    border-radius: 50%;
    margin-inline: auto;
    top: unset;
    bottom: -200px;
    left: 200px;
}
.bi-convinced .row {
    align-items: end;
}

.convinced-heading {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2em;
}

.col-35 {
    width: 35%;
}

.convinced-middle {
    padding: 0px 0px;
    margin-bottom: -120px;
}
.convinced-left .counter-wrapper {
    margin-top: 50px;
}

.convinced-left .counter-wrapper .counter-para {
    font-size: 18px;
    font-weight: 300;
    padding-right: 80px;
}

.convinced-left .counter-wrapper .counter-item {
    width: 100%;
}
.footer-review{
    margin-top: 30px;
}
.bi-footer {
    padding: 50px 0 30px;
    background-color: var(--themeColor);
}

.footer-left .theme-para {
    color: #fff;
    margin-top: 40px;
    font-weight: 200;
}

.footer-left {
    padding-right: 122px;
}

.footer-right {
    padding-left: 130px;
}

.footer-left span {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

.link-wrapper small {
    display: block;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 5px;
    font-weight: 200;
}

.link-wrapper {
    margin-bottom: 30px;
}

.link-wrapper a {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.footer-page-links {
    padding-top: 30px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.link-wrapper a:hover{
    color: var(--themeColor2);
    font-weight: 900;
}

.footer-page-links li {
    margin: 14px 0;
}

.footer-page-links li a {
    color: #fff;
    font-family: 'Inter';
    font-weight: 300;
    font-size: 18px;
}
.footer-page-links li a:hover {
    color: var(--themeColor2);
    font-weight: 600;
}
.bi-copyright {
    padding: 30px 0;
    background-color: var(--themeColor2);
}

.copyright-wrapper {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-wrapper a {
    color: #fff;
    margin-left: 30px;
}
.bi-form .d-flex {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

p.main-label {
    display: block;
    width: 100%;
    color: #000;
    margin-bottom:0;
}

input[type='radio'] {
    width: fit-content !important;
    height: fit-content;
}

.bi-form .d-flex label {
    flex: 1 0 fit-content;
}
.bi-header .row{
    width: 100% !important;
}


/*INNER PAGES CSS*/


.inner-page .bi-strive-section {
    background-color: var(--themeColor);
    border-radius: 0 !important;
}
.inner-page .bi-trusted {
    padding-top: 90px;
}
.bi-nav a:hover {
    font-weight:600;
    color: var(--themeColor2);
    transform: translateY(-5px)
}
.work-page .bi-testimonial {
    padding-top: 90px;
}
.bi-work-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
}

.work-item {
    flex: 0 0 25%;
    margin-bottom: -35px;
    margin-inline: -16px;
}
.contact-page ul.theme-para {
    max-width: 70%;
}

.contact-page ul.theme-para li {
    margin: 15px 0;
}

.contact-page ul.theme-para li a {
    font-family: 'Inter';
    font-weight: 400;
}
.contact-page .bi-strive-section {
    padding-top: 130px;
    padding-bottom:400px;
    position: relative;
}
.contact-overlay-img {
    position: absolute;
    bottom: 0;
    left: 23vw;
    max-width: 30%;
}
.inner-services-wrapper{
    padding-top: 100px;
}
.inner-services-wrapper:before{
    content: unset;
}
.all-service-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 50px 30px;
    flex-wrap: wrap;
}

.inner-service-item {
    flex: 0 0 25%;
    padding: 30px;
    box-shadow: 7px 7px 0 var(--themeColor);
    transition: .5s;
    border-radius: 0 !important;
    height: 180px;
}

.inner-service-item p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.3em;
    margin-top: 20px;
}

.inner-service-item h4 {
    font-size: 24px;
    line-height: 1.2em;
    color: var(--themeColor);
}

.inner-service-item:hover {
    background-color: var(--themeColor2);
}

.inner-service-item:hover :is(h4,p) {
    color: #fff;
}
ul.sub-menu {
    border-radius: 0 !important;
    background-color: #fbeded;
    padding: 10px 20px !important;
    box-shadow: 5px 5px 0 var(--themeColor) !important;
    width: 295px;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
}

ul.sub-menu li {
    width: 100%;
}

ul.sub-menu li a {
    width: 100%;
    transform: translateY(0px) !important;
}
.mega-trigger{
    position:relative;
}
.mega-trigger::before {
    content: "^";
    position: absolute;
    right: -13px;
    bottom: 0px;
    height: 13px;
    width: fit-content;
    line-height: 1em;
    rotate: 180deg;
    top: 0px !important;
    font-size: 20px !important;
    font-family: monospace !important;
    margin: auto;
    transition: 0.5s;
}

.mega-trigger:hover:before {
    rotate: 0deg !important;
}
.bi-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  z-index: 9999;
  transition: all 0.4s ease-out;
}
.bi-header.nav-sticky-active {
    width: 1250px;
    top: 10px;
    border: 2px solid var(--themeColor2);
    border-radius: 10px !important;
}
.header-btn .bi-btn {
    margin-left: auto;
}
a.bi-breadcrumb {
    color: var(--themeColor2);
    text-decoration: underline !important;
}
.logos-item img {
    max-width: 165px;
    margin-inline: auto;
    filter: grayscale(1);
}
.scale-down img{
    scale: .8
}
.bi-blog {
    padding: 100px 0;
}
.blog-filter {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid var(--themeColor2);
}

ul.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

ul.category-tabs li.active {
    background-color: var(--themeColor2);
    color: #fff;
}

ul.category-tabs li {
    padding: 4px 20px;
    color: #000;
    font-weight: 600;
    transition: .5s;
    cursor:pointer;
}

ul.category-tabs li:hover {
    background-color: #f2eeee;
}
ul.category-tabs li.active:hover {
    background-color: var(--themeColor2);
    color: #fff;
}

input#blog-search {
    height: 45px;
    text-indent: 10px;
    background-color: #f4f4f5;
    border: none;
}
.blog-grid {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-card-modern {
    flex: 0 0 31%;
    border: 1px solid #f1efef;
    border-radius: 12px !important;
    background-color: #fff;
    transition: .5s;
}
.blog-card-modern:hover {
    background-color: #f3efef;
}

.blog-content {
    padding: 20px;
}

.blog-cats {
    display: flex;
    gap: 10px;
    text-decoration: underline;
    color: var(--themeColor3);
    margin-bottom: 10px;
}

.blog-title {
    line-height: 1em;
}

.blog-title a {
    color: var(--themeColor);
    font-weight: 700;
}

.blog-author {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.blog-author-details {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-author img {
    max-width: 40px;
}

.blog-author span {
    font-size: 14px;
}
iframe.cal-embed {
    position: relative;
    top: 50px;
    overflow: hidden !important;
}
/*.bi-strive-section .row {*/
/*    align-items: start !important;*/
/*}*/
.strive-content .theme-heading{
    margin-top:0 !important;
}
.location-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
    flex-wrap: wrap;
}

.location-item {
    flex: 0 0 31%;
    padding: 20px;
    border: 2px solid var(--themeColor2);
    text-align: center;
    transition: .5s;
}

.location-item h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--themeColor);
    margin-bottom: 0;
    line-height: 1em;
    margin-top: 15px;
}

.location-item:hover {
    background-color: var(--themeColor2);
    box-shadow: 8px 8px 0px var(--themeColor)
}
.location-item:hover h3{
    color: #fff;
}
.bi-white {
    background-color: #fff !important;
}

.row.row-reverse {
    flex-direction: row-reverse;
}

.bi-white .strive-content.white {
    color: var(--themeColor);
}

.bi-white .strive-content.white .theme-para {
    color: #000;
}

/* MEGA MENU */
        /* NAV */
.navbar {
  position: relative;
  padding: 20px;
  font-family: Inter, sans-serif;
}

.mega-trigger {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  font-weight: 500;
}

/* MEGA MENU */
/*.mega-menu {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  top: 100%;*/
/*  width: 100%;*/
/*  background: #fff;*/
/*  box-shadow: 0 30px 60px rgba(0,0,0,0.12);*/
/*  display: none;*/
/*  padding: 30px 40px;*/
/*}*/

/*.mega-menu.active {*/
/*  display: block;*/
/*}*/

/*.mega-container {*/
/*  display: grid;*/
/*  grid-template-columns: 2fr 1.5fr 2fr;*/
/*  gap: 40px;*/
/*}*/

/* COLUMNS */
.mega-col h6 {
  font-size: 11px;
  letter-spacing: 1px;
  color: #6b7280;
  margin-bottom: 15px;
}

/* PRODUCTS */
.mega-link {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
}

.mega-link:hover {
  background: #f4f6f8;
}

.mega-link p {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
}

/* ICONS */
.icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.billing { background: #4ade80; }
.collections { background: #60a5fa; }
.revenue { background: #818cf8; }
.reporting { background: #f472b6; }

/* PLATFORM */
.platform a {
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
  color: #111;
}

.platform span {
  display: block;
  font-size: 13px;
  color: #6b7280;
}

/* RIGHT CARD */
.highlight-card {
  background: linear-gradient(135deg, var(--themeColor), var(--themeColor2));
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}

.highlight-card h4 {
  margin-bottom: 8px;
}

.mock-card {
  margin-top: 20px;
  background: #fff;
  color: #111;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
  padding: 30px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 1000;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-container {
  display: grid;
  grid-template-columns: 1.9fr 1.2fr 1.2fr 2fr;
  gap: 20px;
}
.bi-btn.top-margin{
    position:relative;
    top:20px;
}
.mega-col.products {
    border-right: 1px solid #f1eded;
    border-radius: 0 !important;
}

.mega-col.products a.mega-link {
    width: 90%;
}
.bi-btn.location-btn {
    font-size: 10px !important;
}
.mega-link strong{
    color: var(--themeColor);
}
.mega-link:hover strong{
    color: var(--themeColor2);
}
.copyright-wrapper p {
    margin-bottom: 0 !important;
}
.only-content-item .theme-para {
    color: #000;
}
.pin-spacer {
    height: fit-content !important;
    top: 0 !important;
}
.single-content a {
    color: #8d8df7 !important;
    text-decoration: underline !important;
    font-weight: 300 !important;
}
.service-number hr {
    margin-bottom: 0;
}
.post-thumbnail {
    display: none;
}
.bi-faq {
    padding: 100px 0;
    background-color: var(--themeColor);
    margin-bottom: 80px;
}
.faq-accordion {
  /*max-width: 900px;*/
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 15px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 15px 15px;
  line-height: 1.6;
  color: #555;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 500px; /* enough height for content */
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg); /* + becomes x */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    transform 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
}

.faq-question .icon {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border: none;
}

.faq-question {
    align-items: center !important;
    transition: .5s;
}

.faq-question .icon {
    width: fit-content;
    height: fit-content;
}

.faq-question:hover {
    background-color: var(--themeColor2);
    color: #fff;
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    padding-top: 10px;
}

.faq-item.active .faq-question {
    background-color: var(--themeColor2);
    color: #fff;
}

.tab-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 25px;
}

.tab-item {
  padding: 12px 22px;
  border-radius: 50px;
  background: #f1f1f1;
  cursor: pointer;
  transition: .3s;
}

.tab-item.active,
.tab-item:hover {
  background: var(--themeColor2);
  color: #fff;
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity .4s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}
.tab-content.active {
    background-color: #fff;
    padding: 20px;
}

.pricing-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
.card.featured {
    position: relative;
    overflow:hidden;
}

.card.featured:before {
    content:"Top Pick";
    position:absolute;
    background-color: var(--themeColor2);
    height:fit-content;
    width:fit-content;
    color: #fff;
    rotate:40deg;
    right: -40px;
    top: 16px;
    padding: 3px 40px;
}
.card {
  flex:1;
  padding: 28px;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid #eee;
  text-align: center;
  transition: .3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.featured {
  border: 2px solid var(--themeColor2);
}

.price {
  /*font-size: 30px;*/
  color: var(--themeColor2);
  font-weight: 700;
  max-width: 100%;
  width: 100%;
}

.card ul {
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.card ul li {
  padding: 6px 0;
  color: #555;
}

.btn {
  background: var(--themeColor2);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
}
.tabs-wrapper {
  position: relative;
  overflow: hidden;
  transition: height .45s ease;
}

.tab-content {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.tab-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.tab-nav {
    justify-content: start;
}

.pricing-section .container {
    padding-inline: 0;
}

.tab-item {
    padding: 10px 15px;
    font-size: 15px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    flex: 1;
    text-align: center;
}

.tab-item.active, .tab-item:hover {
    border-color: var(--themeColor2);
}
.pricing-cards .btn {
    margin-top: 30px !important;
    display: block;
}
.pricing-cards h3 {
    color: var(--themeColor);
    font-size: 30px;
}

/* ===== NESTED TABS FIX ===== */
.nested-tab-content {
  display: none;
}

.nested-tab-content.active {
  display: block;
}
nested-tab-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.nested-tab-item {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
  background: #f2f2f2;
  font-size: 14px;
  transition: 0.3s;
}

.nested-tab-item.active {
  background: var(--theme-color, #000);
  color: #fff;
}
.nested-tab-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.nested-tab-nav .nested-tab-item {
    padding: 11px 25px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
}

.nested-tab-nav .nested-tab-item.active {
    background-color: var(--themeColor2);
    color: #fff;
}
.bi-alertbox {
    position: fixed;
    left: 20px;
    bottom: 20px;
    max-width: 320px;
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    opacity: 0;
    transition: .5s;
    z-index: 999;
    box-shadow: 0 0 10px rgb(0, 0, 0, .2);
}
.bi-alertbox.active{
    opacity: 1;
}
.bi-alertbox .d-flex {
    gap: 15px;
}
.alertbox-content {
    font-size: 14px;
}
.alertbox-content small {
    font-size: 12px;
    font-weight: 300;
    color: #848484;
}
.alertbox-content p {
    margin-bottom: 10px;
}
.alert-logo {
    padding: 10px;
    background-color: #F2F2F2;
    border-radius:10px;
    margin-left:-3px;
}
.d-flex.justify-content-between.align-items-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d-flex.justify-content-start.align-items-start {
    display: flex;
    justify-content: start;
    align-items: start;
}

.alert-logo {
    max-width: 75px;
}

.alertbox-content img {
    border-radius: 0 !important;
}

.alertbox-content p {
    color: var(--themeColor);
}
.postid-317 .single-title {
    max-width: 72%;
}

@media(max-width: 1199px){
    .postid-317 .single-title {
        max-width: 100%;
    }
}
.single-sidebar.toc ul{
    height: 635px;
    overflow-y: auto;
    padding:15px;
}
.single-sidebar.toc ul::-webkit-scrollbar {
    width: 7px;
    border-radius: 7px;
    background-color: #eae5e5;
}

.single-sidebar.toc ul::-webkit-scrollbar-thumb {
    background-color: var(--themeColor2);
    border-radius: 7px;
}
.single-sidebar.toc ul::-webkit-scrollbar-track {
    border-radius: 7px;
}
