/* ================================
   Fonts: Poppins (local .woff2)
   ================================ */
   @font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }

   * {
    box-sizing: border-box;
  }

  *, *:focus-visible {
    outline: 0;
    border: 0;
    box-shadow: none;
  }
  a, a:hover, a:focus{
    text-decoration: none;
  }
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #32363E;
    line-height: 1.5;
  }

  .container {
    max-width: 1270px;
    padding: 0 15px;
    margin: 0 auto;
  }
  ul, li{
    list-style: none;
    padding: 0;
  }

   header {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
  }

   nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    background: #fff;
    position: relative;
  }

  nav .logo {
    font-weight: 700;
    font-size: 20px;
  }

  .header-left {
    display: flex;
    align-items: center;
  }

  #nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0 0 0 45px;
    padding: 0;
  }
  ul#nav-links > li > a {
    color: #32363E;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.15px;
    text-decoration: none;
  }

  #nav-links > li {
    position: relative;
    font-size: 15px;
    cursor: pointer;
  }


#nav-links > li > ul {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-width: 180px;
  padding: 10px 0;
  margin: 0;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
}

#nav-links > li > ul li {
  padding: 8px 15px;
}

#nav-links > li > ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  font-size: 14px;
  transition: background 0.2s;
}

#nav-links > li > ul li a:hover {
  background: #f5f5f5;
}

#nav-links > li:hover > ul {
  display: block;
}

nav .actions button {
  background: #0d6efd;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}
.right-side ul li a{
  color: #32363E;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.15px;
  text-decoration: none;
}

   .hero > .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
  }
  .hero .content{
    width: calc(100% - 600px);
  }
  .hero h1 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin: 20px 0;
  }
  .color-green{
    color: #00A63E;
  }
  .color-blue {
    color: #165DFB;
  }
  .trust{
    display: inline-block;
    height: 42px;
    line-height: 42px;
    border: 1px solid #BEDAFF;
    border-radius: 20px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    color: #32363E;
  }
  .hero p {
    font-size: 20px;
    margin: 0;
    color: #505663;
  }
  .hero-form {
    max-width: 480px;
  }
  .btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hero input {
   width: 100%;
   padding: 23px 20px 24px;
   margin: 20px 0;
   border: 1px solid #BEDAFF;
   border-radius: 20px;
   color: #979797;
   font-size: 18px;
 }

 .hero .btn-group button {
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

.btn-primary {
  background: #007EFC;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #32363E;
  border: 1px solid #BEDAFF;
}

.hero .rating {
  margin-top: 20px;
  font-size: 14px;
}

.hero .image img {
  max-width: 100%;
  height: auto;
}
.language-switcher {
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.lang-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 13px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.lang-btn > img {
  width: 18px;
  height: 13px;
}
.lang-btn span img{
  width: 10px;
  height: 5px;
  position: relative;
  top: -2px;
}
.language-switcher:after {
    content: '';
    display: block;
    height: 10px;
    width: 100%;
    margin-bottom: -10px;
}
footer .lang-btn span img{
  top: 2px;
}
.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  min-width: 150px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 100;
}

.lang-dropdown li {
  padding: 5px 8px;
}

.lang-dropdown li a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.lang-dropdown li:hover {
  background: #f5f5f5;
}

.lang-dropdown img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.language-switcher:hover .lang-dropdown, .language-switcher:focus .lang-dropdown  {
  display: block;
}
.right-side {
  display: flex;
  align-items: center;
  gap: 14px;
}
.right-side > ul{
	display: flex;
  padding: 0;
  gap: 14px;
}
.header-right-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.header-right-btn a {
  text-decoration: none;
  border-radius: 10px;
  display: flex;
  height: 44px;
  align-items: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
}

.header-right-btn a.c-sales-btn {
  background: #F5F9FF;
  border: 1px solid #EAEAEA;
  color: #32363E;
}

.header-right-btn a.header-dashboard-btn {
  background: #165DFB;
  color: #FFFFFF;

}
.logos {
  margin: 70px 0;
  width: 100%;
  overflow: hidden;
}
.logos .container{
  overflow: hidden;
}
.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 25s linear infinite;
}
.logo-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;

}
.logo-main li img {
  max-height: 50px; /* adjust size */
  display: block;
  object-fit: contain;
}
@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.features {
  background: #F9FAFB;
  text-align: center;
  padding: 50px 0px;
  font-family: 'Poppins', sans-serif;
}

