@font-face {
    font-family: "Michroma";
    src: url(../fonts/Michroma-Regular.ttf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Italic-VariableFont_wght.ttf);
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary-purple: #22004B;
    --secondary-purple: #9A47FF;
    --light-purple: #FAF6FF;
    --accent-pink: #f7004e;
    --highlight-green: #00DFA2;
}

::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: var(--light-purple);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}

::selection {
    background-color: var(--primary-purple);
    color: var(--bs-white);
    -webkit-text-fill-color: var(--primary-purple);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    background: var(--light-purple);
}

.loader-wrapper {
    z-index: 999999;
    display: flex;
}

.bg-opacity-5 {
    --bs-bg-opacity: 0.05;
}

.cursor-pointer {
    cursor: pointer;
}

.font-michroma {
    font-family: 'Michroma', sans-serif;
    line-height: 1.2;
}

.text-primary-purple {
    color: var(--primary-purple);
}

.text-secondary-purple {
    color: var(--secondary-purple);
}

.text-accent-pink {
    color: var(--accent-pink);
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.2;
    font-weight: 700;
    padding: 12px 24px;
    text-transform: uppercase;
    border-radius: 8px;
}

.primary-btn {
    background: var(--primary-purple);
    color: var(--bs-white);
    box-shadow: 0 1.25px 1.667px 0 rgba(255, 255, 255, 0.40) inset, 0 -2.5px 4.167px 0 rgba(103, 96, 181, 0.20) inset;
}

.primary-btn:hover {
    border: 1px solid var(--primary-purple);
    color: var(--primary-purple);
}

.primary-outline-btn {
    background: transparent;
    box-shadow: none;
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
}

.primary-outline-btn:hover {
    background: var(--primary-purple);
    box-shadow: 0 1.25px 1.667px 0 rgba(255, 255, 255, 0.40) inset, 0 -2.5px 4.167px 0 rgba(103, 96, 181, 0.20) inset;
    color: var(--bs-white);
}

.accent-btn {
    background: var(--accent-pink);
    color: var(--bs-white);
    box-shadow: 0 1.25px 1.667px 0 rgba(255, 255, 255, 0.40) inset, 0 -2.5px 4.167px 0 rgba(103, 96, 181, 0.20) inset;
}

.accent-btn:hover {
    background: transparent;
    box-shadow: none;
    color: var(--accent-pink);
    border: 1px solid var(--accent-pink);
}

.form-control,
.form-select {
    background-color: var(--light-purple);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 12px;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--secondary-purple);
    box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--secondary-purple) 25%, transparent);
}

.form-select option:hover {
    background: var(--secondary-purple);
}

.form-control::placeholder {
    opacity: 0.25;
    color: black;
}

.form-check-input:checked {
    background-color: var(--secondary-purple);
    border-color: var(--secondary-purple);
}

header {
    z-index: 999999;
    transition: transform 0.3s ease-in-out;
}

.header-hide {
    transform: translateY(-100%);
}

