/*In general css start*/
@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;
    font-size: 14px;
}
button:focus {
    box-shadow: none !important;
    outline: 1px solid #fff !important;
}
a:active {
    color: #BF5708;
}
a {
    text-decoration: none;
}
.sticky-top {
    position: -webkit-sticky;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1020;
    background: #fff;
}
section {
  padding: 2.4rem 5rem;
  overflow: hidden;
}
.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;
}
.sub-heading { 
    width: 78%;
    font-size: 19px;
}
section span {
    color: #C14E00;
}
.title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
p {
  color: #4B5563;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.tick-emoji {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}
.tick-emoji::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}
.title-tag {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}
/*In general css end*/

/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #BF5708 #ffffff;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 14px;
}
*::-webkit-scrollbar-track {
    background: #ffffff;
}
*::-webkit-scrollbar-thumb {
    background-color: #BF5708;
    border-radius: 10px;
    border: 3px solid #ffffff;
}
/* end */

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

/*pulse icon animation start*/
 :root {
    --brand-orange: #BF5708;
    --brand-blue: #1E40AF;
    --brand-green: #16A34A;
    --card-radius: 24px;
}
.pulse-ring {
    transform: scale(0.7) !important;
}
.tag-title {
  color: #B04F08;
  font-weight: 700;
  background: #FFF;
  border-radius: 10px;
  padding: 5px;
  letter-spacing: 1px;
  font-size: 14px;
}
.badge-pill {
    border-radius: 999px;
    padding: .45rem .9rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
}
.pulse-ring {
    position: absolute;
    border-radius: 999px;
    opacity: 0.12;
    border: 4px solid;
    pointer-events: none;
    width: 76px;
    height: 76px;
}
.rounded-3xl {
    border-radius: 24px;
}
.rounded-2xl {
    border-radius: 16px;
}
.slide-in-left {
    animation: slideInLeft .8s ease both;
}
.slide-in-right {
    animation: slideInRight .8s ease both;
}
.fade-in-up {
    animation: fadeInUp .7s ease both;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}