.common-title {
  font-size: 40px;
  font-weight: 700;
  color: #32363E;
  line-height: 60px;
  text-align: center;
  margin: 0;
}


.feature-grid {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  max-width: 1090px;
  margin-top: 50px;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #505663;
  line-height: 30px;
}

.feature-box p {
  font-size: 20px;
  color: #505663;
  margin: 0;
}
.feature-box .icon{
  margin-bottom: 3px;
}
.services {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}
.services .subtitle {
  color: #505663;
  font-size: 20px;
  margin-bottom: 50px;
}
.boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.box {
  background: #FAFAFA;
    border-radius: 36px;
    text-align: left;
    padding: 28px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    border: 2px solid transparent;
}
.box:hover {
    border-color: #165DFB;
}
.img-box {
    overflow: hidden;
    max-height: 210px;
    border-radius: 20px;
}


.box img {
     width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top left;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    border-radius: 20px;
}
/*.box:hover img {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}*/

.box h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0;
  color: #32363E;
  line-height: 30px;
}

.box p {
  font-size: 18px;
  color: #505663;
  margin: 0;
}

.cta {
  margin-top: 50px;
}

.btn-primary {
  display: inline-block;
  background: #165DFB;
  color: #fff;
  padding: 17px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
}

.booked-store {
  padding: 60px 20px;
  background: #F5F9FF;
}


.content-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 50px;
}

/* Accordion Styles */
.accordion {
  background: #F5F9FF;
  border-radius: 12px;
  overflow: hidden;
}

.accordion-item {
  background: #F5F9FF;
}
.accordion-item.active{
  border-radius: 17px;
}
.accordion-item.active, .accordion-item.active .accordion-header{
  background: #fff;
}
.accordion-item.active .accordion-header{
  border-radius: 17px 17px 0 0;
}
.accordion-header {
  width: 100%;
  border: none;
  padding: 18px 20px;
  text-align: left;
  background: transparent;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #32363E;
}

.accordion-header::after {
  content: '';
  background: url('images/down-arrow.svg');
  transition: transform 0.3s;
  width: 11px;
  height: 6px;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  color: #505663;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  padding: 0px 20px 20px;
}

/* Right Side Image */
.accordion-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: opacity 0.3s ease;
}
.two-column {
  padding: 60px 20px;
}



/* Grid for cards */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-top: 50px;
}
.client h5 {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 15px 10px;
}
.client h5 span{
  display: block;
}
/* Case card */
.case-card {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-img img {
  width: 100%;
  height: auto;
  display: block;
}

.case-content {
  padding: 20px;
  border: 1px solid #00000040;
  border-radius: 0 0 20px 20px;
}

.case-quote {
  background: #165DFB;
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  padding: 5px;
  margin: 0;
}
.case-img {
  position: relative;
}
.client {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.case-stats {
  display: flex;
  justify-content: space-between;
  margin: 0;
  max-width: 80%;
}
.case-stats > div:first-child {
  border-right: 1px solid #D9D9D9;
  width: 50%;
}

.case-stats div h3 {
  font-size: 30px;
  font-weight: 500;
  margin: 0px;
}

.case-stats div p {
  font-size: 16px;
  color: #505663;
  margin: 0;
}

.case-text {
  font-size: 14px;
  color: #505663;
  line-height: 1.6;
  margin: 15px 0;
  min-height: 90px;
}

.case-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.case-link:hover {
  text-decoration: underline;
}

.dashboard-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #FFFBFE 0%, #F3F6FF 100%);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.desc {
  font-size: 20px;
  color: #000000;
  text-align: center;
  margin: 30px auto 40px;
}
.dashboard-content {
  display: flex;
  gap: 60px;
  align-items: start;
}

/* Slider */
.dc-slider {
  position: relative;
  width: calc(100% - 545px);
}

.dc-slides {
  position: relative;
  overflow: hidden;
}

.dc-slide {
  display: none;
  animation: fade 0.5s;
}

.dc-slide.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}



.dc-card img {
  width: 100%;
  border-radius: 0px;
  background: transparent;
  display: block;
}

.dc-dots {
  text-align: center;
  margin-top: 15px;
}