header .nav-link {
    display: flex;
    padding: 12px 20px !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.navbar-toggler-bars,
.navbar-toggler-bars::before,
.navbar-toggler-bars::after {
    width: 36px;
    display: block;
    background: var(--secondary-purple);
    height: 4px;
    margin: auto;
    position: relative;
    transform: rotate(45deg);
    transition: 0.1s;
    border-radius: 8px;
}

.navbar-toggler-bars::before,
.navbar-toggler-bars::after {
    content: "";
    position: absolute;
    left: 0;
    transform: rotate(0);
    top: -12px;
    opacity: 0;
}

.navbar-toggler-bars::after {
    top: auto;
    transform: rotate(-90deg);
    bottom: 0;
    opacity: 100;
    transition: 0.1s;
}

.navbar-toggler.collapsed .navbar-toggler-bars {
    transform: rotate(0);
    transition: 0.1s;
}

.navbar-toggler.collapsed .navbar-toggler-bars::before,
.navbar-toggler.collapsed .navbar-toggler-bars::after {
    opacity: 100%;
    transition: 0.1s;
}

.navbar-toggler.collapsed .navbar-toggler-bars::after {
    transform: rotate(00deg);
    bottom: -12px;
    transition: 0.1s;
}


.sw-mega-menu {
    box-shadow: 0 25px 26px 0 rgba(0, 0, 0, 0.10);
}

.sw-mega-menu .nav-link {
    display: flex;
    justify-content: space-between;
    color: #534C5B;
    border-radius: 12px;
    border: 1px solid #D2CCDB;
}

.sw-mega-menu .nav-link i {
    display: none;
    font-size: 20px;
}

.sw-mega-menu .nav-link.active i {
    display: block;
}

.sw-mega-menu .nav-link.active {
    background: #22004B;
    border-color: #22004B;
    color: #fff;
}

.mega-menu-card {
    background-color: var(--light-purple);
    border-radius: 16px;
    padding: 20px;
}

.mega-menu-card-title {
    font-family: 'Michroma', sans-serif;
    color: var(--accent-pink);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.mm-feature-card-grid {
    grid-template-columns: repeat(3, 1fr);
}

.mm-feature-card i {
    font-size: 24px;
    color: var(--primary-purple);
}

.mm-feature-card {
    text-decoration: none;
    color: var(--primary-purple);
}

.mm-feature-card:hover {
    background: var(--bs-white);
}

.right-cta {
    width: 224px;
}

.industry-card {
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 16px;
    text-decoration: none;
}

.industry-card:hover {
    background: white;
}

.industry-image {
    width: 104px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.industry-content h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-black);
    margin-bottom: 8px;
}

.industry-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.industry-column {
    background: var(--light-purple);
    border-radius: 16px;
    padding: 12px;
    display: grid;
    gap: 12px;
}

.resource-item {
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
}

.resource-item:hover {
    background: var(--bs-white);
}

.resource-column {
    background-color: var(--light-purple);
    border-radius: 16px;
    padding: 24px;
}

.header-arc,
.blog-arc {
    position: relative;
}

.header-arc::before,
.header-arc::after,
.blog-arc::before,
.blog-arc::after {
    content: "";
    height: 20px;
    width: 20px;
    background: url('../../assets/images/arc-square.svg') center center no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    right: -20px;
    top: 0;
    position: absolute;
}

.header-arc::after {
    right: auto;
    left: -20px;
    transform: rotateZ(90deg);
}

.blog-arc::before,
.blog-arc::after {
    background: url('../../assets/images/blog-arc-square.svg') center center no-repeat;
}

.blog-arc::after {
    left: 0;
    bottom: -20px;
    top: auto;
}

/* CTA Section */
.cta-section {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: inset 0px 1.25px 1.667px 0px rgba(255, 255, 255, 0.4),
        inset 0px -2.5px 4.167px 0px rgba(103, 96, 181, 0.2);
    border: 1px solid #e5e5ea;
    margin-bottom: 16px;
}

.cta-title {
    font-family: 'Michroma', sans-serif;
    color: var(--primary-purple);
    font-size: 32px;
    line-height: 1.2;
}

/* Footer Section */
.footer-main {
    background-color: var(--primary-purple);
    border-radius: 20px;
    padding: 32px;
    color: white;
    margin-bottom: 16px;
}

.footer-column-title {
    font-family: 'Michroma', sans-serif;
    color: #A598B6;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-top: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-purple);
}

.footer-border {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.vertical-divider {
    width: 1px;
    height: 263px;
    background: rgba(255, 255, 255, 0.25);
}

.horizontal-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 32px 0;
}

.contact-section p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.app-badge {
    width: 162px;
    height: 48px;
    display: block;
    margin-bottom: 12px;
}

.noise-bg {
    z-index: 0;
}

.noise-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-radial-gradient(circle at 0 0,
            rgba(0, 0, 0, 0.04) 0,
            rgba(0, 0, 0, 0.04) 1px,
            transparent 1px,
            transparent 2px);
    opacity: 0.6;
    pointer-events: none;
}

.hero-banner {
    background: var(--light-purple);
    border-radius: 0 0 20px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.10);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.20);
    overflow: hidden;
}

