.zwc-nav-wrapper {
    background: rgb(26, 26, 26);
    padding: 6px 20px;
    position: sticky;
    top: 0px;
    z-index: 100;
    border-radius: 12px 12px 0 0;
}
.zwc-faq-sec-globe .zwc-faq-lft {
    position: sticky;
    top: 100px;
}
.zwc-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
}

.zwc-nav-left {
    display: flex;
    align-items: center;
    gap: 0px;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.zwc-nav-item {
    position: relative;
}

.zwc-nav-item a, .zwc-more-btn {
    display: block;
    padding: 7px 18px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-family: var(--zf-primary-regular);
    font-size: 14px;
    line-height: 1.5;
    transition: background-color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 9px;
}

.zwc-nav-item a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.zwc-nav-item.active a {
    background: rgba(255, 255, 255, 0.15);
}

.zwc-nav-item::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.zwc-nav-item:last-child::after {
    display: none;
}

.zwc-more-btn {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.zwc-nav-right {
    display: flex;
    align-items: center;
}

.zwc-dropdown {
    position: relative;
}

.zwc-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    font-family: var(--zf-primary-regular);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.zwc-dropdown-btn {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.zwc-dropdown-btn svg {
    transition: transform 0.3s;
    margin-top: 4px;
}

.zwc-dropdown-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.zwc-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0px;
    margin-top: 8px;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
}

.zwc-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.zwc-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: rgb(26, 26, 26);
    text-decoration: none;
    font-family: var(--zf-primary-regular);
    font-size: 14px;
    transition: background-color 0.2s;
}

.zwc-dropdown-item:hover {
    background: rgb(245, 245, 245);
}

.zwc-dropdown-item:first-child {
    border-radius: 8px 8px 0px 0px;
}

.zwc-dropdown-item:last-child {
    border-radius: 0px 0px 8px 8px;
}
.zwc-ai-survey-evryone{
    background: #fff;

}
.zwc-ai-survey-evryone img{
    width: 100%;
    display: block;
}
.zwc-tab-panel{
    opacity: 0;
    transition: opacity 0.3s;
    visibility: hidden;
    height: 0;
}
.zwc-tab-panel.active{
    opacity: 1;
    visibility: visible;
    height: auto;
}
@media (max-width: 767px) {
   
}

.zwc-hero-section {
    background: rgb(255, 255, 255);
}

.zwc-flex {
    display: flex;
}

.zwc-faq-sec-globe .zwc-flx-col:nth-child(2) {
    flex-grow: 1;
}
.zwc-faq-sec-globe .zwc-accord-content p{
    color: #000;
}
.zwc-faq-sec-globe .zwc-accord-content p:last-child{
    margin-bottom: 0;
}
.zwc-faq-sec-globe .zwc-faq-content h3{
    position: relative;
}
.zwc-faq-sec-globe .zwc-faq-content h3::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 25px;
    height: 25px;
    background: rgb(231, 231, 231);
    border-radius: 50%;
    transform: translateY(-50%);
}

.zwc-faq-sec-globe .zwc-faq-content h3::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    transform: translateY(-50%);
}

.zwc-faq-content.active h3::after {
    content: "";
    width: 7px;
    height: 2px;
    background: rgb(0, 0, 0);
    transform: translateX(-9px);
}

.zwc-faq-sec-globe.zwc-faq-wrap {
    padding: clamp(64px, 8vw, 120px) 0px;
    background: rgb(255, 255, 255);
}

.zwc-faq-sec-globe .zwc-faq-content {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(231, 231, 231);
}

.zwc-faq-sec-globe .zwc-faq-content button {
    color: rgb(0, 0, 0);
}

.zwc-hero-content {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 5vw, 96px);
    padding-top: clamp(40px, 6vw, 80px);
}

.zwc-hero-text-wrapper {
    display: flex;
    /* align-items: flex-end; */
}

.zwc-hero-text-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 620px;
}

.zwc-chip-special {
    background: rgb(243, 245, 255);
    border: 1px solid rgb(213, 219, 255);
    padding: 8px 16px;
    border-radius: 1000px;
    display: inline-flex;
    width: fit-content;
}

