/* fonts css start */
@font-face {
    font-family: 'Grover';
    src: url('../fonts/Grover-Black.woff2') format('woff2'),
        url('../fonts/Grover-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Grover';
    src: url('../fonts/Grover-Regular.woff2') format('woff2'),
        url('../fonts/Grover-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grover Semi';
    src: url('../fonts/Grover-Semi-Bold.woff2') format('woff2'),
        url('../fonts/Grover-Semi-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Bold.woff2') format('woff2'),
        url('../fonts/DMSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-BoldItalic.woff2') format('woff2'),
        url('../fonts/DMSans-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Italic.woff2') format('woff2'),
        url('../fonts/DMSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

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

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-MediumItalic.woff2') format('woff2'),
        url('../fonts/DMSans-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.woff2') format('woff2'),
        url('../fonts/DMSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* fonts css end */

/* global css end */

:root {
    --container-width: 1440px;
    --white: #ffffff;
    --black: #000000;
    --blue: #5951F6;
    --midnight-purple: #190041;
    --soft-blue: #7F92F5;
    --ebony-clay: #24223E;
    --alabaster: #FBFBFB;
    --white-smoke: #F9F4F4;
    --charcoal: #333638;
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Grover';
}

body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
    margin: 0;
    padding: 0;
}

a,
span {
    display: inline-block;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

button {
    background-color: transparent;
    border: none;
    padding: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    width: auto;
}

ul,
ol {
    padding: 0;
    list-style-type: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 90%;
}

/* .purple-btn {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    background-color: var(--blue);
    color: var(--white);
    padding: 12px 20px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    max-width: fit-content;
} */

.purple-btn {
    position: relative;
    color: var(--white);
    display: block;
    overflow: hidden;
    border: 1px solid var(--blue);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    background-color: var(--blue);
    color: var(--white);
    padding: 12px 20px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    max-width: fit-content;
    transition: 0.8s;
}

.purple-btn span,
.purple-btn img {
    position: relative;
    z-index: 1;
    transition: 0.8s;
}

.purple-btn:before,
.purple-btn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border-radius: 50%;
}

.purple-btn:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.purple-btn:after {
    right: -20px;
    transform: translate(50%, -50%);
}

.purple-btn:hover {
    color: var(--blue);
}

.purple-btn:hover img {
    filter: invert(1);
}

.purple-btn:hover:before {
    -webkit-animation: criss-cross-left 1s both;
    animation: criss-cross-left 1s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.purple-btn:hover:after {
    -webkit-animation: criss-cross-right 1s both;
    animation: criss-cross-right 1s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

h1 {
    font-size: 62px;
    line-height: 72px;
    font-weight: bold;
    color: var(--black);
}

h2 {
    font-size: 48px;
    line-height: 56px;
    font-weight: bold;
    color: var(--ebony-clay);
    margin-bottom: 70px;
}

h5 {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
}

.para-large {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--black);
    font-family: 'DM Sans';
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
    font-family: 'DM Sans';
}

/* global css end */

/* header css start */
header {
    padding: 24px 0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: var(--white);
}

header.bs-header {
    background-color: var(--white);
}

header .header-inner,
header nav .navbar,
header .buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
}

header .header-inner {
    justify-content: space-between;
}

header .header-nav-panel {
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 1;
    justify-content: flex-end;
}

header .menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

header .menu-toggle-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
}

header .menu-toggle-bar {
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 24px;
    height: 2px;
    margin-top: -1px;
    background-color: var(--black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

header .menu-toggle-bar:nth-child(1) {
    transform: translateY(-8px);
}

header .menu-toggle-bar:nth-child(2) {
    transform: translateY(0);
}

header .menu-toggle-bar:nth-child(3) {
    transform: translateY(8px);
}

body.menu-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

body.menu-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

header .mobile-menu-overlay {
    display: none;
}

header .buttons-wrapper {
    gap: 30px;
    list-style: none;
}

header .navbar .nav-link,
header .navbar .dropdown-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--midnight-purple);
    text-transform: capitalize;
}

header .navbar .dropdown-link img {
    width: 12px;
    height: auto;
}

header .navbar .dropdown {
    position: relative;
}

header .navbar .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding-top: 10px;
    background: transparent;
    box-shadow: none;
    z-index: 20;
}

header .navbar .dropdown-content > ul,
header .navbar .dropdown-content ul {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(25, 0, 65, 0.12);
    padding: 8px 0;
}

header .navbar .dropdown:hover .dropdown-content,
header .navbar .dropdown:focus-within .dropdown-content {
    display: block;
}

header .navbar .dropdown-content ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 24px;
    color: var(--midnight-purple);
    text-transform: none;
    transition: background-color 0.2s ease;
}

header .navbar .dropdown-content ul li a:hover {
    background-color: var(--alabaster);
}

@media (min-width: 1200px) {
    header .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 32px;
    }

    header .logo {
        grid-column: 1;
        justify-self: start;
    }

    header .header-nav-panel {
        display: contents;
    }

    header nav {
        grid-column: 2;
        justify-self: center;
    }

    header .buttons-wrapper {
        grid-column: 3;
        justify-self: end;
    }

    header nav .navbar {
        gap: 40px;
    }
}

/* header css end */

/* footer css start */
footer {
    background-color: var(--midnight-purple);
}

footer .footer-top {
    padding: 90px 0;
    /* display: grid;
   grid-template-columns: repeat(5, 1fr); */
    display: flex;
    justify-content: space-between;
}

footer .footer-top .footer-list {
    max-width: 248px;
}

footer .footer-list h6 {
    font-size: 16px;
    font-weight: bold;
    line-height: 21px;
    color: var(--soft-blue);
    text-transform: uppercase;
    margin-bottom: 24px;
}

footer .footer-list a {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--white);
    margin-bottom: 13px;
    text-align: left;
}

footer .social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 60px;
}

footer .footer-bottom p,
footer .footer-bottom ul a {
    font-size: 12px;
    line-height: 18px;
    color: var(--white);
}