.badge-pill {
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
    color: #fff;
}
/*pulse icon animation 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 section style start*/
.hero-section, .unlock {
    background: #F5FAFF;
}
.right {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-para {
  color: #505766;
  font-size: 19px;
  font-weight: 500;
  line-height: 32px;
}
.brand-shop-button {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #6B7280;
  margin-top: 40px !important;
}
a {
  text-decoration: none;
}
.btn {
  display: inline-block;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  border-radius: 10px;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.hero_schedule_button {
  width: 180px ;
  font-size: 16px ;
  font-weight: 500 ;
  padding: 14px;
}
.secondary_button {
  color: #fff;
  background: #BF5708;
}
.secondary_button:hover {
  background-color: #ae3910;
  border-color: #a5360f;
  color: white !important;
}
.primary_button:hover {
  background-color: #808080;
  border-color: #808080;
  color: white !important;
}
.hero_contact_button {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  width: 180px;
  border: 1.5px solid grey;
}
.car-wrap {
    display: flex;
    justify-content: center;
}
.car-image {
  max-width: 100%;
  height: auto;
}
/*Hero section style end*/

/*Video section2 style start*/
.video-sections {
  padding: 2rem 5rem;
}
.player.fullscreen {
  max-width: 80%;
  width: 80%;
  height: 80%;
  transition: max-width 0.5s ease, width 0.5s ease;
}
.player {
  max-width: 650px;
  height: 400px;
  border: 3px solid #fafafa;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  position: relative;
  font-size: 0;
  overflow: hidden;
  margin: 50px auto;
}
.player__video {
  width: 100%;
}
.player__controls {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%) translateY(-5px);
  transition: all .3s;
  flex-wrap: wrap;
  background: rgba(0,0,0,0.4);
  color: #fff;
}
.player__controls > * {
  flex: 1;
}
.player:hover .player__controls {
    transform: translateY(0);
}
.player:hover .progress {
    height:15px;
}
.player__button {
  background: none;
  border: 0;
  line-height: 1;
  color: white;
  text-align: center;
  outline: 0;
  padding: 0;
  cursor: pointer;
  max-width: 40px;
}
.fullscreen-btn {
  color: #000;
  margin: auto 6px;
  background-color: #f9f9f9;
  border-radius: 2px;
  border: 0;
  max-width: 60px;
  font-size: 12px;
  padding: 0 7px;
}
.progress {
  flex: 10;
  position: relative;
  display: flex;
  flex-basis: 100%;
  height: 5px;
  transition: height 0.3s;
  background: rgba(0,0,0,0.5);
  cursor: ew-resize;
}
.progress__filled {
  width: 50%;
  background: #e16408;
  flex: 0;
  flex-basis: 0%;
}

/*Video integration section2 style end*/

/*Key Features card Four section3 start*/
.feature-card-wrapper .row {
  margin-top: 50px;
}
.feature-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 15px 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card::before {
  content: "";
  /*position: absolute;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid transparent;
  z-index: 1;
  box-sizing: border-box;
  transition: border-color 0.5s ease;
}
.icon-wrapper-one {
  background-color: #F2F3FF;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  top: -89px;
  z-index: 2;
}
.icon-wrapper-two {
  background-color: #FFEFDF;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  top: -89px;
  z-index: 2;
}
.icon-wrapper-three {
  background-color: #E4E6F4;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  top: -89px;
  z-index: 2;
}
.icon-wrapper-four {
  background-color: #FCF0E6;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  top: -89px;
  z-index: 2;
}
.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.feature-card:hover h3 {
    color: #E16408 !important;
}
.feature-card:hover::before {
    border-color: #e16408;
    /* Brand color for border */
    animation: border-draw 0.5s linear forwards;
}
.feature-card:hover .icon-wrapper-one, .feature-card:hover .icon-wrapper-two, .feature-card:hover .icon-wrapper-three, .feature-card:hover .icon-wrapper-four {
  transform: scale(1.1) translateY(0px);
  animation: bouncing 0.8s 0.5s;
  border: 1px solid #e16408;
}
.feature-card .icons {
  transition: all 0.3s ease-in-out 0.1s;
  animation: bouncing 0.8s 0.5s;
}
.icon-wrapper-one .icons {
  color: #7273A8;
}
.icons {
  width: 50%;
  z-index: 2;
}
.cont-card {
  margin-top: -68px;
  padding-bottom: 18px;
}
@keyframes bouncing {
    from,
    to {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(0.9, 1.1);
    }
    50% {
        transform: scale(1.1, 0.9);
    }
    75% {
        transform: scale(0.80, 1.05);
    }
}
/*Key Features four card section3 end*/

/*content hover image show section4 style start*/
.section-wrap1 {
  margin-bottom: 6%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section-wrap2 {
  margin-bottom: 1%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.nav_btns1, .nav_btns2, .nav_btns3, .nav_btns4, .nav_btns5, .nav_btns6, .nav_btns7 {
  display: none;
}
.tabs-container, .tabes-container, .tabez-container, .tabm1-container, .tabm2-container, .tabm3-container, .tabs1-container {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.tab, .tabes, .tabesn, .tabe, .tabez, .tabm1, .tabm2, .tabm3, .tabs1 {
  font-size: 20px;
  font-weight: 600;
  padding: 14px;
    padding-right: 14px;
    padding-left: 14px;
  margin-bottom: 10px;
  background-color: #fafafa;
  max-height: fit-content;
  border-radius: 10px;
  cursor: pointer;
  overflow: auto;
  transition: max-height 0.5s, overflow 0.5s 0.5s;
}
.tab.active, .tabes.active, .tabesn.active, .tabe.active, .tabez.active, .tabm1.active, .tabm2.active, .tabm3.active, .tabs1.active {
  border-radius: 10px;
  fill: #B04F08;
  color: #B04F08;
  background: #FCF0E6;
  transition: max-height 0.5s, overflow 0.5s 0.5s;
}
.showme {
    display: none;
}
.showme p {
   color: #676565;
  font-size: 16px;
  padding: 0px 31px;
  margin-bottom: 10px;
  line-height: 25px;
  font-weight: 400;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: max-height 0.5s, overflow 0s;
}
.tabe.showhim.px-2.active .showme {
    display: block;
}
.tabes.showhim.px-2.active .showme {
    display: block;
}
.tabm1.showhim.px-2.active .showme {
    display: block;
}
.tabm2.showhim.px-2.active .showme {
    display: block;
}
.tabm3.showhim.px-2.active .showme {
    display: block;
}
.tabs1.showhim.px-2.active .showme {
    display: block;
}
.contents, .contentse, .contente, .contentseae, .contentm1, .contentm2, .contentm3, .contents1 {
  display: none;
  padding: 5px;
}
.content-img {
  max-width: 100%;
  transform: translateY(5px);
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
  will-change: opacity, transform;
}
.active {
  display: block;
}
/*content hover image show section4 style end*/

/*Key Feature section5 start*/

.section-bg {
  background: #213343;
}
.services-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.services .h2-tag {
  width: 80%;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.services .brand-para {
  letter-spacing: 0.7px;
  width: 85%;
  text-align: center;
}
.services .features-box {
  margin-top: 30px;
}
#services .box {
  padding: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 30px 10px;
  background: transparent;
  transition: all 0.3s ease-in-out;
  text-align: left;
}
#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
#services .icon .service-icon {
  font-size: 50px;
  margin-bottom: 10px;
  line-height: 1;
}
#services .title {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 21px;
}
#services .title a {
  color: #ffff;
}
.services a {
  text-decoration: none;
}
#services .description {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
}
#services .box:hover {
  transform: scale(1.1);
}