.zwc-chip-special span {
    -webkit-text-fill-color: transparent;
    font-family: var(--primaryfont-semibold);
    font-size: clamp(18px, 1.25vw, 24px);
    line-height: 1.33;
    letter-spacing: -0.48px;
    background: linear-gradient(90deg, rgb(0, 217, 255) -10.15%, rgb(66, 93, 199) 21%, rgb(91, 45, 177) 40.73%, rgb(57, 69, 186) 72.17%, rgb(1, 108, 202) 109.7%) text;
}

.zwc-hero-text-left h1 {
    font-family: var(--zf-primary-semibold);
    font-size: clamp(40px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -1.76px;
}

.zwc-hero-description {
    flex: 1 1 0%;
}
.zwc-hero-description p:first-child{
    font-family: var(--primaryfont-semibold);
}
.zwc-hero-description p {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 566px;
    margin-left: auto;
    line-height: 1.5;
}

.zwc-interactive-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.zwc-interactive-container {
    border: 1px solid rgb(232, 234, 255);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: url("/sites/zweb/images/survey/features-page/chatbot-bg.jpg") 0px 0px / cover no-repeat;
    padding: 110px 0px;
}

.zwc-interactive-bg {
    border-radius: 8px;
    width: 100%;
    background: url("/sites/zweb/images/survey/features-page/chatbot-bg.jpg") 0px 0px / cover no-repeat;
    padding: 75px 75px 0px;
}

.zwc-floating-robot {
    position: absolute;
    left: 135px;
    top: 420px;
    width: 174px;
    height: 174px;
    transform: rotate(-5.86deg);
}

.zwc-filter-chips {
    left: 50%;
    top: 111.5px;
    display: flex;
    gap: 10px;
    z-index: 2;
    justify-content: center;
}

.zwc-chip {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    padding: 8px 18px;
    border-radius: 88px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.zwc-chip span {
    font-family: var(--zf-primary-regular);
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.55;
    letter-spacing: -0.36px;
    color: rgb(0, 0, 0);
}

.zwc-chip.zwc-active {
    background: rgb(255, 255, 255);
}

.zwc-chip.zwc-active span {
    font-family: var(--zf-primary-semibold);
}

.zwc-prompt-box {
    left: 50%;
    top: 181.5px;
    max-width: 750px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(17px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 32px 32px 0px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 3;
    margin: 30px auto;
}

.zwc-prompt-input {
    background: rgb(255, 255, 255);
    padding: clamp(16px, 1.66vw, 32px);
    border-radius: 8px;
    min-height: 144px;
}

.zwc-prompt-input p {
    font-family: var(--zf-primary-regular);
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.55;
    letter-spacing: -0.36px;
    color: rgb(0, 0, 0);
    transition: opacity 0.3s;
}

.zwc-prompt-help {
    padding: 14px 30px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.zwc-prompt-help span {
    font-family: var(--zf-primary-regular);
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.62;
    letter-spacing: -0.32px;
    color: rgb(0, 0, 0);
}

.zwc-prompt-help a {
    font-family: var(--zf-primary-semibold);
    font-size: clamp(14px, 0.83vw, 16px);
    line-height: 1.62;
    letter-spacing: -0.32px;
    color: rgb(10, 85, 235);
    text-decoration: none;
}

.zwc-prompt-help a:hover {
    text-decoration: underline;
}

.zwc-generate-btn {
    left: 50%;
    top: 405.5px;
    z-index: 4;
    text-align: center;
}

.zwc-stats-section {
    background: rgb(0, 0, 0);
    padding: clamp(64px, 8.43vw, 162px) 0px;
}

.zwc-stats-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(16px, 2vw, 32px);
}

.zwc-stats-left {
    width: 388px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(24px, 2.5vw, 48px);
}

.zwc-stats-left h2 {
    font-family: var(--zf-primary-semibold);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.96px;
    color: rgb(255, 255, 255);
}

.zwc-stats-grid {
    display: flex;
    gap: clamp(8px, 0.62vw, 12px);
    flex: 1 1 0%;
}

.zwc-stat-card {
    background: rgb(38, 38, 38);
    border: 1px solid rgb(61, 61, 61);
    border-radius: 12px;
    padding: clamp(16px, 2vw, 32px);
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    min-height: 280px;
}

.zwc-stat-card h3 {
    font-family: var(--zf-primary-semibold);
    font-size: clamp(32px, 3.33vw, 64px);
    line-height: 1.12;
    letter-spacing: -1.28px;
    color: rgb(255, 255, 255);
}

.zwc-stat-card p {
    font-family: var(--zf-primary-regular);
    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: -0.48px;
    color: rgb(255, 255, 255);
    margin-bottom: 0px;
    line-height: 1.4;
}

.zwc-ai-survey-section {
    background: rgb(255, 255, 255);
    padding: clamp(64px, 8.43vw, 162px) 0px 0px;
}

.zwc-ai-survey-content {
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 3.75vw, 72px);
    overflow: hidden;
    position: relative;
}

.zwc-section-header {
    display: flex;
    justify-content: space-between;
    gap: clamp(24px, 3vw, 48px);
}

.zwc-header-left {
    width: 360px;
    display: flex;
    flex-direction: column;
}

.zwc-header-left h2, .zwc-accordian-wrap h2 {
    font-family: var(--zf-primary-semibold);
    font-size: clamp(30px, 4vw, 56px);
    letter-spacing: -1.12px;
    color: rgb(0, 0, 0);
    line-height: 1.1;
}

.zwc-accordian-wrap h2 {
    max-width: 800px;
}

.zwc-header-left p {
    font-family: var(--primaryfont-regular);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.5;
    letter-spacing: -0.4px;
    color: rgb(0, 0, 0);
    text-wrap: pretty;
}

.zwc-header-description {
    flex: 1 1 0%;
    max-width: 817px;
}
.zwc-header-description p {
    font-family: var(--primaryfont-regular);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
    letter-spacing: -0.4px;
    color: rgb(0, 0, 0);
}

.zwc-features-section {
    background: rgb(255, 255, 255);
    padding: clamp(64px, 6.25vw, 120px) 0px clamp(48px, 5vw, 96px);
}

.zwc-features-content {
    display: flex;
    flex-direction: column;
    gap: clamp(45px, 4.68vw, 90px);
}

.zwc-features-content h2, .zwc-faq-wrap h2 {
    font-family: var(--primaryfont-semibold);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.14;
    letter-spacing: -1.12px;
    color: rgb(0, 0, 0);
    max-width: 889.99px;
}

.zwc-feature-card.zwc-inactive {
    border-bottom: 1px solid rgba(34, 109, 180, 0.1);
    padding-top: clamp(6px, 0.62vw, 12px);
    padding-bottom: clamp(6px, 0.62vw, 12px);
}

.zwc-stepper-section {
    background: rgb(0, 0, 0);
    padding: clamp(64px, 6.25vw, 120px) 0px;
}

.zwc-stepper-content {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 5vw, 96px);
    align-items: center;
}

.zwc-stepper-content h2 {
    font-family: var(--primaryfont-semibold);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.96px;
    color: rgb(255, 255, 255);
    text-align: center;
    max-width: 769.863px;
}

.zwc-steps-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.zwc-step-line {
    position: absolute;
    top: 13.5px;
    left: 0px;
    right: 0px;
    height: 4px;
    background: rgb(38, 38, 38);
}

.zwc-step {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 2.29vw, 44px);
    position: relative;
    z-index: 1;
}