footer .footer-bottom .footer-list {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* footer css end */

/* banner css start */
.banner {
    padding: 249px 0 0;
    background: url("../images/banner-bg.png") center / cover no-repeat;
}

.home-pg .container{
    margin-bottom: 249px;
}
.pricing-pg{
    padding-bottom: 249px;
}

.banner h1 {
    margin-bottom: 38px;
}

.banner p {
    margin-bottom: 58px;
}

.banner .banner-inner {
    max-width: 912px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner .banner-inner p {
    max-width: 654px;
}

.banner figure {
    max-width: 1172px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.banner figure img,
.banner figure svg.banner-hero-svg {
    margin: 0 0 -240px;
    max-width: 100%;
    height: auto;
    display: block;
}
.ft-banner{
    padding-bottom:121px;
}

/* banner css end */

/* brands css start */

.home-brands {
    padding: 348px 0 50px;
    background-color: var(--white);
}

.brands {
    padding: 90px 0;
    text-align: center;
}

.brands .container {
    max-width: 1344px;
}

.brands .brands-slider-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 33px;
}

.brands h3 {
    font-size: 22px;
    line-height: 25px;
    color: var(--ebony-clay);
    font-weight: bold;
    margin-bottom: 55px;
}

/* brands css end */

/* services css start */
.services {
    padding: 50px 0 90px;
    overflow: hidden;
}

.services .services-slider .slick-list {
    margin-right: calc((100vw - 100%) / -2);
}

.services .ss-item a {
    height: 480px;
    overflow: hidden;
    position: relative;
    width: 95%;
    margin-left: 0;
    border-radius: 12px;
}

.services .ss-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .ss-item-detail {
    position: absolute;
    bottom: 15px;
    width: 95%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(7.5px);
    overflow: hidden;
}

.services .ss-item h5 {
    color: var(--white);
}

.services .ss-item-detail .para-grid {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out;
}

.services .ss-item-detail p {
    color: var(--white);
    overflow: hidden;
}

.services .ss-item a:hover .ss-item-detail .para-grid {
    grid-template-rows: 1fr;
}

.global-slider .slick-dots {
    display: flex !important;
}

.global-slider .progress,
.global-slider .progress-testimonial {
    display: block;
    width: 90%;
    height: 2px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #B0B0B033;
    background-image: linear-gradient(to right, var(--blue), var(--blue));
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
    margin-top: 30px;
}

.global-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}

.global-slider .slick-dots li button::before {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.global-slider .slick-prev,
.global-slider .slick-next {
    top: auto;
    bottom: -50px;
    transform: translate(0, 0);
    right: 0;
    left: auto;
    width: 52px;
    height: 42px;
}

.global-slider .slick-prev:before,
.global-slider .slick-next:before {
    display: none;
}

.global-slider .slick-prev {
    right: 60px;
}

.global-slider .slick-prev,
.global-slider .slick-prev:hover,
.global-slider .slick-prev:focus {
    background: url("../images/prev-btn.svg") center / contain no-repeat !important;
}

.global-slider .slick-next,
.global-slider .slick-next:hover,
.global-slider .slick-next:focus {
    background: url("../images/next-btn.svg") center / contain no-repeat !important;
}

/* services css end */

/* features css start */
.features {
    background-color: var(--alabaster);
    padding: 90px 0;
}

.features h2 {
    max-width: 706px;
    margin: 0 auto 67px;
    text-align: center;
}

.features .detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.features .detail-row .thumbnail {
    width: 100%;
    padding: 30px;
    background-color: var(--white-smoke);
    border-radius: 12px;
    box-shadow: none;
}

.features .detail-row .fc-detail {
    padding-top: 24px;
}

.features .detail-row .fc-detail p {
    margin: 8px 0 14px;
}

.features .detail-row .fc-detail .learn-more-btn {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: var(--ebony-clay);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Home features grid — equal card heights */
.features.home-features .detail-row {
    align-items: stretch;
    justify-items: center;
}

.features.home-features .features-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
}

.features.home-features .detail-row .thumbnail {
    height: 502px;
    object-position: center;
    box-sizing: border-box;
}

.features.home-features .fc-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.features.home-features .fc-detail .learn-more-btn {
    margin-top: auto;
}

.ft-page{
    background-color: var(--white);
}

/* features css end */

/* faq css start */

.faq {
    padding: 90px 0;
}

.faq .container {
    max-width: 1260px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq .detail-row {
    max-width: 1110px;
    margin: 0 auto;
}

.faq .faq-content {
    padding: 28px 0;
    border-bottom: 1px solid rgba(25, 0, 65, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

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

.faq .faq-content .question h5 {
    font-size: 19px;
    line-height: 32px;
    font-weight: 600;
    color: var(--midnight-purple);
    font-family: 'Grover';
}

.faq .question .plus {
    font-size: 24px;
    font-weight: 400;
    color: var(--midnight-purple);
    transition: 0.3s;
    transform: rotate(0);
}

.faq .faq-content .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq .faq-content .answer-inner {
    padding-top: 20px;
}

.faq .faq-content .answer p {
    font-size: 16px;
    line-height: 24px;
    color: var(--charcoal);
    font-family: 'DM Sans';
}

/* ACTIVE STATE */
.faq .faq-content.active .answer {
    max-height: 200px;
}

.faq .faq-content.active .question .plus {
    transform: rotate(45deg);
}

/* faq css end */

/* products css start */
.product {
    padding: 90px 0;
    background-color: var(--blue);
    text-align: center;
}

.product h2 {
    max-width: 706px;
    margin: 67px auto;
    text-align: center;
    color: var(--white);
}

.product .purple-btn {
    border: 1px solid var(--white);
    margin: 0 auto;
}

/* products css end */

/* testimonials css start */
.testimonials {
    padding: 90px 0;
}

.testimonials h2 {
    max-width: 880px;
    margin: 0 auto 100px;
    text-align: center;
}

.testimonials .slick-prev,
.testimonials .slick-next {
    bottom: -160px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.testimonials .slick-prev {
    transform: translate(-30px, 0);
}

.testimonials .slick-next {
    transform: translate(30px, 0);
}

.testimonials .progress-testimonial {
    margin: 80px auto;
    width: 100%;
    max-width: 1210px;
    height: 6px;
    background-image: linear-gradient(to right, var(--ebony-clay), var(--ebony-clay));
}

.testimonials .ts-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.testimonials .ts-item a {
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.92);
    transition: 0.4s;
}

.testimonials .ts-item.slick-center a {
    transform: scale(1);
    width: 92%;
    margin: 0 auto;
}

.testimonials .ts-card-top {
    background-color: var(--white-smoke);
    padding: 40px;
}

.testimonials .ts-card-top span {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    padding: 8px 21px;
    border-radius: 50px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--midnight-purple);
    border: 1px solid var(--midnight-purple);
    margin-bottom: 24px;
}

.testimonials .ts-card-top p {
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: var(--midnight-purple);
    margin-bottom: 24px;
    font-family: 'Grover';
}

.testimonials .ts-item h6 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: -0.49px;
}

.testimonials .ts-card-bottom {
    height: 370px;
    position: relative;
}

.testimonials .ts-card-bottom .thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .ts-card-bottom .ts-bottom-detail {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.testimonials .ts-card-bottom .ts-bottom-detail h6 {
    color: var(--white);
}

.testimonials .ts-card-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(51, 54, 56, 1) 0%, rgba(51, 54, 56, 0) 100%);
}

@media (max-width: 767px) {
    .testimonials .testimonials-slider .slick-list {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .testimonials .testimonials-slider .slick-slide {
        margin: 0;
    }

    .testimonials .testimonials-slider .slick-slide > div {
        width: 100%;
    }

    .testimonials .ts-item a,
    .testimonials .ts-item.slick-center a {
        width: 100%;
        max-width: none;
        margin: 0;
        transform: none;
    }
}

/* testimonials css end */

/* bookme css start */
.bookme {
    padding: 90px 0;
    background-color: var(--alabaster);
}

.bookme.home-find-out {
    background-color: #F9F9FB;
}

.bookme .container {
    max-width: 1260px;
}

.bookme-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bookme .bookme-detail .col-left {
    max-width: 520px;
}

.bookme-detail h2 {
    margin-bottom: 24px;
    color: var(--midnight-purple);
}

.bookme-detail p {
    margin-bottom: 32px;
    color: var(--charcoal);
}

.bookme-detail a {
    margin-bottom: 0;
}

.bookme.home-find-out .col-right img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

/* bookme css end */

/* bs-page css start */
.bs-banner {
    padding: 320px 0 200px;
    background: var(--white);
    /* background-image: url("../images/bs-banner-bg.png");
    background-repeat: no-repeat; */
    position: relative;
    z-index: 1;
}

.bs-banner .bs-banner-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}

.bs-banner .banner-inner {
    margin: 0;
    align-items: flex-start;
    text-align: left;
}

.task {
    padding: 90px 0;
}

.task .container {
    max-width: 1200px;
}

.task h2 {
    text-align: center;
}

.tab-menu {
    margin-top: 34px;
}

.tab-menu ul {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
    display: flex;
}

.tab-menu ul li {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    text-align: center;
}

.tab-menu ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: 0.5s all;
    border-bottom: 3px solid #5951F666;
    font-size: 18px;
    line-height: 21px;
    color: var(--black);
    font-weight: 600;
    padding-bottom: 24px;
}

.tab-menu ul li a:hover {
    text-decoration: none;
}

.tab-menu ul li a.active {
    border-color: var(--blue);
    color: var(--blue);
    text-decoration: none;
}

.tab-box {
    display: none;
}

.tab-box h5 {
    margin-bottom: 24px;
}

.tab-teaser {
    width: 100%;
    margin: 0 auto;
    font-family: "Oswald";
}

.tab-box .tab-box-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 50px;
}

