.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    border: 0;
}

.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 120px;
    margin-top: 120px;
    margin-bottom: 70px;
}

.scroll-container:hover .scroll-content {
    animation-play-state: paused;
}

.scroll-content {
    display: flex;
    animation: scroll 40s linear infinite;
}

.scroll-content .item {
    display: flex;
    display: inline-flex;
    gap: 20px;
    text-align: center;
    align-items: center;
    min-width: 200px;
    margin-right: 50px;
    position: relative;
    padding-right: 30px;
}

.scroll-content .item p {
    margin-bottom: 0px !important;
    font-family: Asap;
    font-weight: 400;
    font-size: 14px;
    color: #565656;
}

.scroll-content .item h3 {
    font-family: Asap;
    font-weight: 700;
    font-size: 30px;
    color: #565656;
}

.scroll-content .item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #565656;
    opacity: 36%;
}

.error-input {
    border-color: red !important;
    box-shadow: 0 0 2px red !important;
}

label.error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.hero-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.animated-text {
    opacity: 0;
    transform: translateX(-50px);
}

.fade-in {
    animation: slideInLeft 1s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-out {
    animation: slideOutLeft 1s forwards;
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.animated-image {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.image-wrapper::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    border-radius: 50%;
    z-index: 1;
}

.image-fade-in {
    animation: imageSlideInTop 1s forwards;
}

@keyframes imageSlideInTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-slide-out {
    animation: imageSlideOutTop 1s forwards;
}

@keyframes imageSlideOutTop {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-40px);
    }
}

.controls {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.ani-btn {
    background: #2196f3;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 50%;
    padding: 1px;
}

.ani-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
}

.dots-container {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #C9C9C9;
}