.zwc-step-number {
    background: rgb(10, 85, 235);
    color: rgb(255, 255, 255);
    width: 41px;
    height: 30px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--zf-primary-semibold);
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.42;
    letter-spacing: -0.28px;
}

.zwc-step-content h3 {
    font-family: var(--zf-primary-semibold);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.33;
    letter-spacing: -0.48px;
    color: rgb(255, 255, 255);
}

.zwc-step-content p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.55;
    letter-spacing: -0.36px;
    color: rgb(255, 255, 255);
    margin-bottom: 0px;
}

.zwc-bottom-cta-section {
    padding: clamp(56px, 5.83vw, 112px) 0px clamp(64px, 6.25vw, 120px);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.zwc-bottom-cta-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: url("/sites/zweb/images/survey/features-page/ai-footer-bg.jpg") right center / cover no-repeat;
    z-index: -1;
}

.zwc-bottom-cta-section::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(white 29.267%, rgba(224, 233, 251, 0) 100.93%);
    z-index: -1;
}

.zwc-cta-content {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.66vw, 32px);
    align-items: center;
}

.zwc-cta-content h2 {
    font-family: var(--zf-primary-semibold);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.14;
    letter-spacing: -1.12px;
    text-align: center;
    max-width: 946.93px;
    color: rgb(3, 3, 3);
    margin-bottom: 0;
}

.zwc-brand {
    overflow: hidden;
}