.dc-dots span {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #D9D9D9;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dc-dots span.active {
  background: #165DFB;
}

/* Accordion */
.accordian-rating {
  text-align: left;
  width: 485px;
}

.dc-accordion-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 17px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.dc-accordion-header {
  padding: 33px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  font-size: 24px;
  color: #32363E;
}

.dc-accordion-header::after {
  content: "";
  background: url(images/down-arrow.svg);
  position: absolute;
  width: 14px;
  height: 9px;
  transition: transform 0.3s;
  top: 50px;
  right: 40px;
  background-repeat: no-repeat;
  background-size: 100%;
}

.dc-accordion-item.active .dc-accordion-header::after {
  transform: rotate(180deg);
}

.dc-accordion-body {
  display: none;
  padding: 15px 20px;
  font-size: 0.95rem;
  color: #555;
  border-top: 1px solid #eee;
}

.dc-accordion-item.active .dc-accordion-body {
  display: block;
}

.tab-section {
  padding: 60px 0px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  background: #fff;
}


/* Tabs Navigation */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  color: #32363E;

}

.tab-btn.active {
  background: #F5F9FF;
}

.tab-btn:hover {
  background: #F5F9FF;
}

/* Content */
.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-image-box {
  position: relative;
  display: inline-block;
  width: 100%;
}

.tab-image-box img {
  width: 100%;
  border-radius: 10px;
}

/* Overlay Box */
.tab-overlay {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 20px;
  max-width: 365px;
  border-radius: 33px;
  text-align: left;
}

.tab-overlay p {
  margin: 0;
}

.tab-overlay a {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}

.tab-overlay .tab-author {
  display: block;
  margin-top: 10px;
  margin-top: 8px;
  font-size: 14px;
  color: #000;
  font-weight: 700;
}
.business-info {
  font-size: 14px;
  font-weight: 600;
  padding-left: 10px;
}
.main-testi{
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}
.quote {
  display: block;
  font-family: Instrument serif;
  font-size: 60px;
  color: #D9D9D9;
  line-height: 0.5;
}
.close-quote{
  text-align: right;
  position: relative;
  top: 5px;
}
.lv-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 33px;
}
.lv-inner {
  position: relative;
}
.lv-name-main{
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 20px 15px;;
}

.lv-name {
  font-size: 20px;
  font-weight: 700;
}
.lv-name-main span {
  display: block;
}
.lv-bio{
  font-size: 14px;
}
.local-vocal {
  background: #F5F9FF;
  padding: 50px 0;
}
.tools-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.tools-list li {
  width: 180px;
  border: 1px solid #EAEAEA;
  border-radius: 20px;
  padding: 40px 15px;
}
.g-name {
  font-size: 16px;
  font-weight: 600;
  color: #101828;
  margin: 10px 0 0;
}
.g-desc {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #505663;
}
.faq-section {
  padding: 60px 0;
  background: #F5F9FF;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 39px 30px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
}

.faq-icon {
  transition: transform 0.3s;
}
.faq-icon img{
  width: 14px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* adjust if needed */
  padding: 0px 30px 15px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}
.faq-section .common-title {
  margin-bottom: 50px;
}

.bs-section {
  background: #155AF9;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.bs-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.bs-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 60px;
}

.bs-title span {
  color: #fff;
}

.bs-text {
  font-size: 20px;
  margin: 0 0 15px;
  color: #fff;
}

.bs-btn {
  display: inline-block;
  background: #fff;
  color: #155AF9;
  font-weight: 700;
  padding: 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
  line-height: 30px;
}