.task .tab-box .tab-box-inner {
    grid-template-columns: 1fr minmax(0, 489px);
}

.task .tab-box .col-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 489px;
    margin-inline: auto;
}

.task .tab-box .col-right img {
    width: 100%;
    max-width: 489px;
    height: 420px;
    max-height: 420px;
    display: block;
    border-radius: 12px;
}

.bs-features .detail-row {
    text-align: left;
    grid-template-columns: 1fr;
    gap: 90px;
}

.bs-features .fc-detail h2 {
    text-align: left;
    margin-bottom: 30px;
}

.bs-features .features-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.bs-features .detail-row .fc-detail ul {
    margin-top: 6px;
}

.bs-features .detail-row .fc-detail li {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 24px;
    font-family: 'DM Sans', sans-serif;
}

.bs-features .detail-row .fc-detail li:last-child {
    margin-bottom: 0;
}

.features.bs-features .features-card[id] {
    scroll-margin-top: 120px;
}

#solutions {
    scroll-margin-top: 120px;
}

/* bs-page css end */

/* feature accordion css start */

.feature-accordion {
    padding: 110px 0;
    background: var(--alabaster);
}

.feature-accordion .container {
    max-width: 1260px;
}

.fa-head {
    text-align: center;
    margin-bottom: 56px;
}

.fa-head h2 {
    margin-bottom: 12px;
    color: var(--midnight-purple);
}

.fa-head p {
    font-size: 16px;
    line-height: 24px;
    color: var(--midnight-purple);
    opacity: 0.8;
    font-family: 'DM Sans';
}

.fa-list {
    max-width: 920px;
    margin: 0 auto;
}

.fa-item {
    position: relative;
    border-bottom: 1px solid rgba(25, 0, 65, 0.08);
    border-radius: 28px;
    background: transparent;
    box-shadow: none;
    transition:
        background-color 0.35s ease-in-out,
        box-shadow 0.35s ease-in-out,
        border-color 0.35s ease-in-out;
}

.fa-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    cursor: pointer;
    text-align: left;
    background: transparent;
    border: none;
    outline: none;
}

.fa-number {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: rgba(89, 81, 246, 0.08);
    color: var(--midnight-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    font-family: 'DM Sans';
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.fa-header h5 {
    flex: 1;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--midnight-purple);
}

.fa-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    position: relative;
}

.fa-icon::before,
.fa-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--midnight-purple);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border-radius: 2px;
}

.fa-icon::before {
    width: 14px;
    height: 2px;
}

.fa-icon::after {
    width: 2px;
    height: 14px;
}

.fa-body {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.fa-body-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: center;
    padding: 10px 24px 28px;
    opacity: 0;
    transform: translateY(14px);
}

.fa-text {
    max-width: 345px;
    padding-top: 12px;
}

.fa-text p {
    font-family: 'DM Sans';
    font-size: 18px;
    line-height: 30px;
    color: var(--midnight-purple);
    opacity: 0.9;
    margin-bottom: 54px;
    max-width: 320px;
}