.title-label {
    color: var(--Black-Common-Black, #000);
    display: inline-block;
    padding: 8px 20px;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #F8F8F8;
    box-shadow: 0 1.25px 1.667px 0 rgba(255, 255, 255, 0.40) inset, 0 -2.5px 4.167px 0 rgba(103, 96, 181, 0.20) inset;
}

.hero-title,
.section-title {
    color: var(--primary-purple);
    font-family: Michroma;
    font-size: 56px;
    line-height: 1.2;
}

.hero-cards-wrapper {
    margin-top: 120px;
    margin-left: auto;
    height: 700px;
    width: 600px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20), 0 0 0 10px rgba(0, 0, 0, 0.10);
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    background: #fff;
}

.hero-cards-wrapper .swiper {
    width: 100%;
    height: 100%;
}

.hero-cards-swiper .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background: #fff;
}

.hero-cards-swiper .swiper-horizontal>.swiper-pagination-bullets,
.hero-cards-swiper .swiper-pagination-horizontal.swiper-pagination-bullets {
    backdrop-filter: blur(10px);
}

.bg-pattern-logo {
    filter: blur(40px);
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 15%;
    }

    100% {
        opacity: 0;
    }
}


.big-paragraph {
    color: var(--primary-purple);
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 400;
    line-height: 140%;
}

.inner-gap {
    padding: 100px 0;
}

.outer-gap {
    margin: 100px 0;
}

.marquee-swiper {
    width: 100%;
    overflow: hidden;
}

.marquee-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.marquee-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
}

.marquee-swiper .swiper-slide img {
    height: 36px;
    object-fit: contain;
    width: 120px;
}

.append-buttons {
    border-radius: 24px;
    position: sticky;
    top: 10px;
}

.append-buttons a {
    flex: 1;
    border-bottom: 2px solid transparent;
    color: #534C5B;
    padding: 10px;
}

/* Active / progress state */
.append-buttons a.active {
    color: var(--secondary-purple);
    border-color: var(--secondary-purple);
}

.moduler-tab .nav-pills .nav-link {
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1.25px 1.667px 0 rgba(255, 255, 255, 0.40) inset, 0 -2.5px 4.167px 0 rgba(103, 96, 181, 0.20) inset;
    color: #7C7289;
    font-weight: 500;
}

.moduler-tab .nav-pills .nav-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.moduler-tab .nav-pills .nav-link.active,
.moduler-tab .nav-pills .show>.nav-link {
    background: var(--primary-purple);
    color: #fff;
}

.moduler-tab .nav-pills .nav-link.active img,
.moduler-tab .nav-pills .show>.nav-link img {
    filter: contrast(0) brightness(2);
}

.hyper-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-pink);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    line-height: 150%;
    text-transform: uppercase;
}

/* Stats Card */
.stats-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #F1F2F9;
    box-shadow: 0px 2px 6px 0px rgba(25, 33, 61, 0.1);
    padding: 32px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.stats-card:hover {
    box-shadow: 0px 8px 20px 0px rgba(25, 33, 61, 0.15);
    transform: translateY(-2px);
}

.stats-card:last-child {
    margin-bottom: 0;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Text Content */
.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--secondary-purple);
    text-transform: capitalize;
    margin: 0;
    line-height: 1.2;
}

.stats-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #534C5B;
    margin: 0;
    line-height: 1.3;
}

/* Number Wrapper */
.number-wrapper {
    flex-shrink: 0;
}

.stats-number {
    font-family: 'Michroma', sans-serif;
    font-size: 48px;
    color: var(--accent-pink);
    margin: 0;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -1px;
}

.industry-bar {
    padding: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.industry-bar:hover {
    background: var(--secondary-purple);
    border-radius: 20px;
}

.industry-bar:hover h3 {
    color: #fff;
}

.industry-bar:hover p,
.industry-bar:hover a {
    opacity: 100%;
    visibility: visible;
}

.industry-bar:hover p {
    color: #fff !important;
}

.industry-bar h3 {
    color: #534C5B;
    font-family: Michroma;
    font-size: 32px;
    font-weight: 400;
}

.industry-bar p {
    opacity: 0;
    visibility: hidden;
}

.industry-bar a {
    height: 60px;
    width: 60px;
    color: var(--secondary-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}


.accordion-faqs .accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 0;
    border-left: 6px solid transparent;
    box-shadow: 0px 4px 8px 0px rgba(34, 48, 62, 0.1);
}

.accordion-faqs .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-faqs .accordion-item.active {
    border-color: var(--accent-pink);
    box-shadow: inset 0px 1.25px 1.667px 0px rgba(255, 255, 255, 0.4),
        inset 0px -2.5px 4.167px 0px rgba(103, 96, 181, 0.2);
}

.accordion-faqs .accordion-button {
    background: transparent;
    border: none;
    padding: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    box-shadow: none !important;
    border-radius: 12px;
    transition: color 0.3s ease;
}

.accordion-faqs .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary-purple);
}