.zwc-trust-wrap {
    padding: clamp(40px, 5vw, 70px) 0px;
}

.zwc-trust-wrap p {
    text-align: center;
}

.zwc-brand .zwc-maruqee-flex {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    gap: 0px;
}

.zwc-brand-hdt {
    max-width: 520px;
    font-family: var(--zf-primary-semibold);
    font-size: 20px;
    text-align: center;
    color: rgb(34, 34, 34);
    display: block;
    margin: 0px auto 10px;
}

.zwc-brand-wrap {
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.zwc-brand-wrap span {
    height: 66px;
    margin: 0px 31px 6px;
    display: flex;
    align-items: center;
}

.zwc-itc {
    width: 68px;
}

.zwc-adani {
    width: 86px;
}

.zwc-aditya {
    width: 110px;
}

.zwc-asian-paint {
    width: 165px;
}

.zwc-hotstar {
    width: 160px;
}

.zwc-godrej {
    width: 103px;
}

.zwc-max-life {
    width: 90px;
}

.zwc-marriott {
    width: 120px;
}

.zwc-samsung {
    width: 120px;
}

.zwc-skill {
    width: 103px;
}

.zwc-brand .zwc-flex.zwc-maruqee-flex {
    flex-flow: row;
    justify-content: flex-start;
    gap: 0px;
}

#marquee {
    animation: 40s linear 0s infinite normal none running marquee;
}

@keyframes marquee {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(-1700px);
    }
}

.zwc-scroll-control {
    max-width: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: rgb(240, 240, 241);
    border-radius: 6px;
    margin: 35px 0px 0px auto;
    padding: 5px;
}

.zwc-scroll-control span {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease-in-out;
}

.zwc-scroll-control span::before {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background-image: url("/sites/zweb/images/survey/home/home-sprite.svg");
    background-repeat: no-repeat;
    background-size: 271px;
    inset: 50% 0px 0px 50%;
}

.zwc-scroll-control span.zwc-play-btn::before {
    width: 11px;
    height: 13px;
    background-position: -174px -6px;
}

.zwc-scroll-control span:hover, .zwc-scroll-control span.active {
    background: rgb(255, 255, 255);
}

.zwc-scroll-control span.zwc-play-btn.active::before {
    background-position: -160px -6px;
}

.zwc-read-more-btn {
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    padding: 13px 60px 13px 38px;
    border-radius: 4px;
    font-family: var(--zf-primary-semibold);
    position:relative;
}
.zwc-read-more-btn::before{
    content:'';
    position:absolute;
    right: 31px;
    width:20px;
    height:20px;
    background:url(/sites/zweb/images/survey/features-page/read-more-icon.png) no-repeat 0 0 / 20px;
    bottom: 16px;
}

.zwc-tab-sec .zwc-page-title h2 {
    font-size: 30px;
}

.zwc-tab-sec .zwc-page-title p {
    max-width: 600px;
    margin: 15px auto 0px;
}

.zwc-tab-sec {
    background: var(--primary-color);
    color: rgb(255, 255, 255);
    border-radius: 15px;
    padding: 80px;
}

.zwc-tab-sec .zwc-page-title p {
    max-width: 600px;
    margin: 15px auto 0px;
}

.zwc-tab-sec .zwc-page-title h2 {
    font-size: 30px;
}

.zwc-tab-item.tab-li {
    padding: 0px 20px 0px 32px;
}

.zwc-tab-item.tab-li.active {
    border-radius: 12px;
    border: 1px solid rgba(34, 109, 180, 0.1);
    background: rgb(246, 248, 254);
}

.zwc-tab-item.tab-li.active button {
    color: rgb(10, 85, 235);
}

.zwc-left-tab-flex {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
    padding-top: 60px;
}

.zwc-left-tab-nav {
    max-width: 590px;
    width: 100%;
}

.zwc-left-tab-nav p {
    margin-bottom: 32px;
    max-width: 520px;
    text-align: left;
}

.zwc-left-tab-nav button::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-bottom: 1.5px solid rgb(0, 0, 0);
    border-left: 1.5px solid rgb(0, 0, 0);
    display: block;
    right: 15px;
    top: 33px;
    transform: rotate(-135deg);
    transition: 0.3s ease-in-out;
}

.zwc-tab-item.tab-li.active ::before {
    transform: rotate(-45deg);
}