.fa-text .purple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 20px;
    font-size: 15px;
    line-height: 20px;
    border-radius: 999px;
    background: transparent !important;
    border: 1.5px solid var(--blue) !important;
    color: var(--blue) !important;
    box-shadow: none !important;
    text-decoration: none;
}

.fa-text .purple-btn span {
    color: var(--blue) !important;
}

.fa-image {
    background: #f8f2f2;
    border-radius: 24px;
    padding: 28px;
    max-width: 360px;
    margin-left: auto;
}

.fa-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.fa-item.active {
    background: #ffffff;
    border-bottom-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.fa-item.active .fa-number {
    background: var(--blue);
    color: var(--white);
}

.fa-item.active .fa-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
}

/* feature accordion css end */

/* Demo css start */

.demo-section {
  padding: 208px 0 80px;
background: var(--alabaster);
}

.demo-section .container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.demo-section h1{
    padding-bottom: 38px;
}
.demo-left p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.85;
  color: #2e215f;
  max-width: 470px;
}

.demo-left h4 {
  margin: 28px 0 12px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #24105a;
}

.demo-form-wrap {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 28px 24px;
  box-shadow: 0 0 0 1px rgba(36, 16, 90, 0.04);
}

.demo-form-wrap h3 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  color: #24105a;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
}

.demo-form input {
  width: 100%;
  height: 54px;
  border: 1px solid #e3e3e8;
  border-radius: 6px;
  background: #fff;
  padding: 0 16px;
  font-size: 14px;
  color: #24105a;
  outline: none;
  box-sizing: border-box;
}

.demo-form input::placeholder {
  color: #9b9ba8;
}

.demo-form input:focus {
  border-color: #5a54f9;
  box-shadow: 0 0 0 3px rgba(90, 84, 249, 0.08);
}

.demo-form button {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #5a54f9 0%, #5d4ff0 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.demo-form button:hover {
  opacity: 0.92;
}

/* Demo css end */

/* Pricing css start */

.pricing-wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.p-card {
  width: 280px;
  min-height: 580px;
  background: #f7f2f2;
  border: 1px solid rgba(25, 0, 65, 0.12);
  border-radius: 12px;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
}

.p-top {
  min-height: 112px;
}

.p-card h4 {
  margin: 0 0 12px;
}

.p-desc {
  font-size: 13px;
  color: var(--midnight-purple);

}
.p-features{
    margin-top: 13px;
}

.p-mid {
  min-height: 185px;
  display: flex;
  flex-direction: column;
}

.p-price-block {
  min-height: 92px;
  display: flex;
  align-items: center;
}

.p-price {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  margin: 0;
}