.accordion-faqs .accordion-button::after {
    display: none;
}

.accordion-faqs .accordion-button:hover {
    background: transparent;
}

.accordion-faqs .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-faqs .chevron-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-faqs .chevron-icon i {
    font-size: 20px;
}

.accordion-faqs .accordion-button:not(.collapsed) .chevron-icon {
    transform: rotate(180deg);
}

.accordion-faqs .accordion-button.collapsed .chevron-icon {
    color: #6F6C8F;
}

.accordion-faqs .accordion-button:not(.collapsed) .chevron-icon {
    color: var(--primary-purple);
}

.accordion-faqs .accordion-body {
    padding: 0 24px 24px 68px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

.accordion-faqs .accordion-collapse {
    border-radius: 0 0 12px 12px;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 1.25px 1.667px 0px rgba(255, 255, 255, 0.4),
        inset 0px -2.5px 4.167px 0px rgba(103, 96, 181, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-image {
    width: 260px;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star-rating i {
    font-size: 24px;
    flex-shrink: 0;
    color: var(--highlight-green);
}

.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    color: black;
    flex: 1;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.quote-mark {
    width: 68px;
    opacity: 0.2;
}

.author-info {
    text-align: right;
}

.author-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-black);
    margin: 0;
    line-height: 1.2;
}

.author-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin: 4px 0 0 0;
    letter-spacing: 0.5px;
}

.testimonial-inner {
    display: flex;
    gap: 30px;
}

.testimonial-swiper .swiper-slide-next,
.testimonial-swiper .swiper-slide-prev {
    opacity: 25%;
}

.testimonial-swiper span.swiper-pagination-bullet {
    background: var(--accent-pink);
    opacity: 100%;
    height: 12px;
    width: 12px;
    margin: 0 10px !important;
}

.testimonial-swiper span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    outline: 1px solid var(--primary-purple);
    outline-offset: 4px;
}

.testimonial-swiper .swiper-pagination {
    position: relative;
    margin: 30px 0 0 0;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Image Container */
.blog-image-container {
    position: relative;
    width: 100%;
    height: 346px;
    background-color: #2d3e38;
    border-radius: 20px;
    border-top-left-radius: 0;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 20%;
    pointer-events: none;
}

/* Meta Badge */
.blog-meta-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--light-purple);
    padding: 0 12px 8px 0;
    border-bottom-right-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.blog-meta-badge p {
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-gray-600);
    margin: 0;
    white-space: nowrap;
    line-height: 1.4;
    text-transform: capitalize;
}

.meta-dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-purple);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Corner Decorations */
.corner-decoration-top {
    position: absolute;
    top: 0;
    right: auto;
    width: 20px;
    height: 20px;
    z-index: 1;
}

.corner-decoration-left {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 20px;
    height: 20px;
    z-index: 1;
    transform: rotate(90deg) scaleY(-1);
}

/* Title and Button Row */
.blog-title-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.blog-title {
    flex: 1;
    font-size: 20px;
    font-weight: 500;
    color: black;
    margin: 0;
    line-height: 1.4;
}

/* Arrow Button */
.blog-arrow-btn {
    width: 56px;
    height: 56px;
    background-color: var(--accent-pink);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.blog-arrow-btn:hover {
    background-color: #d6003f;
    transform: translateX(4px);
}

.blog-arrow-btn i {
    font-size: 32px;
    color: white;
    line-height: 1;
}

.int-filter {
    color: #A598B6;
    border-color: #A598B6 !important;
    padding: 12px 16px;
    font-weight: 500;
    border-left: 2px solid transparent;
    cursor: pointer;
}

.int-filter:hover {
    background: var(--light-purple);
}


.int-filter.active {
    color: var(--accent-pink);
    border-color: var(--accent-pink) !important;
    font-weight: 700;
}

.cta-integration {
    background: var(--secondary-purple);
}

.integration-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08),
        inset 0px 1.25px 1.667px 0px rgba(255, 255, 255, 0.4),
        inset 0px -2.5px 4.167px 0px rgba(103, 96, 181, 0.2);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-purple);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12),
        inset 0px 1.25px 1.667px 0px rgba(255, 255, 255, 0.4),
        inset 0px -2.5px 4.167px 0px rgba(103, 96, 181, 0.2);
}