/*Key Feature section5 end*/

/*Trusted Client Logo Section6  Start*/

.owl-nav {
  display: none !important;
}
#client-brand {
    position: relative;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.carousel-prev {
  margin-left: 10px;
}
.carousel-next {
  margin-right: 10px;
}
.carousel-prev:hover, .carousel-next:hover {
  pointer-events: auto;
  background: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-prev, .carousel-next {
  pointer-events: auto;
  background: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-slider i {
  position: relative;
  top: 1px !important;
  font-size: 23px;
}
.carousel-prev i, .carousel-next i {
  color: #BF5708;
}
.slide-wraps {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.s_t_t {
  width: 80%;
}
.section_two_title {
  text-align: center;
  font-weight: 500;
}
#client-brand .owl-carousel {
  max-width: 1100px;
  margin: 0 auto;
}
.slide-box {
  width: 175px;
  height: 170px;
  padding: 20px;
  color: #fff;
  margin: 20px;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.client-img {
  display: inherit !important;
  max-width: 100% !important;
}
.carousel-country {
  font-size: 14px;
  color: black;
  text-align: center;
  padding-top: 2px;
}
#client-brand .owl-nav, #client-brand .owl-dots {
  display: flex;
  justify-content: center;
}
.owl-carousel .owl-dots, .owl-carousel .owl-nav {
  display: block;
  margin-top: 10px;
  text-align: center;
}
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.productone .owl-carousel button.owl-dot.active {
  width: 14px;
  height: 14px;
  background: #BF5708 !important;
}
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  padding: 5px;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  margin-right: 6px;
  border-radius: 25px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-dot {
  width: 10px;
  height: 10px;
  padding: 2px !important;
  border: 1px solid #BF5708 !important;
  background: #fff !important;
}

/*Trusted Client Logo Section6  end*/

/*Data Safety and privacy section7 start */
.box-section-title {
  color: var(--foundation-secoundary-secoundary-400, #505766);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 37px;
  letter-spacing: 0.5px;
}
.logo-circle {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.logo-wrap1, .logo-wrap {
  padding-left: 10px;
}
.image-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-top: 2px dashed #e16408;
  border-right: 2px dashed #e16408;
  border-left: 2px dashed #e16408;
  border-bottom: 2px dashed #e16408;
  padding: 10px;
  animation: spin 10s infinite linear;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.image-circle img {
  animation: spin 10s infinite reverse linear;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.safety-image {
  width: 100%;
  height: 100%;
}
/*Data Safety and privacy section7 end */

/*Download brochure section9 start*/
.sc-4 .container {
  background: #f6f9fc;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/*Download brochure section9 end*/

/*Testimonial section10 start*/
  section.testimonial {
    background: #F5FAFF;
    width: 100%;
  }
  /* LEFT SIDE */
  .testimonial .left-col h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .testimonial .left-col .sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .testimonial .left-col .sub span {
    color: #C14E00;
    font-weight: 700;
  }

  .testimonial .ratings {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .testimonial .rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .testimonial .rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    min-width: 140px;
  }

  .testimonial .rating-badge .logo-placeholder {
    font-weight: 800;
    font-size: 1.1rem;
    color: #C14E00;
    width: 28px;
    text-align: center;
  }

  .testimonial .rating-badge .info {
    display: flex;
    flex-direction: column;
  }

  .testimonial .rating-badge .info b {
    font-size: 0.8rem;
    font-weight: 700;
    color: black;
  }

  .testimonial .rating-badge .info span {
    font-size: 0.72rem;
    color: black;
  }

  .testimonial .stars {
    color: #f4a500;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  /* RIGHT SIDE — CAROUSEL */
  .testimonial .right-col {
    position: relative;
  }

  .testimonial .carousel-wrapper {
    position: relative;
    overflow: hidden;
  }

  .testimonial .cards-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .testimonial .card {
    flex: 0 0 100%;
    background: #fff;
    border-radius: 20px;
    padding: 42px 44px 36px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .testimonial .quote-icon {
    font-size: 5rem;
    line-height: 0.6;
    color: #C14E00;
    font-family: Georgia, serif;
    margin-bottom: 18px;
    display: block;
  }

  .testimonial .card p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    flex: 1;
  }

  .testimonial .test-card-footer {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .testimonial .client-info .name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
  }

  .testimonial .client-info .role {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 3px;
  }

  /* AVATAR INDICATORS */
  .testimonial .avatars {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
    justify-content: center;
  }

  .testimonial .avatar-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    background: #dde6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .testimonial .avatar-btn.active {
    border-color: #C14E00;
    transform: scale(1.12);
  }

  /* NAV ARROWS */
  .testimonial .nav-arrows {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 18px;
  }

  .testimonial .arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.2s;
  }

  .testimonial .arrow-btn:hover {
    background: #C14E00;
    border-color: #C14E00;
    color: #fff;
  }
  .testimonial .g2-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
  .topnav__item__g2.topnav__item__g2 {
  height: 28px;
  width: 28px;
  color: #ff492c;
  fill: currentColor;
  stroke: currentColor;
}
.g2-logo circle {
  fill: #ff492c;
}
.g2-logo path {
  fill: #fefefe;
}

  /* CARD ENTER ANIMATION */
  @keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .testimonial .card.animating {
    animation: fadeSlideIn 0.45s ease both;
  }
  .testimonial .g2-badges img {
  width: 79px;
  height: 102px;
  object-fit: contain;
}
/*Testimonial section10 end*/


/*FAQ section11 style start*/
.faq .accordion-container {
    width: 100%;
    max-width: 1000px;
}
.faq .accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.faq .accordion-header {
    background-color: #fff;
    color: #000;
    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;
}
.faq-section .container {
    max-width: 1000px;
    overflow: hidden;
}
.faq .accordion-header:hover {
    background-color: #BF5708;
    color: #fff;
}
.faq .accordion-header.active {
    background-color: #BF5708;
    color: #fff;
}
.faq .accordion-content {
    background-color: #FAFAFA;
    overflow: hidden;
    padding: 0 15px;
    border-radius: 10px;
    max-height: 0;
    transition: max-height 0.3s ease;
}
.faq .accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
    font-size: 18px;
}
.faq .icon {
    transition: transform 0.3s ease;
}
.faq .active .icon {
    transform: rotate(45deg);
}
.faq {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
/*FAQ section11  style end*/


@media screen and (max-width: 567px) {
/*In general css start*/
section {
    padding: 25px 16px;
    overflow: hidden;
}
.sub-heading { 
    width: 100%;
    font-size: 18px;
}
.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;
}
/*In general css end*/

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

/*Hero section1 style start*/
.car-image {
    width: 100%;
    height: auto;
}
.brand-shop-button {
    display: flex;
    /*flex-direction: column;*/
    gap: 20px;
    color: #6B7280;
    margin-top: 0px !important;
    justify-content: center;
}
.secondary_button {
    color: #fff;
    font-size: 15px;
    font-weight: 500 ;
    background: #BF5708;
    padding: 10px ;
    width: 100% ;
}
.primary_button {
    color: #000;
    border-color: #d3d3d3;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    width: 100%;
}
.brand-para {
    color: #505766;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
  }
/*Hero section1 style end*/

/*Data Safety and privacy section7 start */
.box-section-title {
    font-size: 16px !important;
    line-height: 28px !important;
    padding-top: 10px !important;
    text-align: center;
}
.logo-circle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.logo-wrap1 {
  padding-left: 0px;
}
.logo-wrap {
  padding-left: 10px;
}
.image-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border-top: 2px dashed #e16408;
    border-right: 2px dashed #e16408;
    border-left: 2px dashed #e16408;
    border-bottom: 2px dashed #e16408;
    padding: 5px;
    animation: spin 10s infinite linear;
}
.image-circle img {
  animation: spin 10s infinite reverse linear;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.safety-image {
    max-width: 100%;
    height: 100%;
    margin-top: 20px;
  }
/*Data Safety and privacy section7 end */

/*content hover image show section4 style start*/
.tabs-container, .tabes-container, .tabez-container, .tabm1-container, .tabm2-container, .tabm3-container, .tabs1-container {
    scroll-snap-type: x mandatory;
    display: flex;
    Flex-direction: row;
    Gap: 10px;
    overflow: scroll;
    margin-top: 4px;
}
.tab, .tabes, .tabesn, .tabe, .tabez, .tabm1, .tabm2, .tabm3, .tabs1 {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 600;
    padding: 14px;
    margin-bottom: 10px;
    max-height: fit-content !important;
    min-width: 300px;
    width: 100%;
    cursor: pointer;
    overflow: auto;
    scroll-snap-align: start;
}
.tabe.showhim.px-2.active .showme {
    display: block;
}
.tabes.showhim.px-2.active .showme {
    display: block;
}
.tabm1.showhim.px-2.active .showme {
    display: block;
}
.tabm2.showhim.px-2.active .showme {
    display: block;
}
.tabm3.showhim.px-2.active .showme {
    display: block;
}
.tabs1.showhim.px-2.active .showme {
    display: block;
}
.tabm4.showhim.px-2.active .showme {
    display: block;
}
.content-img {
    height: auto;
}
.active p {
    display: block;
}
.showme {
    display: block;
}
.next-btns {
    display: block;
    background-color: #e16408;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #faf7f2;
}
.next-btns svg {
    width: 16px;
    color: #fff;
}
.tabs-wrap {
    position: relative;
}
.nav_btns1, .nav_btns2, .nav_btns3, .nav_btns4, .nav_btns5, .nav_btns6, .nav_btns7 {
    position: absolute;
    z-index: 2;
    display: flex;
    width: 105%;
    justify-content: flex-end;
    top: 50%;
    transform: translateY(-50%);
}
.section-change {
    display: flex;
    flex-direction: column;
}
/* Right column (tabs/content) comes first */
.section-change .mobile-flex {
    order: 1;
}
/* Left column (image) comes second */
.section-change > .col-lg-6 {
    order: 2;
}
/*content hover image show section4 style end*/

/*Key feature Four card section4 start*/
.feature-card-wrapper .row {
    display: flex;
    flex-direction: column;
    gap: 75px;
}
.hero-images {
    margin-top: 10px;
}
/*Key feature Four card section4 end*/

/*Download Broucher section start*/
.sc-4 .container{
   text-align: center;
   padding:20px;
}
/*Download Broucher section end*/

/*FAQ section start*/
.faq .accordion-header {
    font-size: 16px;
    height: auto;
}
.faq .accordion-content p {
  margin: 15px 0;
  line-height: 1.5;
  font-size: 16px;
}
/*FAQ section end*/
}
@media (min-width:700.98px) and (max-width:990px) {
/*In general css start*/
section {
    padding: 1.5rem 1.5rem;
    overflow: hidden;
}
.sub-heading {
  width: 100%;
  font-size: 18px;
}
/*In general css end*/

/*Breadcrumbs style start*/
.breadcrumb-div {
    padding: 4px 1.6rem !important;
}
/*Breadcrumbs style end*/ 

/*Hero section style start*/
.brand-para {
  color: #505766;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}
.brand-shop-button {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #6B7280;
  margin-top: 10px !important;
}
.first-doc-pic-2 {
    margin-top: 10%;
}
/*Hero section style end*/

/*content hover image show section4 style start*/
.content-img {
    height: auto;
}
/*content hover image show section4 style end*/   

/*Key feature Four card section3 start*/
.feature-card-wrapper .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 75px;
  }
.feature-card-wrapper {
  margin: 0px 0px;
}
/*Key feature Four card section3 end*/

/*Data Safety and privacy section7 start*/
.medium-resp {
    text-align: center;
}
.safety-image {
    width: 70%;
    height: 70%;
    margin-top: 30px;
}
/*Data Safety and privacy section7 end*/

/*FAQ section start*/
.faq .accordion-header {
    font-size: 18px;
}
.faq .accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
    font-size: 16px;
}
/*FAQ section end*/
}
@media (min-width:990px) and (max-width:1200px) {
 /*Data Safety and privacy section7 start */
.box-section-title {
    text-align: left;
}
.box-section-title {
  color: var(--foundation-secoundary-secoundary-400, #505766);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 37px;
  letter-spacing: 0.5px;
}
 /*Data Safety and privacy section7 end */
/*content hover image show section4 style start*/
.content-img {
    height: auto;
}
/*content hover image show section4 style end*/

/*Key feature card section3 start*/
.feature-card-wrapper .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 75px;
}
.feature-card-wrapper {
    margin: 20px 0px 0px 0px;
}
/*Key feature card section3 end*/
}
/* ─── TABLET (768px – 991px) ─────────────────────────────────────────────── */
@media (max-width: 991px) {

  /* Stack col-4 and col-8 into full width */
  .testimonial .col-4,
  .testimonial .col-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .testimonial .col-4 {
    margin-bottom: 32px;
    text-align: center;
  }

  /* Center the rating badge */
  .testimonial .rating-row {
    justify-content: center;
  }

  .testimonial .left-col h3,
  .testimonial .col-4 h3 {
    font-size: 1.7rem;
  }

  .testimonial .card {
    padding: 32px 30px 28px;
    min-height: 220px;
  }

  .testimonial .quote-icon {
    font-size: 4rem;
  }

  .testimonial .card p {
    font-size: 0.97rem;
  }

  .testimonial .nav-arrows {
    justify-content: center;
  }
  .testimonial .g2-badges {
    justify-content: center;
  }
}

/* ─── MOBILE (up to 767px) ───────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Stack columns */
  .testimonial .col-4,
  .testimonial .col-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .testimonial .col-4 {
    margin-bottom: 24px;
    text-align: center;
  }

  /* Heading */
  .testimonial .col-4 h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }

  .testimonial .col-4 .sub {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }

  /* Center rating */
  .testimonial .rating-row {
    justify-content: center;
  }

  .testimonial .rating-badge {
    min-width: unset;
    padding: 7px 12px;
  }

  /* Card */
  .testimonial .card {
    padding: 24px 20px 22px;
    border-radius: 14px;
    min-height: 200px;
  }

  .testimonial .quote-icon {
    font-size: 3.2rem;
    margin-bottom: 12px;
  }

  .testimonial .card p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .testimonial .test-card-footer {
    margin-top: 20px;
  }

  .testimonial .client-info .name {
    font-size: 0.95rem;
  }

  .testimonial .client-info .role {
    font-size: 0.78rem;
  }

  /* Avatars */
  .testimonial .avatars {
    gap: 8px;
    margin-top: 18px;
  }

  .testimonial .avatar-btn {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  /* Arrows */
  .testimonial .nav-arrows {
    justify-content: center;
    margin-top: 14px;
  }

  .testimonial .arrow-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .testimonial .g2-badges img {
    width: 65px;
    height: 84px;
  }
}