.p-price-row {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.p-enterprise {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
}

.p-enterprise p, p.price {
  font-size: 12px;
  line-height: 1.6;
  color: var(--midnight-purple);
  opacity: 0.7;
  margin: 0;
  max-width: 150px;
}

.p-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.p-divider {
  height: 1px;
  background: rgba(25, 0, 65, 0.1);
  margin: 18px 0;
}

.p-btn {
  width: 100%;
  height: 40px;
  border-radius: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-btn.outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.p-btn.filled {
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
}

.p-features li {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
  color: var(--midnight-purple);
}

.p-features li:last-child {
  margin-bottom: 0;
}

.p-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 12px;
  line-height: 1.6;
}
.pricing-cards{
    margin-top: -240px;
}
/* Pricing css end */

/* Contact Cards start */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: 22px;
  padding: 34px 30px 30px;
  box-shadow: 0 0 0 1px rgba(25, 0, 65, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card h3 {
  margin: 0 0 14px;
}
.contact-card p{
    margin-bottom: 30px;
}

.contact-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
/* Contact Cards end */

@media (max-width: 1399px) {
    h1 {
        font-size: 54px;
        line-height: 64px;
    }

    h2 {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 56px;
    }

    .banner {
        padding-top: 220px;
    }

    .home-pg .container {
        margin-bottom: 190px;
    }

    .banner figure {
        max-width: 1000px;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -180px;
    }

    .features .detail-row {
        gap: 48px 24px;
    }

    .testimonials .ts-card-top {
        padding: 32px;
    }

    .testimonials .ts-card-top p {
        font-size: 21px;
        line-height: 30px;
    }
}

@media (max-width: 1199px) {
    .container {
        width: 92%;
    }

    header {
        padding: 28px 0;
    }

    header .header-inner,
    header nav .navbar,
    header .buttons-wrapper {
        gap: 24px;
    }

    .purple-btn {
        font-size: 16px;
        line-height: 22px;
        padding: 10px 18px;
        height: 44px;
    }

    h1 {
        font-size: 46px;
        line-height: 56px;
    }

    h2 {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 48px;
    }

    h5 {
        font-size: 22px;
        line-height: 28px;
    }

    .para-large {
        font-size: 18px;
        line-height: 28px;
    }

    .banner {
        padding-top: 200px;
    }

    .home-pg .container {
        margin-bottom: 150px;
    }

    .banner .banner-inner {
        max-width: 820px;
        margin-bottom: 40px;
    }

    .banner figure {
        max-width: 920px;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -140px;
    }

    .brands,
    .services,
    .features,
    .faq,
    .product,
    .testimonials,
    .bookme {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .brands h3 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 42px;
    }

    .services .ss-item a {
        height: 420px;
    }

    .features .detail-row {
        gap: 40px 24px;
    }

    .features .detail-row .thumbnail {
        padding: 24px;
    }

    .product h2 {
        margin: 48px auto;
    }

    .testimonials h2 {
        margin-bottom: 70px;
    }

    .testimonials .ts-card-top {
        padding: 28px;
    }

    .testimonials .ts-card-top p {
        font-size: 20px;
        line-height: 28px;
    }

    .testimonials .ts-card-bottom {
        height: 300px;
    }

    .bookme-detail {
        gap: 32px;
    }

    footer .footer-top {
        gap: 24px;
        flex-wrap: wrap;
    }

    footer .footer-top .footer-list {
        max-width: 220px;
        width: calc(33.333% - 16px);
    }
}

@media (max-width: 991px) {
    .container {
        width: 94%;
    }

    header {
        position: relative;
        padding: 20px 0;
    }

    header .header-inner {
        flex-wrap: wrap;
        gap: 18px;
    }

    header nav {
        order: 3;
        width: 100%;
    }

    header nav .navbar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    header .buttons-wrapper {
        margin-left: auto;
        gap: 16px;
    }

    header .navbar .nav-link,
    header .navbar .dropdown-link {
        font-size: 16px;
        line-height: 22px;
    }

    header .sign-in {
        font-size: 15px;
        line-height: 22px;
    }

    h1 {
        font-size: 40px;
        line-height: 48px;
    }

    h2 {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 40px;
    }

    .banner {
        padding-top: 72px;
        background-position: center top;
    }

    .home-pg .container {
        margin-bottom: 90px;
    }

    .banner h1 {
        margin-bottom: 24px;
    }

    .banner p {
        margin-bottom: 32px;
    }

    .banner .banner-inner {
        margin-bottom: 32px;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -90px;
    }

    .brands,
    .services,
    .features,
    .faq,
    .product,
    .testimonials,
    .bookme {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .brands h3 {
        margin-bottom: 32px;
    }

    .services .services-slider .slick-list {
        margin-right: 0;
    }

    .services .ss-item a {
        width: 100%;
        height: 380px;
    }

    .services .ss-item-detail {
        width: calc(100% - 20px);
    }

    .global-slider .slick-prev,
    .global-slider .slick-next {
        bottom: -44px;
        width: 44px;
        height: 36px;
    }

    .global-slider .slick-prev {
        right: 52px;
    }

    .features .detail-row {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 720px;
    }

    .features h2 {
        margin-bottom: 48px;
    }

    .features .detail-row .fc-detail {
        padding-top: 20px;
    }

    .product h2 {
        margin: 36px auto;
    }

    .testimonials h2 {
        margin-bottom: 56px;
    }

    .testimonials .ts-item a,
    .testimonials .ts-item.slick-center a {
        width: 100%;
        transform: none;
    }

    .testimonials .ts-card-top {
        padding: 24px;
    }

    .testimonials .ts-card-top p {
        font-size: 18px;
        line-height: 26px;
    }

    .testimonials .ts-card-bottom {
        height: 260px;
    }

    .testimonials .progress-testimonial {
        margin: 56px auto;
    }

    .bookme-detail {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .bookme .bookme-detail .col-left {
        max-width: 100%;
    }

    .bookme-detail h2,
    .bookme-detail p,
    .bookme-detail a {
        margin-bottom: 28px;
    }

    .bookme .purple-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .bookme .store-btns {
        justify-content: center;
    }

    footer .footer-top {
        padding: 64px 0;
    }

    footer .footer-top .footer-list {
        width: calc(50% - 12px);
        max-width: none;
    }

    footer .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    header {
        padding: 16px 0;
    }

    header .header-inner {
        gap: 14px;
    }

    header .logo img {
        max-width: 150px;
    }

    header nav .navbar {
        gap: 12px 18px;
        justify-content: flex-start;
    }

    header .buttons-wrapper {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }

    header .buttons-wrapper .purple-btn {
        font-size: 14px;
        line-height: 20px;
        height: 40px;
        padding: 10px 16px;
    }

    header .sign-in {
        font-size: 14px;
    }

    h1 {
        font-size: 34px;
        line-height: 40px;
    }

    h2 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 32px;
    }

    h5 {
        font-size: 20px;
        line-height: 26px;
    }

    .para-large {
        font-size: 16px;
        line-height: 26px;
    }

    p {
        font-size: 15px;
        line-height: 23px;
    }

    .banner {
        padding-top: 56px;
    }

    .home-pg .container {
        margin-bottom: 64px;
    }

    .banner .banner-inner {
        margin-bottom: 24px;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -60px;
    }

    .brands,
    .services,
    .features,
    .faq,
    .product,
    .testimonials,
    .bookme {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .brands h3 {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 28px;
    }

    .brands .brands-slider-item {
        height: 26px;
    }

    .services .ss-item a {
        height: 330px;
    }

    .services .ss-item-detail {
        bottom: 10px;
        padding: 12px;
    }

    .services .ss-item h5 {
        margin-bottom: 4px;
    }

    .global-slider .progress,
    .global-slider .progress-testimonial {
        width: 100%;
        margin-top: 24px;
    }

    .global-slider .slick-prev,
    .global-slider .slick-next {
        bottom: -40px;
        width: 40px;
        height: 32px;
    }

    .global-slider .slick-prev {
        right: 46px;
    }

    .features h2 {
        margin-bottom: 36px;
    }

    .features .detail-row {
        gap: 28px;
    }

    .features .detail-row .thumbnail {
        padding: 18px;
        border-radius: 10px;
    }

    .features .detail-row .fc-detail {
        padding-top: 16px;
    }

    .features .detail-row .fc-detail p {
        margin: 8px 0 12px;
    }

    .features .detail-row .fc-detail .learn-more-btn {
        font-size: 15px;
        line-height: 22px;
    }

    .product h2 {
        margin: 28px auto;
    }

    .testimonials h2 {
        margin-bottom: 42px;
    }

    .testimonials .ts-card-top {
        padding: 20px;
    }

    .testimonials .ts-card-top span {
        height: 34px;
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 18px;
    }

    .testimonials .ts-card-top p {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .testimonials .ts-item h6 {
        font-size: 14px;
        line-height: 20px;
    }

    .testimonials .ts-card-bottom {
        height: 220px;
    }

    .testimonials .progress-testimonial {
        margin: 44px auto;
        height: 4px;
    }

    .faq h2 {
        margin-bottom: 36px;
    }

    .faq .faq-content {
        padding: 22px 0;
    }

    .faq .faq-content .question {
        gap: 18px;
        align-items: flex-start;
    }

    .faq .faq-content .question h5 {
        font-size: 17px;
        line-height: 26px;
    }

    .faq .question .plus {
        font-size: 22px;
        line-height: 1;
    }

    .faq .faq-content .answer-inner {
        padding-top: 14px;
    }

    .bookme-detail h2,
    .bookme-detail p,
    .bookme-detail a {
        margin-bottom: 22px;
    }

    .bookme .store-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .bookme .store-btns img {
        max-width: 140px;
    }

    footer .footer-top {
        padding: 56px 0 40px;
        gap: 28px;
    }

    footer .footer-top .footer-list {
        width: 100%;
    }

    footer .footer-list h6 {
        margin-bottom: 16px;
    }

    footer .footer-list a {
        margin-bottom: 10px;
    }

    footer .footer-bottom {
        padding-bottom: 28px;
        gap: 12px;
    }

    footer .footer-bottom .footer-list {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    h1 {
        font-size: 30px;
        line-height: 36px;
    }

    h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 28px;
    }

    .purple-btn {
        font-size: 14px;
        line-height: 20px;
        height: 40px;
        padding: 10px 15px;
    }
        .global-slider .progress,
    .global-slider .progress-testimonial {
        width: 75%; 
    }

    header nav .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    header .buttons-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .banner .banner-inner p {
        max-width: 100%;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -36px;
    }

    .services .ss-item a {
        height: 290px;
    }

    .services .ss-item-detail {
        width: calc(100% - 16px);
        bottom: 8px;
    }

    .features .detail-row {
        gap: 24px;
    }

    .testimonials .ts-card-top {
        padding: 18px;
    }

    .testimonials .ts-card-top p {
        font-size: 16px;
        line-height: 22px;
    }

    .testimonials .ts-card-bottom {
        height: 200px;
    }

    .bookme .store-btns img {
        max-width: 125px;
    }
}
@media (max-width: 1399px) {
    h1 {
        font-size: 54px;
        line-height: 64px;
    }

    h2 {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 56px;
    }

    .banner {
        padding-top: 220px;
    }

    .home-pg .container {
        margin-bottom: 190px;
    }

    .pricing-pg {
        padding-bottom: 190px;
    }

    .banner figure {
        max-width: 1000px;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -180px;
    }

    .features .detail-row {
        gap: 48px 24px;
    }

    .testimonials .ts-card-top {
        padding: 32px;
    }

    .testimonials .ts-card-top p {
        font-size: 21px;
        line-height: 30px;
    }
}

@media (max-width: 1199px) {
    .container {
        width: 92%;
    }

    header {
        padding: 28px 0;
    }

    header .header-inner,
    header nav .navbar,
    header .buttons-wrapper {
        gap: 24px;
    }

    .purple-btn {
        font-size: 16px;
        line-height: 22px;
        padding: 10px 18px;
        height: 44px;
    }

    h1 {
        font-size: 46px;
        line-height: 56px;
    }

    h2 {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 48px;
    }

    h5 {
        font-size: 22px;
        line-height: 28px;
    }

    .para-large {
        font-size: 18px;
        line-height: 28px;
    }

    .banner {
        padding-top: 200px;
    }

    .home-pg .container {
        margin-bottom: 150px;
    }

    .pricing-pg {
        padding-bottom: 150px;
    }

    .banner .banner-inner {
        max-width: 820px;
        margin-bottom: 40px;
    }

    .banner figure {
        max-width: 920px;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -140px;
    }

    .brands,
    .services,
    .features,
    .faq,
    .product,
    .testimonials {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .feature-accordion,
    .bookme,
    .demo-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .brands h3 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 42px;
    }

    .services .ss-item a {
        height: 420px;
    }

    .features .detail-row {
        gap: 40px 24px;
    }

    .features .detail-row .thumbnail {
        padding: 24px;
    }

    .task .detail-row,
    .demo-section .container,
    .bookme-detail,
    .fa-body-inner {
        gap: 32px;
    }

    .task h2,
    .feature-accordion .fa-head,
    .demo-section h1,
    .pricing-cards h2 {
        margin-bottom: 40px;
    }

    .product h2 {
        margin: 48px auto;
    }

    .testimonials h2 {
        margin-bottom: 70px;
    }

    .testimonials .ts-card-bottom {
        height: 300px;
    }

    .testimonials .progress-testimonial {
        max-width: 100%;
    }

    .contact-card {
        max-width: 280px;
        padding: 30px 24px 26px;
    }

    .pricing-wrap {
        gap: 18px;
    }

    .p-card {
        width: calc(33.333% - 12px);
        min-width: 0;
        padding: 22px 20px 24px;
    }

    footer .footer-top {
        gap: 24px;
        flex-wrap: wrap;
    }

    footer .footer-top .footer-list {
        max-width: 220px;
        width: calc(33.333% - 16px);
    }
}

@media (max-width: 991px) {
    .container {
        width: 94%;
    }

    header {
        position: relative;
        padding: 20px 0;
    }

    header .header-inner {
        flex-wrap: wrap;
        gap: 18px;
    }

    header nav {
        order: 3;
        width: 100%;
    }

    header nav .navbar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    header .buttons-wrapper {
        margin-left: auto;
        gap: 16px;
    }

    header .navbar .nav-link,
    header .navbar .dropdown-link {
        font-size: 16px;
        line-height: 22px;
    }

    header .sign-in {
        font-size: 15px;
        line-height: 22px;
    }

    h1 {
        font-size: 40px;
        line-height: 48px;
    }

    h2 {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 40px;
    }

    .banner {
        padding-top: 72px;
        background-position: center top;
    }

    .home-pg .container {
        margin-bottom: 90px;
    }

    .pricing-pg {
        padding-bottom: 90px;
    }

    .banner h1 {
        margin-bottom: 24px;
    }

    .banner p {
        margin-bottom: 32px;
    }

    .banner .banner-inner {
        margin-bottom: 32px;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -90px;
    }

    .bs-banner .bs-banner-bg {
        object-fit: cover;
        height: 100%;
    }

    .brands,
    .services,
    .features,
    .faq,
    .product,
    .testimonials {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .feature-accordion,
    .bookme,
    .demo-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .services .services-slider .slick-list,
    .testimonials .testimonials-slider .slick-list {
        margin-right: 0;
    }

    .services .ss-item a {
        width: 100%;
        height: 380px;
    }

    .services .ss-item-detail {
        width: calc(100% - 20px);
    }

    .global-slider .slick-prev,
    .global-slider .slick-next {
        bottom: -44px;
        width: 44px;
        height: 36px;
    }

    .global-slider .slick-prev {
        right: 52px;
    }

    .features .detail-row {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 720px;
    }

    .bs-features .detail-row .features-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .bs-features .detail-row .features-card .thumbnail {
        order: -1;
    }

    .features .detail-row .fc-detail {
        padding-top: 20px;
    }

    .task .detail-row,
    .bookme-detail,
    .demo-section .container,
    .fa-body-inner {
        grid-template-columns: 1fr;
    }

    .task .tab-box-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .task .tab-box .col-right img {
        width: 100%;
        max-width: 100%;
        height: 360px;
        max-height: 360px;
    }

    .task .tab-menu ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .task .tab-menu li a {
        width: 100%;
        justify-content: flex-start;
    }

    .feature-accordion .fa-list {
        max-width: 100%;
    }

    .fa-body-inner {
        gap: 24px;
    }

    .fa-text,
    .fa-image {
        max-width: 100%;
    }

    .testimonials h2 {
        margin-bottom: 56px;
    }

    .testimonials .ts-item a,
    .testimonials .ts-item.slick-center a {
        width: 100%;
        transform: none;
    }

    .testimonials .ts-card-top {
        padding: 24px;
    }

    .testimonials .ts-card-top p {
        font-size: 18px;
        line-height: 26px;
    }

    .testimonials .ts-card-bottom {
        height: 260px;
    }

    .testimonials .progress-testimonial {
        margin: 56px auto;
    }

    .pricing-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .p-card {
        width: calc(50% - 9px);
        min-height: auto;
    }

    .pricing-cards .container {
        width: 94%;
    }

    .contact-cards {
        gap: 18px;
    }

    .contact-card {
        max-width: 320px;
        width: calc(50% - 9px);
    }

    .demo-left,
    .demo-form-wrap {
        max-width: 100%;
    }

    .demo-left {
        padding-top: 0;
    }

    .demo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bookme .bookme-detail .col-left {
        max-width: 100%;
        text-align: center;
    }

    .bookme-detail h2,
    .bookme-detail p,
    .bookme-detail a {
        margin-bottom: 28px;
    }

    .bookme .purple-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .bookme .store-btns {
        justify-content: center;
    }

    footer .footer-top {
        padding: 64px 0;
    }

    footer .footer-top .footer-list {
        width: calc(50% - 12px);
        max-width: none;
    }

    footer .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    header {
        padding: 16px 0;
    }

    header .header-inner {
        gap: 14px;
    }

    header .logo img {
        max-width: 150px;
    }

    header nav .navbar {
        gap: 12px 18px;
        justify-content: flex-start;
    }

    header .buttons-wrapper {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }

    header .buttons-wrapper .purple-btn {
        font-size: 14px;
        line-height: 20px;
        height: 40px;
        padding: 10px 16px;
    }

    header .sign-in {
        font-size: 14px;
    }

    h1 {
        font-size: 34px;
        line-height: 40px;
    }

    h2 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 32px;
    }

    h5 {
        font-size: 20px;
        line-height: 26px;
    }

    .para-large {
        font-size: 16px;
        line-height: 26px;
    }

    p {
        font-size: 15px;
        line-height: 23px;
    }

    .banner {
        padding-top: 56px;
    }

    .home-pg .container {
        margin-bottom: 64px;
    }

    .pricing-pg {
        padding-bottom: 64px;
    }

    .banner .banner-inner {
        margin-bottom: 24px;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -60px;
    }

    .brands,
    .services,
    .features,
    .faq,
    .product,
    .testimonials {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .feature-accordion,
    .bookme,
    .demo-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .brands h3 {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 28px;
    }

    .brands .brands-slider-item {
        height: 26px;
    }

    .services .ss-item a {
        height: 330px;
    }

    .services .ss-item-detail {
        bottom: 10px;
        padding: 12px;
    }

    .services .ss-item h5 {
        margin-bottom: 4px;
    }

    .global-slider .progress,
    .global-slider .progress-testimonial {
        width: 100%;
        margin-top: 24px;
    }

    .global-slider .slick-prev,
    .global-slider .slick-next {
        bottom: -40px;
        width: 40px;
        height: 32px;
    }

    .global-slider .slick-prev {
        right: 46px;
    }

    .features h2 {
        margin-bottom: 36px;
    }

    .features .detail-row {
        gap: 28px;
    }

    .features .detail-row .thumbnail {
        padding: 18px;
        border-radius: 10px;
    }

    .features .detail-row .fc-detail {
        padding-top: 16px;
    }

    .features .detail-row .fc-detail p {
        margin: 8px 0 12px;
    }

    .features .detail-row .fc-detail .learn-more-btn {
        font-size: 15px;
        line-height: 22px;
    }

    .bs-features .detail-row .fc-detail h2 {
        margin-bottom: 18px;
    }

    .bs-features .detail-row .fc-detail ul {
        padding-left: 18px;
    }

    .bs-features .detail-row .fc-detail li {
        margin-bottom: 4px;
        font-size: 15px;
        line-height: 22px;
        font-family: 'DM Sans';
    }

    .task .tab-menu ul {
        grid-template-columns: 1fr;
    }

    .task .tab-menu li a {
        padding: 14px 16px;
    }

    .task .tab-box-inner {
        gap: 22px;
    }

    .task .tab-box .col-left p br {
        display: none;
    }

    .feature-accordion .fa-head {
        margin-bottom: 36px;
    }

    .fa-header {
        gap: 14px;
        padding: 16px;
    }

    .fa-header h5 {
        font-size: 16px;
        line-height: 22px;
    }

    .fa-number {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 11px;
    }

    .fa-body-inner {
        padding: 12px 16px 20px;
    }

    .fa-text p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .fa-image {
        padding: 16px;
        border-radius: 18px;
    }

    .product h2 {
        margin: 28px auto;
    }

    .testimonials h2 {
        margin-bottom: 42px;
    }

    .testimonials .ts-card-top {
        padding: 20px;
    }

    .testimonials .ts-card-top span {
        height: 34px;
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 18px;
    }

    .testimonials .ts-card-top p {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .testimonials .ts-item h6 {
        font-size: 14px;
        line-height: 20px;
    }

    .testimonials .ts-card-bottom {
        height: 220px;
    }

    .testimonials .progress-testimonial {
        margin: 44px auto;
        height: 4px;
    }

    .faq h2 {
        margin-bottom: 36px;
    }

    .faq .faq-content {
        padding: 22px 0;
    }

    .faq .faq-content .question {
        gap: 18px;
        align-items: flex-start;
    }

    .faq .faq-content .question h5 {
        font-size: 17px;
        line-height: 26px;
    }

    .faq .question .plus {
        font-size: 22px;
        line-height: 1;
    }

    .faq .faq-content .answer-inner {
        padding-top: 14px;
    }

    .pricing-wrap {
        gap: 16px;
    }

    .p-card {
        width: 100%;
        max-width: 380px;
        padding: 22px 20px 24px;
    }

    .p-top,
    .p-mid,
    .p-price-block {
        min-height: auto;
    }

    .p-price {
        font-size: 52px;
    }

    .p-price-row {
        align-items: flex-start;
    }

    .p-billing,
    .price {
        max-width: 118px;
        font-size: 10px;
        line-height: 1.45;
        margin-top: 8px;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 28px 22px 24px;
    }

    .contact-card p {
        max-width: 100%;
    }

    .demo-section {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .demo-left h1 {
        font-size: 38px;
        line-height: 1.1;
        padding-bottom: 24px;
    }

    .demo-left p {
        max-width: 100%;
    }

    .demo-form-wrap {
        padding: 22px 18px 18px;
    }

    .demo-form-wrap h3 {
        font-size: 24px;
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .bookme-detail h2,
    .bookme-detail p,
    .bookme-detail a {
        margin-bottom: 22px;
    }

    .bookme .store-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .bookme .store-btns img {
        max-width: 140px;
    }

    footer .footer-top {
        padding: 56px 0 40px;
        gap: 28px;
    }

    footer .footer-top .footer-list {
        width: 100%;
    }

    footer .footer-list h6 {
        margin-bottom: 16px;
    }

    footer .footer-list a {
        margin-bottom: 10px;
    }

    footer .footer-bottom {
        padding-bottom: 28px;
        gap: 12px;
    }

    footer .footer-bottom .footer-list {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    h1 {
        font-size: 30px;
        line-height: 36px;
    }

    h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 28px;
    }

    .purple-btn {
        font-size: 14px;
        line-height: 20px;
        height: 40px;
        padding: 10px 15px;
    }

    header nav .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    header .buttons-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .banner .banner-inner p,
    .bookme .bookme-detail .col-left,
    .fa-text,
    .demo-left,
    .demo-form-wrap {
        max-width: 100%;
    }

    .banner figure img,
    .banner figure svg.banner-hero-svg {
        margin-bottom: -36px;
    }

    .services .ss-item a {
        height: 290px;
    }

    .services .ss-item-detail {
        width: calc(100% - 16px);
        bottom: 8px;
    }

    .features .detail-row {
        gap: 24px;
    }

    .testimonials .ts-card-top {
        padding: 18px;
    }

    .testimonials .ts-card-top p {
        font-size: 16px;
        line-height: 22px;
    }

    .testimonials .ts-card-bottom {
        height: 200px;
    }

    .bookme .store-btns img {
        max-width: 125px;
    }

    .task .tab-menu li a {
        font-size: 14px;
        line-height: 20px;
    }

    .task .tab-menu li a img {
        max-width: 18px;
    }

    .fa-header {
        padding: 14px;
    }

    .fa-body-inner {
        padding: 10px 14px 18px;
    }

    .contact-card h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .demo-form input,
    .demo-form button {
        height: 50px;
    }

    .p-card {
        padding: 20px 18px 22px;
    }
}

/* App page banner */
.app-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.app-banner-secondary {
    background-color: transparent;
    color: var(--blue);
}

.app-banner-secondary:hover {
    background-color: var(--blue);
    color: var(--white);
}

@media (max-width: 767px) {
    .app-banner-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile & tablet navigation */
@media (max-width: 1199px) {
    header {
        position: relative;
    }

    header .menu-toggle {
        display: flex;
        margin-left: auto;
        z-index: 101;
    }

    header .header-inner {
        flex-wrap: nowrap;
        gap: 16px;
    }

    header .header-nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: min(380px, 92vw);
        height: 100vh;
        height: 100dvh;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 96px 28px 32px;
        background-color: var(--white);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 100;
        overflow-y: auto;
        box-shadow: -8px 0 32px rgba(25, 0, 65, 0.12);
    }

    body.menu-open header .header-nav-panel {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    header .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(25, 0, 65, 0.45);
        z-index: 99;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open header .mobile-menu-overlay {
        display: block;
    }

    header nav {
        order: unset;
        width: 100%;
    }

    header nav .navbar {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0;
    }

    header nav .navbar > li {
        width: 100%;
        border-bottom: 1px solid var(--alabaster);
    }

    header .navbar .nav-link,
    header .navbar .dropdown-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        line-height: 26px;
    }

    header .navbar .dropdown {
        width: 100%;
    }

    header .navbar .dropdown-content {
        display: none;
        position: static;
        min-width: 0;
        padding-top: 0;
    }

    header .navbar .dropdown:hover .dropdown-content,
    header .navbar .dropdown:focus-within .dropdown-content {
        display: none;
    }

    header .navbar .dropdown.is-open .dropdown-content {
        display: block;
    }

    header .navbar .dropdown-content > ul,
    header .navbar .dropdown-content ul {
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 12px 16px;
        background-color: transparent;
    }

    header .navbar .dropdown-content ul li a {
        padding: 10px 0;
        font-size: 16px;
    }

    header .buttons-wrapper {
        width: 100%;
        margin: 24px 0 0;
        padding-top: 24px;
        border-top: 1px solid #ECECEC;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-left: 0;
    }

    header .buttons-wrapper .purple-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    header .header-nav-panel {
        width: 100%;
        padding: 88px 20px 28px;
    }

    header .logo img {
        max-width: 150px;
    }
}

/* Legal pages */
.legal-page {
    padding: 180px 0 90px;
    background-color: var(--white);
}

.legal-page h1 {
    max-width: 800px;
    margin-bottom: 24px;
}

.legal-intro {
    max-width: 820px;
    margin-bottom: 48px;
    color: var(--gray);
}

.legal-body {
    max-width: 820px;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 16px;
}

.legal-section p,
.legal-section li {
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray);
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 1.25rem;
    margin-bottom: 16px;
}