.integration-page-logo {
    object-fit: contain;
    object-position: left;
    height: 32px;
    margin-bottom: 16px;
    width: 100%;
}

.integration-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-gray);
    margin: 0;
}

.advantages-card {
    border-radius: 20px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.04), 0 1.25px 1.667px 0 rgba(255, 255, 255, 0.40) inset, 0 -2.5px 4.167px 0 rgba(103, 96, 181, 0.20) inset;
    max-width: 1360px;
}

.advantages-card-image img {
    border-radius: 12px;
    object-fit: cover;
}

.advantages-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 100%;
}

.advantages-card-content h3 {
    color: var(--primary-purple);
    font-size: 36px;
}

.advantages-card-content ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.advantages-card-content ul li~li {
    margin-top: 12px;
}

.advantages-card-content ul li i {
    color: var(--secondary-purple);
}

.service-stats-card {
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #F1F2F9;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.04), 0 1.25px 1.667px 0 rgba(255, 255, 255, 0.40) inset, 0 -2.5px 4.167px 0 rgba(103, 96, 181, 0.20) inset;
}

.service-stats-card .stats-icon {
    border-radius: 6px;
    border: 1px solid #F1F2F9;
    background: #F9F8FF;
    padding: 8px;
    margin-bottom: 12px;
    display: inline-block;
    box-shadow: 0 1.25px 1.667px 0 rgba(255, 255, 255, 0.40) inset, 0 -2.5px 4.167px 0 rgba(103, 96, 181, 0.20) inset;
}

.service-stats-card .stats-icon i {
    color: var(--accent-pink);
    font-size: 24px;
}

.service-stats-card .stats-description {
    color: var(--bs-black);
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
}

.service-stats-card .stats-number {
    color: var(--accent-pink);
    font-family: Michroma;
    font-size: 48px;
}

.core-feature-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 8px 0px rgba(34, 48, 62, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.core-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 16px 0px rgba(34, 48, 62, 0.15);
}

.core-feature-card.gradient-1 {
    background: linear-gradient(157.607deg, rgba(154, 71, 255, 0.1) 27.722%, rgba(154, 71, 255, 0) 96.871%),
        linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}

.core-feature-card.gradient-2 {
    background: linear-gradient(154.425deg, rgba(154, 71, 255, 0.1) 27.722%, rgba(154, 71, 255, 0) 96.871%),
        linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}

.core-feature-card.gradient-3 {
    background: linear-gradient(163.176deg, rgba(154, 71, 255, 0) 11.263%, rgba(154, 71, 255, 0.1) 100%),
        linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}

.core-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: var(--primary-purple);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.core-feature-content {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: flex-end;
}

.core-feature-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    flex: 1;
}

.core-feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-feature-icon i {
    font-size: 40px;
    color: var(--accent-pink);
}

.benefits-feature-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.04),
        inset 0px 1.25px 1.667px 0px rgba(255, 255, 255, 0.4),
        inset 0px -2.5px 4.167px 0px rgba(103, 96, 181, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1),
        inset 0px 1.25px 1.667px 0px rgba(255, 255, 255, 0.4),
        inset 0px -2.5px 4.167px 0px rgba(103, 96, 181, 0.2);
}

.benefits-feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.benefits-feature-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--primary-purple);
    margin: 0;
}

.benefits-feature-divider {
    width: 80px;
    height: 2px;
    background-color: black;
    border-radius: 1px;
}

.benefits-feature-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-gray);
    margin: 0;
}

.accordion-key-features .accordion-button {
    font-size: 24px;
    color: var(--secoundary-purple);
    font-weight: 600;
}

