body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #191644;
    scroll-behavior: smooth;
    background-color: #fafafa;
}

.dropdown {
    position: relative;
    display: inline-block;
}


p {
    color: #676767;
    line-height: 1.9;
}

span {
    color: #FE654F;
}

a {
    color: #FE654F;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 8px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-content a {
    color: #1e2a4a;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    border-radius: 8px;
    transform: translateX(5px);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    z-index: 50;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

header .group::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

header .group .absolute {
    top: calc(100% - 5px);
    padding-top: 5px;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

header .group:hover .absolute {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

header .group .absolute:hover {
    opacity: 1;
    pointer-events: auto;
}

header .group:not(:hover) .absolute {
    transition-delay: 0.1s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}


.btn-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

.btn-hover:hover:after {
    left: 100%;
}


.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.center-mode-slider {
    position: relative;
    width: 100%;
    padding: 0 10%;
}

.center-mode-slider .flex {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.center-mode-slider .flex-shrink-0 {
    scroll-snap-align: center;
    transition: all 0.4s ease;
    transform: scale(0.85);
}

.center-mode-slider .flex-shrink-0.active {
    transform: scale(1);
    z-index: 10;
}

.center-mode-slider .card-hover {
    transition: all 0.4s ease;
}

.center-mode-slider .flex-shrink-0.active .card-hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.slider-container {
    width: 100%;
    position: relative;
}

.slider-wrapper {
    display: flex;
    width: 400%;
    /* 100% * number of slides */
    transform: translateX(0);
}

.slide {
    width: 25%;
    /* 100% / number of slides */
    flex-shrink: 0;
    padding: 0 20px;
}

.category-btn.active,.tab-button.active {
    background-color: #CCF462;
    /* lime-green color */
    color: #0f172a;
    /* navy color */
}

.category-btn:not(.active) {
    background-color: white;
}
.feature-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.feature-slide.active {
    display: block;
    opacity: 1;
}


/* FAQ styles */
.faq-answer {
    display: none;
}

   /* CSS Animation for progress bars */
   @keyframes growWidth {
    from { width: 0%; }
    to { width: var(--target-width); }
}

/* Class to trigger animations */
.progress-section.animate .progress-bar {
    animation: growWidth 1.5s forwards ease-out;
}

/* Set different animation delays for each bar */
.progress-section.animate .progress-bar:nth-child(1) {
    animation-delay: 0s;
}
.progress-section.animate .progress-bar:nth-child(2) {
    animation-delay: 0.2s;
}
.progress-section.animate .progress-bar:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-slider {
    overflow-x: hidden;
    position: relative;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
}
@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 8px;
    font-size: 14px;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9ca3af;
}

/* Toggle styling */
.toggle-container {
    background-color: #FFFFFF;
    border-radius: 9999px;
    padding: 6px 16px;
    display: inline-flex;
    position: relative;
}

.toggle-button {
    border-radius: 9999px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.toggle-button.active {
    background-color: #c1f37b;
  font-weight: 600;
}

/* Save badge */
.save-badge {
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 9999px;
    background-color: #e8f7d4;
    color: #5a9c16;
    font-weight: 600;
    z-index: 20;
}

/* Get Started button */
.get-started-btn {
    background-color: #1f2937;
    color: white;
    border-radius: 9999px;
    padding: 8px 20px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.get-started-btn:hover {
    background-color: #111827;
}

/* Feature category icon */
.feature-icon {
    background-color: #ef4444;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
}
.select2-container--default .select2-selection--single,
.select2-container .select2-selection--multiple {
  font-size: 0.75rem; /* text-xs */
  display: block;
  width: 100%;
  border-radius: 9999px; /* rounded-full */
  border-width: 1px;
  padding: 0.75rem; /* p-3 */
  border-color: #d1d5db; /* border-gray (Tailwind's gray-300/400) */
  transition: all 0.3s ease-in-out;
  font-weight: 400; /* font-normal */
  line-height: 1.5; /* leading-normal */
  outline: 0;
}

.select2-container--default .select2-selection--single:focus,
.select2-container .select2-selection--multiple:focus {
  outline: none;
  border-color: #CCF462; /* focus:border-primary (e.g., Tailwind blue-500) */
  box-shadow: 0 0 0 1px #CCF462; /* optional for visual focus */
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
  min-height: 43px;
  right: 14px;
}

.select2-container .select2-selection--multiple {
  min-height: 43px;
  top: 7px;
}

.select2-container--classic .select2-selection--single,
.select2-container--classic .select2-selection--single .select2-selection__arrow,
.select2-container--classic .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 17px !important;
  padding-left: 6px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #191466 !important; /* text-secondary (e.g., Tailwind gray-500/600) */
}
.select2-dropdown {
  background-color: #ffffff !important; /* bg-white */
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1), 0px 4px 6px -2px rgba(0,0,0,0.05) !important; /* shadow-dropdown */
  border-radius: 1.5rem !important;; /* rounded-3xl */
  padding: 0.75rem 1rem !important;; /* py-3 px-4 */
  border: 0 solid #d1d5db !important;; /* border-0 + border-gray */
}

.select2-container--open .select2-dropdown--below {
  border-radius: 1.5rem; /* rounded-3xl */
  margin-top: 0.5rem; /* mt-2 */
}

.select2-container--open .select2-dropdown--above {
  border-radius: 1.5rem; /* rounded-3xl */
  margin-bottom: 0.5rem; /* mb-2 */
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 8px 8px 8px 36px;
  background: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9414 13.4585L17.0004 17.5M8 4.5C10.2091 4.5 12 6.29086 12 8.5M15 8.5C15 4.63401 11.866 1.5 8 1.5C4.13401 1.5 1 4.63401 1 8.5C1 12.366 4.13401 15.5 8 15.5C11.866 15.5 15 12.366 15 8.5Z' stroke='%23191644' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat left 10px center;
  background-size: 16px;
  height: 40px;
  border: 1px solid #CCF462;
  font-size: 0.75rem; /* text-xs */
  border-radius: 32px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  color: #9ca3af !important; /* placeholder:text-gray-300 */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  font-size: 0.75rem; /* text-xs */
  font-weight: 400; /* font-normal */
  color: #191466 !important; /* text-secondary */
  background-color: #e5e7eb !important; /* bg-gray-200 */
  border-radius: 2rem !important; /* rounded-4xl */
  margin-top: 0; /* mt-0 */
  border: 1px solid #e5e7eb; /* border-gray-200 */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: #fecaca; /* bg-red-200 */
  color: #191644 !important; /* text-red */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  background-color: #191644 !important; /* bg-red-400 */
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
  display: inline-block;
  width: 2.5rem !important; /* w-10 */
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-radius: 9999px; /* rounded-full */
  border-color: #CCF462; /* border-primary (Tailwind blue-500) */
}
.select2-container--default .select2-selection--single{
  border-radius: 9999px !important; /* rounded-full */
}

.select2-results__option--selectable {
  font-size: 0.875rem; /* text-sm */
}

.select2-results__option {
  padding-top: 0.5rem; /* py-2 */
  padding-bottom: 0.5rem;
  margin-top: 0.5rem; /* my-2 */
  margin-bottom: 0.5rem;
  font-size: 0.75rem; /* text-xs */
  border-radius: 0.75rem; /* rounded-xl */
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
  background-color: #ffffff !important; /* bg-white */
  color: #191466 !important; /* text-secondary */
}

.select2-container--default .select2-results__option--selected {
  font-weight: 600; /* font-semibold */
}

.select2-container--default .select2-selection__arrow {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1L5 5L1 1' stroke='%23191644' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5L5 1L1 5' stroke='%23191644' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

/* Remove the default arrow's inner <b> tag */
.select2-container--default .select2-selection__arrow b {
  display: none;
}
.select2-results  li {
  color: #6b7280 !important;
}

b, strong {
    font-weight: 700 !important;
  }