.bs-content{
  max-width: 555px;
}
.color-white{
  color: #ffffff;
}
.newsletter {
  background: #1E2938;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}


.news-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.news-text {
  font-size: 1rem;
  color: #cfd6df;
  margin-bottom: 25px;
  line-height: 1.6;
}

.news-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-input {
  padding: 13px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  flex: 1;
  min-width: 300px;
  max-width: 390px;
  background: #364153;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.news-input::placeholder {
  color: #aaa;
}

.news-btn {
  background: #165DFB;
  color: #fff;
  border: none;
  padding: 10px 24px;
  height: 42px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.footer {
  background: #0f172a;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.fot-container {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}
.fot-info {
  margin-top: 200px;
}
.fot-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.fot-actions select option{
  color: #000;
}
.lan{
  position: relative;
  top: -15px;
}
.fot-columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.fot-title {
 font-size: 20px;
 font-weight: 700;
 margin-bottom: 20px;
}

.fot-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.fot-links li {
  margin-bottom: 18px;
}

.fot-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
.location{
  color: #ffffff;
}
.location strong {
  font-size: 16px;
  color: #ffffff;
}
.location span span {
  font-size: 14px;
  color: #fff;
}
.location a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.fot-actions {
  justify-content: right;
  margin-top: -100px;
  position: relative;
  top: -20px;
}
.location img {
  position: relative;
  top: 1px;
}
.location {
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.fot-btn {
  background: #165DFB;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-right: 10px;
}
footer .lang-btn {
  padding: 7px 10px 7px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  border: 1px solid #fff;
}
.lan span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.fot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.fot-legal a {
  margin-right: 40px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
}

.fot-legal a:hover {
  color: #fff;
}

.fot-legal span {
  font-size: 18px;
  color: #fff;
}

.fot-social a {
  margin-left: 10px;
  font-size: 1.2rem;
  color: #cfd6df;
  transition: color 0.3s ease;
}

.fot-social a:hover {
  color: #fff;
}
.fot-social img {
  width: 20px;
  height: 20px;
}
.hero {
    margin-top: 50px;
}
.hide-desk{
  display: none;
}
.lang-dropdown.show {
  display: block;
}

@media (max-width: 1239px) {
  .lv-main{
    gap: revert;
  }
  .lv-inner {
    width: 25%;
    flex-wrap: wrap;
    padding: 0 10px;
  }
  .lv-inner img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 1169px) {
  #nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #ddd;
  }
  #nav-links.active {
    display: flex;
    margin-top: 15px;
    width: auto;
    margin: 15px -14px 0;
    background: #ffffff;
  }
  #nav-links > li > ul {
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
  }
  .menu-toggle {
    position: absolute;
    z-index: 1;
    left: 230px;
    top: 20px;
    display: block;
  }
  nav .logo img {
    max-width: 200px;
}
  .container.header-menu-area {
    position: relative;
}
.hero .content {
    width: calc(100% - 320px);
}

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

@media (max-width: 992px) {
  .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-content {
    flex-direction: column;
    gap: 40px;
  }
  .dc-slider {
    width: 100%;
  }
  .accordian-rating {
    width: 100%;
  }
  .dc-card img{
    width: auto;
    border-radius: 0px;
    background: transparent;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .tab-nav{
    gap: 5px;
  }
  .tab-image-box img{
    width: auto;
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .hero-form {
    max-width: 100%;
  }
  .logo-main img {
    max-width: 90%;
}
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .content-area {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .accordion-image {
    margin-top: 20px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bs-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  
  .hero > .container {
    flex-direction: column;
    text-align: center;
  }
  .hero .content {
    width: 100%;
  }
  
  .tools-list {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .tools-list li {
    width: 45%;
  }
  .tab-overlay {
    position: static;
    margin-top: 15px;
    max-width: 100%;
    box-shadow: none;
  }
  .fot-bottom {
    flex-direction: column;
    text-align: center;
  }
  nav .logo img {
    max-width: 180px;
  }
  .menu-toggle{
    left: 195px;
  }
}
@media (max-width: 767px) {
  .fot-columns{
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
.fot-col {
    width: 50%;
}
.news-input{
  max-width: 100%;
  min-width: 100%;
}
.hide-desk{
  display: block;
}
.right-side > ul {
    display: none;
}
.hero h1{
  font-size: 30px;
    line-height: 40px;
}
.hero p{
  font-size: 18px;
}
.hero input{
  font-size: 16px;
      padding: 15px 20px 15px;
}
.hero .btn-group button{
  padding: 10px 20px;
  font-size: 15px;
}
.common-title{
  font-size: 30px;
  line-height: 45px;
}
.feature-box h3{
  font-size: 18px;
}
.feature-box p{
  font-size: 18px;
}
.box{
  text-align: center;
}
.box h3 br {
    display: none;
}
.desc{
  margin-bottom: 25px;
}
.common-title br {
    display: none;
}
.desc br {
    display: none;
}
.tab-nav{
  flex-direction: row;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        gap: 10px;
        flex-wrap: revert;
}
.tab-overlay{
  transform: none;
}
.lv-main {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 16px 0;
}
.lv-inner{
  width: 50%;
}
.growth-tools {
    padding: 40px 0;
}
    .tools-list li {
        width: calc(48% - 5px);
    }
.tools-list{
  gap: 20px 10px;
  justify-content: space-between;
}
h2.bs-title br {
    display: none;
}
.fot-actions{
  margin: 0;
  justify-content: center;
}
.footer{
  padding-left: 0;
  padding-right: 0;
}
.fot-legal a{
  margin-right: 10px;
  font-size: 16px;
}

}
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .boxes {
    grid-template-columns: 1fr;
  }

  .news-form {
    flex-direction: column;
  }
  .news-btn {
    width: 100%;
  }
  .language-switcher{
    display: none ;
  }
  footer .language-switcher{
    display: inline-block;
  }
  .logo-main{
        flex-direction: row;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        gap: 10px;
        flex-wrap: revert;
  }
      .logo-main img {
        max-width: max-content;
        height: auto;
    }
    .two-column{
      padding-left: 0;
      padding-right: 0;
    }
    .faq-question{
      font-size: 20px;
      line-height: 1.3;
    }
    .bs-title{
      font-size: 30px;
      line-height: 45px;
    }
    .bs-image-wrapper img {
    max-width: 100%;
    height: auto;
}
.lv-inner {
        width: 50%;
    }
.header-right-btn a{
      padding: 0 6px;
    font-size: 13px;
}
}
@media (max-width: 479px) {
  .header-right-btn a.c-sales-btn{
    display: none;
  }
  .menu-toggle{
    top: 21px;
  }
  .hero {
    margin-top: 20px;
}
.trust{font-size: 12px;}
.hero h1{font-size: 28px;}
.hero p{font-size: 16px;}
.btn-group{
  flex-wrap: wrap;
    gap: 10px;
}
.hero .btn-group button{
  width: 100%;
}
.logos{
  margin: 30px 0;
}
    .common-title {
        font-size: 24px;
        line-height: 40px;
    }
.features{padding: 30px 0;}
.feature-grid{margin-top: 30px;}
.feature-grid{
  flex-wrap: wrap;
}
.feature-box {
    width: 100%;
}
.services{
  padding: 30px 0;
}
.services .subtitle{font-size: 16px;margin-bottom: 30px}
.box h3{font-size: 20px;line-height: 26px;}
.boxes{gap: 20px;}
.btn-primary{padding: 10px 20px;font-size: 20px;}
.booked-store {
    padding: 30px 0;}
.content-area{margin-top: 30px;} 
.two-column{padding: 30px 0;}   
.cards{margin-top: 30px;}
.case-stats{max-width: 100%;}
.case-stats > div:first-child{width: 55%;}
.desc{font-size: 16px; margin: 10px 0 20px;}
.dc-accordion-header{padding: 20px; font-size: 20px;}
.dc-accordion-header::after{top: 34px;}
.main-testi{font-size: 20px;}
.tab-section{padding: 30px 0;}
.local-vocal{padding: 30px 0;}
.lv-inner {
        width: 100%;
    }
.growth-tools {
        padding: 30px 0;
    }
.tools-list li{padding: 20px 15px;}
.g-desc{min-height: 42px;}
.g-name span:first-child {
    min-height: 47px;
    display: block;
}
.faq-section{padding: 30px 0;}
.faq-section .common-title {
    margin-bottom: 30px;
}
.faq-question{padding: 20px;}
.faq-item{margin-bottom: 15px;}
.bs-section, .newsletter{padding: 30px 0;}
.bs-title{margin-top: 0; font-size: 26px;}
.bs-text{font-size: 16px;}
.bs-btn{    padding: 10px 15px;    font-size: 18px;}
.footer{padding: 10px 0 30px;}
.fot-col {
    width: 100%;
}
.fot-info {
    margin-top: 20px;
}
.dashboard-section{padding: 30px 0;}
.lv-inner img{width: 100%;}
}

@media (max-width: 413px) {
  .lv-inner {
        width: 100%;
    }
  .lv-inner img{width: 100%;}
}

@media (max-width: 370px) {
  nav .logo img {
      max-width: 130px;
  }
      .menu-toggle {
        left: 155px;
    }
}