.accordion-key-features .accordion-button::after {
    display: none;
}

.accordion-key-features .accordion-item {
    padding: 24px 0;
}

.Industries-key-features-graphics {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1.25px 1.667px 0 rgba(255, 255, 255, 0.40) inset, 0 -2.5px 4.167px 0 rgba(103, 96, 181, 0.20) inset;
}

.Industries-key-feature-img {
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
    visibility: hidden;
    aspect-ratio: 1/1;
}

.Industries-key-feature-img.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* highlight-Marquee Row */
.highlight-marquee-row {
    position: relative;
    width: 100%;
    height: 56px;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
}

/* highlight-Marquee Track */
.highlight-marquee-track {
    display: flex;
    gap: 12px;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
}

/* Animation - Left Direction */
.highlight-marquee-track.scroll-left {
    animation: scrollLeft 30s linear infinite;
}

/* Animation - Right Direction */
.highlight-marquee-track.scroll-right {
    animation: scrollRight 30s linear infinite;
    right: 0;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.highlight-marquee-row:hover .highlight-marquee-track {
    animation-play-state: paused;
}

/* highlight-Badge Styling */
.highlight-badge {
    padding: 20px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #22004b;
    line-height: 1;
}

.highlight-card-2::before,
.highlight-card-3::before,
.highlight-card-5::before,
.highlight-card-6::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 100%;
    left: 0;
    opacity: 25%;
    background: linear-gradient(180deg, transparent, black);
}

.highlight-card-5::before,
.highlight-card-6::before {
    background: linear-gradient(0deg, transparent, black);
}

.use-case-card {
    border-radius: 8px 8px 24px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(40px);
}

.why-us-cards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.why-us-card {
    width: 440px;
    height: 440px;
    border-radius: 20px;
    box-shadow: 12px 0px 24px 0px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 16px 10px 40px 0px rgba(0, 0, 0, 0.2);
    z-index: 10 !important;
}

/* Overlapping effect */
.why-us-card:not(:first-child) {
    margin-left: -60px;
    border-radius: 20px;
}

.why-us-card:first-child {
    border-radius: 20px;
    z-index: 4;
}

.why-us-card:nth-child(2) {
    z-index: 3;
}

.why-us-card:nth-child(3) {
    z-index: 2;
}

.why-us-card:nth-child(4) {
    z-index: 1;
}

/* Card colors */
.why-us-card.card-purple {
    background: #9a47ff;
    color: white;
}

.why-us-card.card-light-purple {
    background: #bd95ff;
    color: white;
}

.why-us-card.card-lightest-purple {
    background: #e9daff;
    color: #22004b;
}

.why-us-card.card-white {
    background: white;
    color: #22004b;
}

/* Card Image Section */
.why-us-card .card-image {
    height: 140px;
    position: relative;
}

.why-us-card .card-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    left: 0;
    bottom: 50%;
}

/* Icon Container */
.why-us-card .icon-container {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 96px;
    height: 96px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-card .icon-purple {
    background: #9a47ff;
}

.why-us-card .icon-light-purple {
    background: #bd95ff;
}

.why-us-card .icon-lightest-purple {
    background: #e9daff;
}

.why-us-card .icon-white {
    background: white;
}

.why-us-card .icon-container svg {
    width: 60px;
    height: 60px;
}

/* Card Content */
.why-us-card .card-content {
    padding: 40px;
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: calc(100% - 140px);
}

.why-us-card .card-content.offset {
    padding-left: 80px;
}

.why-us-card .card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.why-us-card .card-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.75;
    margin: 0;
    flex: 1;
}

.integrations-cta {
    border-radius: 40px;
    border: 2px solid rgba(154, 71, 255, 0.20);
    background: #F5EDFF;
    padding: 20px;
    box-shadow: 0 21.455px 51.491px 0 rgba(146, 144, 144, 0.25);
}

.vertical-marquee-swiper {
    height: 470px;
    padding: 20px;
    flex-shrink: 0;
    border-radius: 20px;
}

.vertical-marquee-swiper .swiper-slide {
    height: auto;
    width: 560px;
}

.module-integration-logo {
    object-fit: contain;
    object-position: left;
    height: auto;
    width: 160px;
}