 body {
     width: 100%;
     margin: 0;
     padding: 0;
     overflow-x: hidden;
     /* Prevent horizontal overflow */
 }

 /* Badge Styling */

  /* Custom badge styles */
  .badge-active {
      background-color: #ff8109;
      color: #1F2937;
      font-weight: 600;
  }

  .badge-inactive {
      background-color: #F3F4F6;
      color: #6B7280;
      font-weight: 500;
  }

  .badge-inactive:hover {
      background-color: #E5E7EB;
      color: #4B5563;
  }

  /* Hide scrollbar but allow scrolling */
  .no-scrollbar {
      -ms-overflow-style: none;
      scrollbar-width: none;
  }

  .no-scrollbar::-webkit-scrollbar {
      display: none;
  }

  .qr-code-container {
      position: fixed;
      bottom: 100px;
      right: 20px;
      width: 120px;
      text-align: center;
      /* background-color: white; */
      border-radius: 10px;
      box-shadow: 10px;
      padding: 5px;
  }

  .qr-code {
      width: 100%;
      height: auto;
      border-radius: 10px;
  }

  .qr-text {
      font-size: 12px;
      color: white;
      font-weight: bold;
  }

  /* Additional media queries for better responsiveness */
  @media (max-width: 480px) {
      .flex-wrap {
          flex-wrap: nowrap !important;
      }
     

  }

  @media (max-width: 640px) {
      .qr-code-container {
          display: none;
      }

      .carousel-wrapper {
          width: 100%;
      }
  }

 /* testinomial  */
 .primary {
     color: #ff8109;
 }

 .bg-primary {
     background-color: #ff8109;
 }

 .badge-active {
     background-color: #ff8109;
     color: white;
 }

 .badge-inactive {
     background-color: #E5E7EB;
     color: #374151;
 }

 .swiper-container {
     width: 100%;
     overflow: hidden;
     position: relative;
 }

 .testimonial-slider {
     display: flex;
     transition: transform 0.5s ease;
 }

 .testimonial-slide {
     min-width: 100%;
     box-sizing: border-box;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
 }

 .faq-active .faq-answer {
     max-height: 500px;
 }

 .faq-active .faq-icon {
     transform: rotate(180deg);
 }



   @media (min-width: 640px) {
       .carousel-wrapper {
        width: 80%;
       }
   }

 .nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     /* background-color: white; */
     padding: 12px;
     border-radius: 9999px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     /* z-index: 100; */
     cursor: pointer;
     transition: background-color 0.3s;
 }

 .nav-btn:hover {
     background-color: #f3f4f6;
     /* Equivalent to Tailwind's hover:bg-gray-100 */
 }

 .prev-btn {
     left: 80px
         /* Move it outside with spacing */
 }

 .next-btn {
     right: 80px;
     /* background-color: red; */
 }

 /* Optional: Adjust for small screens */
 @media (max-width: 768px) {
     .prev-btn {
         left: -20px;
         display: none !important;
     }

     .next-btn {
         right: -20px;
         display: none;
     }

     .nav-btn {
         top: auto;
         bottom: -40px;
         /* adjust as needed to appear just below card */
         left: 50%;
         transform: translateX(-50%);
     }
 }


/* Hero carousel */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Slide content */
.slide-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.content {
    width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .content {
        width: 50%;
        text-align: left;
    }
}

.slide-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    padding-top: 50px;
}

@media (min-width: 640px) {
    .slide-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .slide-title {
        font-size: 3rem;
    }
}

.slide-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

@media (min-width: 640px) {
    .slide-description {
        font-size: 1.125rem;
    }
    
}

@media (min-width: 768px) {
    .slide-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .slide-description {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Buttons */
.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .buttons {
        justify-content: flex-start;
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: white;
    color: #1e40af;
    /* blue-800 equivalent */
}

.btn-primary:hover {
    background-color: #f9fafb;
    /* gray-100 equivalent */
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: #1e40af;
    /* blue-800 equivalent */
}

/* Navigation dots */
.slide-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    height: 0.75rem;
    width: 0.75rem;
    background-color: rgba(156, 163, 175, 0.6);
    /* gray-400 with opacity */
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    width: 2rem;
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    display: none;
}

.nav-arrow:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-arrow.prev {
    left: 1rem;
}

.nav-arrow.next {
    right: 1rem;
}

.nav-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
}