.yt-iframe-home {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.yt-iframe-home iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.hero-background {
    background-image: url('/assets/images/home-page/hero-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-section {
    padding-top: 60px;
    padding-bottom: 150px;
    position: relative;
}

.hero-section h1 {
    font-family: Asap;
    font-weight: 600;
    font-size: 32px;
    color: white;
}

.hero-section h3 {
    font-family: Asap;
    font-weight: 400;
    font-size: 24px;
    color: white;
}

.hero-section .hero-image {
    max-width: 110%;
}

.hero-section .demo-form-section {
    position: absolute;
    top: 35%;
}

.hero-section .demo-form {
    background-color: white;
    padding: 30px 50px;
    border-radius: 28px;
    border: 1px solid #0069AB;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.hero-section .demo-form .form-heading {
    font-family: Asap;
    font-weight: 700;
    font-size: 26px;
    color: #0069AB;
    margin-bottom: 20px;
}

.hero-section .demo-form .get-demo-home-btn {
    background-color: #F96831 !important;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    font-family: asap;
}

.hero-section .demo-form .get-demo-home-btn:hover {
    color: #F96831 !important;
    background-color: white !important;
    border: 1px solid #F96831 !important;
}

.hero-section .field-names {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-section .field-names h6 {
    margin-bottom: 0px !important;
    color: #888888;
}

.demo-form .input-wrapper {
    position: relative;
}

.demo-form .col-6 {
    margin-bottom: 20px;
}

.demo-form .form-inputs {
    width: 100%;
    padding: 13px 15px;
    margin-top: 15px;
    border: 2px solid #E7E7E7;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.demo-form .placeholder-text {
    position: absolute;
    left: 15px;
    top: 60%;
    transform: translateY(-50%);
    color: #919191;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.demo-form input:focus~.placeholder-text {
    top: 8px;
    left: 10px;
    font-size: 12px;
}

.demo-form input:not(:placeholder-shown)~.placeholder-text {
    display: none;
}

.scroll-background {
    align-items: center;
    display: flex;
    background-image: url('/assets/images/home-page/scroll-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.specialities-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url('/assets/images/home-page/specialties-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.specialities-section .headers-box {
    text-align: center;
}

.specialities-row {
    align-items: center;
}

.specialities-section .headers-box h3 {
    font-family: Asap;
    font-weight: 500;
    font-size: 30px;
    color: white;
}

.specialities-section .headers-box h5 {
    font-family: Asap;
    font-weight: 500;
    font-size: 20px;
    color: white;
}

.specialities-section .headers-box span {
    font-family: Asap;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
}

.specialty-box {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: white;
    border: 0.87px solid #D5D5D5;
    border-radius: 11.45px;
    margin-top: 10px;
    width: 100%;
    padding-left: 10px;
}

.specialty-box img {
    max-width: 22%;
}

.specialty-box h6 {
    margin-bottom: 0px;
    font-family: Asap;
    font-weight: 400;
    font-size: 14px;
    color: #686868;
}

.product-suite-background {
    background-image: url('/assets/images/home-page/product-suite-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.product-suite-section h2 {
    font-family: Asap;
    font-weight: 700;
    font-size: 36px;
    color: #565656;
    padding-top: 100px;
    margin-bottom: 20px;
}

.product-suite-section h5 {
    font-family: Asap;
    font-weight: 400;
    font-size: 28px;
    color: #686868;
    margin-bottom: 40px;
}

.product-suite-section .product-card {
    padding: 18px 8px 18px 8px;
    border: 1px solid #C6C6C6;
    border-radius: 12px;
    font-family: Asap;
    font-weight: 400;
    font-size: 22px;
    color: #565656;
    transition: background-color 0.3s ease, color 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    line-height: 100%;
}

.product-suite-section .product-card.active {
    background-color: #2B99FF;
    color: white;
    cursor: pointer;
}

.product-suite-section .container {
    width: 80%;
    margin-top: 50px;
    padding-bottom: 120px;
}

.product-suite-section .product-info {
    padding: 30px;
    background-color: #FF7B48;
    border-radius: 12px;
}

.product-suite-section .product-info p {
    font-family: Asap;
    font-weight: 400;
    font-size: 22px;
    color: white;
    text-align: left;
}

.view-more-btn {
    background-color: white;
    font-size: 14px;
    font-weight: 500;
    width: 70%;
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.workflow-background {
    background-image: url('/assets/images/home-page/workflow-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.workflow-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.workflow-background>* {
    position: relative;
    z-index: 1;
}

.workflow-background>* {
    position: relative;
    z-index: 2;
}

.workflow-section {
    margin-top: 50px;
}

.workflow-section .heading {
    background-color: white;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 40px;
}

.workflow-section .heading h2 {
    font-family: Asap;
    font-weight: 700;
    font-size: 35px;
    padding: 10px 20px 10px 20px;
    margin-bottom: 0px;
}

.workflow-swiper-pagination {
    text-align: center;
    margin-top: 30px;
}

.feature-card {
    background-color: white;
    opacity: 40%;
    border-radius: 24px;
    padding-top: 30px;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.feature-card.active {
    opacity: 100%;
}

.feature-card p {
    font-family: Asap;
    font-weight: 300;
    font-size: 14px;
    padding: 20px;
}

.feature-card .feature-heading-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-left: 10px;
}

.feature-card .feature-heading {
    display: flex;
    align-items: center;
    display: inline-flex;
    justify-content: flex-end;
    gap: 20px;
    background: #56CCF2;
    padding: 10px;
    border-radius: 40px 0px 0px 40px;
}

.feature-card .feature-heading h6 {
    font-family: Open Sans;
    font-weight: 700;
    font-size: 22px;
    color: white;
    margin-bottom: 0px !important;
}

.workflow-section {
    margin-bottom: 70px;
}

.workflow-desc-box {
    display: flex;
    justify-content: end;
}

.workflow-section .description-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: #2B99FF;
    padding: 15px;
    border-radius: 24px;
    margin-bottom: 20px;
}

.workflow-section .description-card h6 {
    font-family: Asap;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.workflow-section .description-card p {
    font-family: Asap;
    font-weight: 400;
    font-size: 14px;
    color: white;
    margin-bottom: 0px !important;
}

.workflow-section .description-card img {
    width: 100px;
}

.blue-background {
    background: #2196f3;
    position: relative;
}

.department-background {
    background-image: url('/assets/images/home-page/department-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.department-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.department-section h2 {
    font-family: Asap;
    font-weight: 700;
    font-size: 38px;
}

.department-section .insights-box {
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
}

.department-section .list-group-item {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
}

.department-section .list-group-item:last-child {
    border-bottom: none;
}

.department-section .list-group-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.department-section .label {
    font-family: Asap;
    font-weight: 500;
    font-size: 30px;
}

.corner-box {
    position: relative;
    padding: 30px 10px 30px 30px;
    color: white;
    max-width: 90%;
}

.corner-box p {
    font-family: Asap;
    font-weight: lighter;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 0px;
}

.corner-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-top: 6px solid white;
    border-left: 6px solid white;
    border-top-left-radius: 19px;
}

.corner-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-bottom: 6px solid white;
    border-right: 6px solid white;
    border-bottom-right-radius: 19px;
}

.inline-icon-text .icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.inline-icon-text.open .icon {
    transform: rotate(45deg);
}

.inline-icon-text {
    position: relative;
}

.inline-icon-text .content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease, transform 0.3s ease;
    color: #313131;
    font-size: 14px;
    font-weight: 500;
    font-family: asap;
    margin-left: 15%;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.inline-icon-text .content p {
    margin: 15px;
}

.inline-icon-text .content.show {
    opacity: 1;
    transform: translateY(0);
    border-color: #ddd;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.workflow-carousel-swiper {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.gray-background {
    background-color: #ECECEC;
}

.features-section .features-heading {
    max-width: 85%;
    padding-top: 80px;
}

.features-section .features-heading h3 {
    text-align: center;
    font-family: Asap;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: #222222;
}

.features-section .cta-btn {
    background-color: #2B99FF;
    border-radius: 8px;
    color: white;
    font-size: 20px;
    font-weight: 500;
    font-family: asap;
    line-height: 100%;
    padding: 10px;
}

.features-section .cta-btn:hover {
    background-color: white;
    color: #2B99FF;
    border: 1px solid #2B99FF;
}

.features-box {
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.features-box img {
    max-width: 45%;
    object-fit: contain;
    padding-bottom: 10px;
}

.features-box p {
    font-family: Asap;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}

.features-section h4 {
    font-family: Asap;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    margin-top: 30px;
    color: #313131;
}

.features-section .cta-section {
    padding-top: 50px;
    padding-bottom: 80px;
}

.features-section .cta-section .container {
    max-width: 80%;
}

.features-section .cta-section .cta-box {
    border-radius: 12px;
    background-color: #F6F6F6;
    padding: 20px 30px;
}

.features-section .cta-section .cta-box p {
    font-family: Asap;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    margin-right: 5px;
    line-height: 110%;
}

#testimonials_section {
    margin-top: 100px;
    margin-bottom: 40px;
}

#testimonials_section>h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 100%;
    color: #565656;
    text-align: center;
    margin-bottom: 20px;
}

#testimonials_section>p {
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    color: #686868;
    text-align: center;
}

.slide_card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background-color: #F5F5F5;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 20px 20px;
}

.slide_card>img {
    width: 50px;
}

.slide_card>p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1b1b1b;
    text-align: center;
    margin-top: 30px;
}

.swiper_card_part>h6 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #1b1b1b;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 0px;
}

.swiper_card_part {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: auto !important;
}

.swiper {
    height: 100%;
    margin-top: 60px;
}

.swiper-slide {
    height: auto !important;
}

.testimonials-swiper-pagination {
    text-align: center !important;
    margin-top: 40px;
    margin-bottom: 40px;
}

.swiper-pagination-bullet {
    background-color: #F1F1F1 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: #D9D9D9 !important;
    width: 10px !important;
    height: 10px !important;
}

.nav-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 3px;
    display: flex;
    gap: 10px;
    z-index: 10;
    top: 90%;
}

.testimonials-swiper-button-prev,
.testimonials-swiper-button-next {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    color: #5D5D5D !important;
}

.testimonials-swiper-button-prev::after,
.testimonials-swiper-button-next::after {
    font-size: 16px !important;
}

.resource-blog-section {
    padding-top: 50px;
    padding-bottom: 80px;
}

.resources-header {
    max-width: 70%;
}

.resources-header h4 {
    font-family: Asap;
    font-weight: 700;
    font-size: 34px;
    color: #565656;
}

.resources-header p {
    font-family: Asap;
    font-weight: 400;
    font-size: 28px;
    color: #686868;
    padding-bottom: 20px;
}

.blogs-section {
    background-color: white;
    border-radius: 24px;
    padding: 20px;
}

.blogs-section>p {
    font-family: Asap;
    font-weight: 400;
    font-size: 22px;
    padding-bottom: 5px;
    color: #2F2F2F;
}

.blog-box {
    border-radius: 8px;
    background-color: #F2F2F2;
    margin-bottom: 15px;
    padding: 15px 20px 15px 10px;
}

.blog-box .blog-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-box .blog-read {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-box h5 {
    font-family: Asap;
    font-weight: 500;
    font-size: 14px;
    color: #1B1B1B;
}

.blog-link {
    font-size: 12px;
}

.blog-date {
    font-size: 12px;
}

.all-blogs-button {
    background-color: #ff6a32;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    border: 2px solid #ff6a32;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}

.all-blogs-button:hover {
    background-color: #fff;
    color: #ff6a32;
}

.all-blogs-button:hover img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(54%) saturate(5305%) hue-rotate(342deg) brightness(101%) contrast(102%);
}

.resources-section {
    background-color: white;
    border-radius: 24px;
    padding: 20px 20px 0px 20px;
}

.resources-section .resources-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resources-section .resources-top .view-more-resources-btn {
    font-family: Asap;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    background-color: #FF6935;
    color: white;
    margin-bottom: 10px;
}

.resources-section .resources-top .view-more-resources-btn:hover {
    color: #FF6935;
    background-color: white;
    border: 1px solid #FF6935;
}

.resources-section .resources-top p {
    font-family: Asap;
    font-weight: 400;
    font-size: 22px;
    color: #2F2F2F;
}

.resources-section .resources-box {
    background-color: #F3F3F3;
    padding: 20px 20px 10px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.resources-box h6 {
    font-family: Asap;
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
}

.resources-box .download-button {
    max-width: 80%;
}

.more-specialty-section {
    padding-top: 100px;
}

.more-specialty-section h3 {
    font-family: Asap;
    font-weight: 700;
    font-size: 34px;
    text-align: center;
    color: #565656;
    margin-bottom: 20px;
}

.more-specialty-section h4 {
    font-family: Asap;
    font-weight: 400;
    font-size: 28px;
    text-align: center;
    color: #686868;
    margin-bottom: 40px;
}

.more-specialty-section .specialities-box {
    margin-top: 40px;
    margin-bottom: 70px;
}

.more-specialty-section .more-line {
    background: linear-gradient(90deg, #FFFFFF 0%, #D0D0D0 50.48%, #FFFFFF 100%);
    height: 4px;
}

.more-specialty-section .more-box {
    border: 1px solid #615E5E;
    margin-top: 20px;
    padding: 5px 0px 5px 10px;
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.more-specialty-section .more-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.more-specialty-section .more-header p {
    margin-bottom: 0px !important;
    font-family: Asap;
    font-weight: 400;
    font-size: 16px;
    color: #686868;
    line-height: 110%;
}

.more-specialty-section .more-header img {
    max-width: 30px;
}

.faq-header {
    margin-top: 100px;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h3 {
    font-family: Asap;
    font-weight: 700;
    font-size: 50px;
    color: #000000;
}

.faq-section .faq-row {
    margin-top: 50px;
}

.faq-section .faq-left h5 {
    font-family: Asap;
    font-weight: 600;
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
}

.faq-section .faq-left p {
    font-family: Asap;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #656565;
    margin-bottom: 6px;
}

.faq-section .faq-left .chat-button {
    background-color: #2B99FF;
    color: white;
    border-radius: 6px;
    width: 120px;
    font-family: Asap;
    font-size: 18px;
    font-weight: 600;
}

.faq-section .faq-left .chat-button:hover {
    color: #2B99FF;
    background-color: white;
    border: 1px solid #2B99FF;
}

.faq-section .faq-right .faq-search-box h6 {
    font-family: Asap;
    font-weight: 400;
    font-size: 24px;
    color: #B4B4B4;
    margin-bottom: 0 !important;
}

.faq-search-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px dotted #B4B4B4;
    padding-bottom: 10px;
}

.faq-search-box .icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.faq-search-box .line {
    border-top: 1px dotted #B4B4B4;
}

.faq-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    display: flex;
    position: relative;
    z-index: 1;
}

.faq-box .down-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.faq-box h6 {
    font-family: Asap;
    font-weight: 400;
    font-size: 20px;
    color: #010101;
}

.faqs .line {
    height: 0.5px;
    background-color: #B4B4B4;
}

.faq-item {
    position: relative;
    margin-bottom: 10px;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: #F4F4F4;
    padding: 0 12px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    font-size: 16px;
    padding-left: 10%;
    margin-bottom: 10px;
}

.faq-item.active .faq-box {
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 6px -5px rgba(0, 0, 0, 0.2);
    background: #F4F4F4;
}

.faq-item.active .down-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    opacity: 1;
    max-height: 1000px;
}

.faqs .line {
    margin-top: 15px;
}

@media (max-width: 767px) {
    .hero-background {
        background-image: url('/assets/images/home-page/hero-mob-bg.png');
        /* padding-top: 60px; */
    }
    .hero-section {
        padding-top: 40px;
        padding-bottom: 150px;
        position: relative;
    }
    .hero-section .hero-text-div {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    .hero-section .hero-text-div h1 {
        font-family: Asap;
        font-weight: 600;
        font-size: 20px;
    }
    .hero-section .hero-text-div h3 {
        font-family: Asap;
        font-weight: 400;
        font-size: 16px;
    }
    .hero-h3-heading {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-section .hero-image-div {
        display: flex;
        justify-content: center;
    }
    .hero-section .hero-image {
        max-width: 70%;
    }
    .hero-text,
    .animated-image {
        margin-bottom: 20px;
    }
    .dots-container {
        right: 2% !important;
    }
    .dot {
        height: 8px !important;
        width: 8px !important;
    }
    .controls {
        right: 10px !important;
        bottom: 55px !important;
        gap: 5px;
    }
    .scroll-container {
        margin-top: 80px !important;
        margin-bottom: 60px !important;
    }
    .inline-icon-text .content {
        margin-left: 5%;
        width: 90%;
        margin-top: 5px;
    }
    .specialities-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .yt-iframe-home {
        margin-bottom: 30px;
    }
    .specialities-section .headers-box img {
        max-width: 40%;
        margin-bottom: 10px;
    }
    .specialities-section .headers-box h3 {
        font-size: 20px;
    }
    .specialities-section .headers-box h5 {
        font-size: 14px;
    }
    .specialities-section .headers-box span {
        font-size: 14px;
    }
    .product-suite-section .container {
        width: 100% !important;
        padding-bottom: 80px;
    }
    .product-suite-section .product-info {
        padding: 15px;
    }
    .product-suite-section .product-info p {
        font-size: 16px;
    }
    .view-more-btn {
        width: 100%;
        border-radius: 6px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .product-suite-section h2 {
        padding-top: 50px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    .product-suite-section h5 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .product-suite-section .product-card {
        font-size: 14px;
        margin-top: 10px;
    }
    .workflow-mobile-section {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .wf-mob-heading {
        background-color: white;
        text-align: center;
        margin-top: -100px;
        padding: 10px 5px 10px 5px;
        margin: -62% auto 48% auto;
        position: relative;
        width: 85%;
        border-radius: 5px;
    }
    .wf-mob-heading h3 {
        font-family: Asap;
        font-weight: 700;
        font-size: 16px;
        text-align: center;
        margin-bottom: 0px !important;
    }
    .testimonials-carousel {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .wf-mob-box {
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #00000040;
        border-radius: 24px;
        background-color: #FFFFFF;
    }
    .wf-mob-header {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .wf-mob-header img {
        max-width: 10%;
    }
    .wf-mob-header h6 {
        margin-bottom: 0px;
        font-family: Open Sans;
        font-weight: 700;
        font-size: 20px;
    }
    .wf-mob-box>p {
        margin-top: 10px;
        font-family: Asap;
        font-weight: 300;
        font-size: 13px;
    }
    .wf-mob-details .detail-box {
        padding: 5px 10px 5px 10px;
        background-color: #EEEEEE;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    .wf-mob-details .detail-box .detail-header {
        display: flex;
        gap: 5px;
        align-items: center;
    }
    .wf-mob-details .detail-box .detail-header img {
        max-width: 8%;
    }
    .wf-mob-details .detail-box .detail-header h6 {
        margin-bottom: 0px;
        font-weight: 600;
        font-size: 14px;
    }
    .wf-mob-details .detail-box p {
        margin-top: 3px;
        font-weight: 400;
        font-size: 12px;
        color: #1B1B1B;
        margin-bottom: 0px;
    }
    .workflow-mobile-section .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        margin-bottom: 20px;
    }
    .department-section {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .dept-section-details {
        width: 95%;
        margin-top: 30px;
    }
    .department-section h2 {
        font-family: Asap;
        font-weight: 700;
        font-size: 20px;
    }
    .department-section .label {
        font-size: 16px;
    }
    .insights-box img {
        max-width: 8% !important;
    }
    .inline-icon-text {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .inline-icon-text .content p {
        margin: 10px;
        font-size: 12px;
    }
    .corner-box {
        padding: 15px;
        width: 80%;
    }
    .corner-box p {
        font-family: Asap;
        font-weight: 300;
        font-size: 16px;
        margin-bottom: 0px;
    }
    .corner-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 30px;
        border-top: 4px solid white;
        border-left: 4px solid white;
        border-top-left-radius: 9px;
    }
    .corner-box::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 30px;
        height: 30px;
        border-bottom: 4px solid white;
        border-right: 4px solid white;
        border-bottom-right-radius: 9px;
    }
    .swiper-slide {
        justify-content: center !important;
    }
    .features-section .features-heading h3 {
        font-family: Asap;
        font-weight: 700;
        font-size: 20px;
        text-align: center;
        line-height: 100%;
    }
    .features-section h4 {
        font-family: Asap;
        font-weight: 400;
        font-size: 20px;
        line-height: 110%;
        text-align: center;
        padding: 0px 30px;
        margin-top: 20px;
    }
    .features-section .cta-section {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .features-section .cta-section .cta-box p {
        font-family: Asap;
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
    }
    .features-section .cta-btn {
        font-family: Asap;
        font-weight: 500;
        font-size: 14.56px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
    }
    .features-section .cta-section .container {
        max-width: 100%;
    }
    .features-carousel-swiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
        margin-bottom: 20px !important;
    }
    .features-box {
        border-radius: 12px;
        padding: 20px 40px 20px 40px;
        box-shadow: 0px 4px 4px 0px #00000040;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .features-box img {
        padding-bottom: 20px;
    }
    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        top: 75%;
    }
    .swiper-pagination-bullet {
        background-color: gray;
    }
    .swiper-pagination-bullet-active {
        background-color: #309af4;
    }
    #testimonials_section {
        margin-top: 50px;
        margin-bottom: 20px;
    }
    #testimonials_section>h2 {
        font-family: Asap;
        font-weight: 700;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
    }
    #testimonials_section>p {
        font-family: Asap;
        font-weight: 400;
        font-size: 14px;
        letter-spacing: 0%;
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 0px !important;
    }
    #testimonials_section .swiper-wrapper {
        margin-bottom: 30px;
    }
    .more-specialty-section .more-header p {
        font-size: 14px;
    }
    .resources-header {
        max-width: 90%;
    }
    .resources-header h4 {
        font-family: Asap;
        font-weight: 700;
        font-size: 20px;
    }
    .resources-header p {
        font-family: Asap;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
    }
    .blog-box h5 {
        font-size: 12px;
    }
    .blog-box {
        padding: 10px;
    }
    .resources-section {
        margin-top: 20px;
    }
    .resources-box {
        width: 100%;
    }
    .more-specialty-section {
        padding-top: 50px;
    }
    .more-specialty-section h3 {
        font-size: 20px;
    }
    .more-specialty-section h4 {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .more-specialty-section .specialities-box {
        margin-top: 20px;
    }
    .more-specialty-section .more-box {
        padding: 5px 0px 5px 5px;
    }
    .more-specialty-section .more-header {
        gap: 8px;
    }
    .faq-header {
        display: flex;
        gap: 10px;
        margin-top: 50px;
        align-items: end;
    }
    .faq-section h3 {
        font-family: Asap;
        font-weight: 700;
        font-size: 20px;
        color: #000000;
        margin-bottom: 0px in !important;
    }
    .faq-section .faq-right .faq-search-box h6 {
        font-family: Asap;
        font-weight: 400;
        font-size: 16px;
        text-align: center;
    }
    .faq-section .faq-row {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .faq-right {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .faq-search-box {
        gap: 10px;
        display: flex;
        margin-bottom: 10px;
    }
    .faq-search-box .icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }
    .faq-box h6 {
        font-size: 16px;
    }
    .faq-box .down-icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }
    .faq-box {
        gap: 10px;
        margin-top: 5px;
        padding-top: 5px;
        padding-left: 10px;
    }
    .faqs .line {
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .faq-answer {
        padding-left: 13%;
        padding-bottom: 5px !important;
    }
    .faq-answer p {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    label.error {
        font-size: 8px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section .demo-form {
        padding: 20px;
    }
    .hero-section h1 {
        font-size: 26px;
    }
    .hero-section h3 {
        font-size: 22px;
    }
    .hero-section .demo-form-section {
        top: 38%;
    }
    .demo-form .placeholder-text {
        font-size: 14px;
    }
    .demo-form .input-wrapper {
        margin-bottom: 0px;
    }
    .scroll-container {
        margin-top: 135px !important;
    }
    .workflow-mobile-section.container {
        max-width: 100%;
        padding-bottom: 50px;
    }
    .specialities-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .yt-iframe-home {
        margin-bottom: 10px;
        text-align: center;
    }
    .specialities-section .headers-box img {
        max-width: 50%;
        margin-bottom: 10px;
    }
    .specialities-section .headers-box h3 {
        font-size: 24px;
    }
    .specialities-section .headers-box h5 {
        font-size: 20px;
    }
    .specialities-section .headers-box span {
        font-size: 20px;
    }
    .workflow-mobile-section {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .workflow-mobile-section>img {
        width: 100% !important;
    }
    .wf-mob-heading {
        background-color: white;
        text-align: center;
        margin-top: -100px;
        padding: 10px;
        margin: -62% auto 48% auto;
        position: relative;
        width: 80%;
        border-radius: 5px;
    }
    .wf-mob-heading h3 {
        font-family: Asap;
        font-weight: 800;
        font-size: 20px;
        text-align: center;
        margin-bottom: 0px !important;
    }
    .testimonials-carousel-swiper {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 90%;
    }
    .wf-mob-box {
        padding: 20px;
        box-shadow: 0px 4px 4px 0px #00000040;
        border-radius: 24px;
        background-color: #FFFFFF;
    }
    .wf-mob-header {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .wf-mob-header img {
        max-width: 13%;
    }
    .wf-mob-header h6 {
        margin-bottom: 0px;
        font-family: Open Sans;
        font-weight: 700;
        font-size: 24px;
    }
    .wf-mob-box>p {
        margin-top: 10px;
        font-family: Asap;
        font-weight: 300;
        font-size: 16px;
    }
    .wf-mob-details .detail-box {
        padding: 5px 10px 5px 10px;
        background-color: #EEEEEE;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    .wf-mob-details .detail-box .detail-header {
        display: flex;
        gap: 5px;
        align-items: center;
    }
    .wf-mob-details .detail-box .detail-header img {
        max-width: 12%;
    }
    .wf-mob-details .detail-box .detail-header h6 {
        margin-bottom: 0px;
        font-weight: 600;
        font-size: 16px;
    }
    .wf-mob-details .detail-box p {
        margin-top: 3px;
        font-weight: 400;
        font-size: 15px;
        color: #1B1B1B;
        margin-bottom: 0px;
        line-height: 140%;
    }
    .workflow-mobile-section .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        top: 88%;
    }
    .department-section h2 {
        font-size: 28px;
    }
    .corner-box p {
        font-size: 18px;
    }
    .department-section .label {
        font-size: 18px;
    }
    .inline-icon-text .content p {
        margin: 8px;
    }
    .inline-icon-text .content {
        line-height: 130%;
    }
    .department-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .features-box-sec {
        margin-top: 20px;
    }
    .features-section .features-heading h3 {
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 20px !important;
    }
    .features-section h4 {
        font-size: 26px;
    }
    .features-section .cta-section .container {
        max-width: 100%;
    }
    .features-section .cta-section .cta-box p {
        font-size: 20px;
    }
    .features-section .cta-btn {
        font-size: 16px;
    }
    .features-section .cta-section .cta-box {
        padding: 10px 12px;
    }
    .blogs-section {
        margin-left: auto;
        margin-right: auto;
    }
    .resources-section {
        margin-top: 20px;
    }
    .resources-header p {
        line-height: 130%;
    }
    .more-specialty-section .more-box {
        padding: 5px 0px 5px 10px;
    }
    .more-specialty-section .more-header p {
        font-size: 14px;
    }
    .faq-section .faq-left p {
        font-size: 16px;
    }
    .faq-section .faq-left h5 {
        font-size: 20px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .product-suite-section .product-card:hover {
        background-color: #2B99FF;
        color: white;
        cursor: pointer;
    }
    .feature-card:hover {
        opacity: 100%;
    }
}

@media (min-width:992px) and (max-width: 1200px) {
    .specialty-box {
        gap: 5px;
        padding-left: 5px;
    }
    .specialty-box h6 {
        font-size: 12px;
    }
    .more-specialty-section .more-box {
        padding: 5px 0px 5px 10px;
    }
}

.mobile-text-slide-out {
    animation: mobileTextSlideOut 0.9s ease-in-out forwards;
}

.mobile-text-slide-in {
    animation: mobileTextSlideIn 0.9s ease-in-out forwards;
}

@keyframes mobileTextSlideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

@keyframes mobileTextSlideIn {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-image-slide-out {
    animation: mobileImageSlideOut 0.9s ease-in-out forwards;
}

.mobile-image-slide-in {
    animation: mobileImageSlideIn 0.9s ease-in-out forwards;
}

@keyframes mobileImageSlideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

@keyframes mobileImageSlideIn {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-text-slide-out {
    animation: mobileTextSlideOut 0.9s ease-in-out forwards !important;
    transform: translateY(0);
    opacity: 1;
}

.mobile-text-slide-in {
    animation: mobileTextSlideIn 0.9s ease-in-out forwards !important;
    transform: translateY(-100px);
    opacity: 0;
}

@keyframes mobileTextSlideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

@keyframes mobileTextSlideIn {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-image-slide-out {
    animation: mobileImageSlideOut 0.9s ease-in-out forwards !important;
    transform: translateY(0);
    opacity: 1;
}

.mobile-image-slide-in {
    animation: mobileImageSlideIn 0.9s ease-in-out forwards !important;
    transform: translateY(100px);
    opacity: 0;
}

@keyframes mobileImageSlideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

@keyframes mobileImageSlideIn {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-text-slide-out {
    animation: mobileTextSlideOut 0.9s ease-in-out forwards !important;
}

.mobile-text-slide-in {
    animation: mobileTextSlideIn 0.9s ease-in-out forwards !important;
}

@keyframes mobileTextSlideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

@keyframes mobileTextSlideIn {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-image-slide-out {
    animation: mobileImageSlideOut 0.9s ease-in-out forwards !important;
}

.mobile-image-slide-in {
    animation: mobileImageSlideIn 0.9s ease-in-out forwards !important;
}

@keyframes mobileImageSlideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

@keyframes mobileImageSlideIn {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-text,
.animated-image {
    transition: none;
}

@media screen and (max-width: 480px) {
    @keyframes mobileTextSlideOut {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        100% {
            transform: translateY(-80px);
            opacity: 0;
        }
    }
    @keyframes mobileTextSlideIn {
        0% {
            transform: translateY(-80px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    @keyframes mobileImageSlideOut {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        100% {
            transform: translateY(80px);
            opacity: 0;
        }
    }
    @keyframes mobileImageSlideIn {
        0% {
            transform: translateY(80px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

@media (max-width:1200px) {
    .hero-section h1 {
        font-size: 28px;
    }
    .demo-form .form-inputs {
        margin-top: 0px;
    }
    label.error {
        color: red;
        font-size: 10px;
        margin-top: 5px;
        display: block;
    }
    .marketing-consent-label {
        font-size: 12px;
    }
    .demo-form .placeholder-text {
        top: 50%;
    }
    .demo-form input:focus~.placeholder-text {
        top: -7px;
    }
    .more-specialty-section .more-header {
        gap: 5px;
    }
    .more-specialty-section .more-header p {
        font-size: 14px;
    }
    .more-specialty-section .more-box {
        padding: 5px 0px 5px 5px;
    }
}

@media (max-width:900px) {
    .hero-section h1 {
        font-size: 22px;
    }
    .hero-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .wf-mob-heading h3 {
        font-size: 14px;
    }
    .wf-mob-heading {
        width: 90%;
    }
    .specialty-box {
        gap: 5px;
        padding-left: 5px;
    }
    .more-specialty-section .more-header {
        gap: 5px;
    }
    .more-specialty-section .more-header p {
        font-size: 12px;
    }
}