.zwc-left-tab-nav button {
    background: transparent;
    padding: 25px 34px 25px 0px;
    width: 100%;
    text-align: left;
    font-family: var(--zf-primary-semibold);
    font-size: clamp(20px, 3vw, 24px);
    letter-spacing: -0.42px;
    cursor: pointer;
    border: 0px;
    position: relative;
    color: #6D6D6D;
}

.zwc-left-tab-ctn {
    max-width: 610px;
}

.zwc-left-tab-ctn img {
    width: 100%;
}

.zwc-left-hide {
    opacity: 0;
    transform: translateY(10px);
    height: 0px;
    overflow: hidden;
}

.zwc-left-active {
    opacity: 1;
    transform: translateY(0px);
    height: auto;
    transition: 0.5s ease-in-out;
}

.zwc-left-tab-image {
    overflow: hidden;
    max-width: 839px;
}

.zwc-sticky-sec {
    position: relative;
}

.zwc-accordian-wrap {
    padding: clamp(64px, 8.43vw, 162px) 0px;
}

@keyframes lineAnimation {
    0% {
        right: 100%;
    }

    100% {
        right: 0px;
    }
}

.zwc-acc-ctn {
    display: none;
}
.zwc-ai-tab-bot{
    max-width: 20%;
    position: absolute;
    bottom: -7%;
    right: -2%;
}

@media (max-width: 1280px) {
    .zwc-hero-text-wrapper, .zwc-section-header, .zwc-features-container, .zwc-faq-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .zwc-chip-special {
        margin: 0px auto;
    }

    .zwc-hero-text-wrapper {
        max-width: 800px;
        margin: 0px auto;
        text-align: center;
    }

    .zwc-hero-description p {
        margin: 0px;
        max-width: 100%;
    }

    .zwc-hero-text-left, .zwc-hero-description, .zwc-header-left, .zwc-header-description, .zwc-features-list, .zwc-feature-preview {
        width: 100%;
    }

    .zwc-section-header, .zwc-stats-left {
        gap: 0px;
    }

    .zwc-stats-left {
        margin-bottom: 30px;
    }
    .zwc-interactive-container{
        padding-top: 60px;
    }

}

@media (max-width: 1024px) {
    .zwc-faq-sec-globe .zwc-faq-lft {
        position: static;
    }
    .zwc-stats-content {
        flex-direction: column;
        max-width: 800px;
        margin: 0px auto;
    }
    .zwc-stat-card{
        min-height:auto;
        flex-wrap: wrap;
        max-width: 360px;
        width: 100%;
        flex: auto;
    }
    .zwc-stats-left {
        width: 100%;
        text-align: center;
    }

    .zwc-stats-grid {
        width: 100%;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .zwc-steps-container {
        gap: clamp(24px, 2.5vw, 48px);
    }

    .zwc-step {
        width: 100%;
    }

    .zwc-step-line {
        display: none;
    }

    .zwc-left-tab-flex {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .zwc-left-tab-nav {
        max-width: 650px;
    }

    .zwc-left-tab-ctn {
        display: none;
    }

    .zwc-accordian-wrap h2 {
        text-align: center;
        margin: 0px auto;
    }

    .zwc-faq-sec-globe .zwc-flx-col:nth-child(2) {
        max-width: 730px;
        width: 100%;
        margin-top: 30px;
    }

    .zwc-floating-robot {
        right: 0;
        bottom: -5%;
        left: inherit;
        top: inherit;
    }
    .zwc-interactive-bg{
        padding: 30px 30px 0 30px;
    }
     .zwc-nav-container {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .zwc-nav-left {
        flex-wrap: nowrap;
    }

    .zwc-nav-item a, .zwc-more-btn {
        padding: 16px 12px;
        font-size: 13px;
        white-space: nowrap;
    }
    .zwc-prompt-input{
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .zwc-prompt-box {
        width: 90%;
    }

    .zwc-steps-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .zwc-step-number {
        margin: 0px auto;
    }

    .zwc-faq-content h2 {
        width: 100%;
    }

    .zwc-filter-chips {
        flex-wrap: wrap;
    }

    .zwc-prompt-help {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .zwc-interactive-bg {
        padding: 10px 10px 0 10px;
    }
    .zwc-nav-item a, .zwc-more-btn {
        padding: 6px 10px;
    }
    .zwc-ai-tab-bot{
        bottom: -2%;
    }
    .zwc-floating-robot {
        right: -8%;
    }
}