/* ------------------------- */
.industry-specific-section {
    padding: 60px 10px;
}

.industry-specific-section .new-index-tab-head p {
    text-align: center;
}

@media (max-width: 768px) {
    .industry-specific-section {
        padding: 30px 5px;
    }
}

/* ------------------------- */
.trending-inner-CTA {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 25px;
    background: #cef7ff;
    border: 1px solid #00a9e2;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.trending-page-a-btn {
    color: #000;
    padding: 16px 25px;
    border-radius: 30px;
    background: transparent linear-gradient(58deg, rgb(142 233 255 / 32%) 0, rgb(79 230 255 / 32%) 100%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease,
        background-color 0.3s ease, outline 0.3s ease;
    border: 1px solid #a4defd;
    -webkit-clip-path: inset(0 round 10px);
    clip-path: inset(0 round 10px);
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.trending-page-a-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    border-radius: 30px;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    z-index: -1;
}

.trending-page-a-btn:hover {
    color: #000;
    box-shadow: inset 0 0 0 2px #fff;
}

.trending-page-a-btn:hover::before {
    transform-origin: 0 50%;
    transform: scale3d(1, 1, 1);
}

.trending-page-a-btn-normal {
    color: #000;
    padding: 16px 25px;
    border-radius: 30px;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, background-color 0.3s ease, outline 0.3s ease;
    border: 1px solid #a4defd;
    -webkit-clip-path: inset(0 round 10px);
    clip-path: inset(0 round 10px);
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.trending-page-a-btn-normal:hover {
    color: #000;
}

/* ------------------------- */
.trending-products-now-section {
    padding: 50px 20px;
}

.trending-products-now-main {
    padding: 30px;
    color: #fff;
    background-color: #00a9e2;
    border-radius: 30px;
    display: flex;
    gap: 25px;
    max-height: 650px;
}

.trending-products-now-contant {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 5px;
}

.trending-products-now-slider {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    overflow: hidden;
    padding-inline: 10px;
}

.trending-products-now-slider-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trending-products-now-slider-inner:nth-child(1) {
    animation: 35s trending-slider infinite linear reverse;
}

.trending-products-now-slider-inner:nth-child(2) {
    animation: 35s trending-slider infinite linear;
}

.trending-products-now-slider-inner:hover {
    animation-play-state: paused;
}

@keyframes trending-slider {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-55%);
    }
}

.trending-products-now-contant h2 {
    color: #fff !important;
    text-align: left;
}

.trending-products-now-contant-btns {
    display: flex;
    gap: 10px;
}

.trending-products-now-slider-card {
    background-color: #fff;
    border: 2px solid #fff;
    min-height: 171px;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 15px;
    padding: 15px;
}

.trending-products-now-slider-card:hover {
    box-shadow: 0 0 10px #000;
}

.trending-products-now-slider-card-heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trending-products-now-slider-card-heading h5 {
    margin-bottom: 0;
    font-size: 22px !important;
}

.trending-products-now-slider-card-heading img {
    width: 50px;
}

.trending-products-now-slider-card-text p {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .trending-products-now-main {
        flex-direction: column;
        max-height: unset;
    }

    .trending-products-now-slider,
    .trending-products-now-contant {
        width: 100%;
    }

    .trending-products-now-slider {
        grid-template-columns: repeat(1, 1fr);
    }

    .trending-products-now-slider-inner {
        flex-direction: row;
    }

    .trending-products-now-slider-card {
        min-width: 250px;
        min-height: unset;
    }

    @keyframes trending-slider {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-55%);
        }
    }
}

@media (max-width: 768px) {
    .trending-products-now-section {
        padding: 30px 0;
    }

    .trending-products-now-contant h2 {
        line-height: 35px !important;
    }
}

/* ------------------------- */
.sample-data-output-section {
    padding: 50px 20px;
}

.sample-data-output-cards-parent {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-block: 25px;
}

.sample-data-output-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    border-radius: 15px;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #00a9e2;
}

.sample-data-output-cards-parent.initial-stacked {
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 500px;
    transition: position 0.5s ease-in;
}

.sample-data-output-cards-parent.initial-stacked .sample-data-output-card {
    position: absolute;
    width: 300px;
    top: 0;
    transition: all 0.8s ease;
}

.sample-data-output-cards-parent.initial-stacked .sample-data-output-card:nth-child(1) {
    left: 20%;
    z-index: 1;
    transition: all 0.5s ease-in;
}

.sample-data-output-cards-parent.initial-stacked .sample-data-output-card:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.5s ease-in;
}

.sample-data-output-cards-parent.initial-stacked .sample-data-output-card:nth-child(3) {
    left: 60%;
    z-index: 1;
    transition: all 0.5s ease-in;
}

.sample-data-output-card .data-field-list {
    grid-template-columns: repeat(1, 1fr);
}

.sample-data-output-card .data-field-list li::before,
.data-freshness-frequency-section .data-field-list li::before {
    color: #00a9e2;
}

.sample-data-output-section .sample-data-output-card .trending-page-a-btn {
    width: 100%;
    margin-top: 25px;
}

.sample-data-output-cards-parent.stacked-to-grid .sample-data-output-card {
    opacity: 1;
    transform: translateY(0);
}

.sample-data-output-cards-parent.stacked-to-grid .sample-data-output-card:nth-child(1) {
    transition-delay: 1s;
}

.sample-data-output-cards-parent.stacked-to-grid .sample-data-output-card:nth-child(2) {
    transition-delay: 0s;
}

.sample-data-output-cards-parent.stacked-to-grid .sample-data-output-card:nth-child(3) {
    transition-delay: 1s;
}

@media (max-width: 992px) {
    .sample-data-output-cards-parent {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sample-data-output-section {
        padding: 20px;
    }

    .sample-data-output-cards-parent {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 25px;
        padding-block: 0;
    }
}

/* ------------------------- */
.why-choose-us-section {
    padding: 50px 20px;
}

.why-choose-us-cards-parent {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-choose-us-card {
    padding: 25px;
    border: 1px solid #00a9e2;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-us-card img {
    width: 60px;
}

.why-choose-us-card p {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .why-choose-us-cards-parent {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 20px;
    }

    .why-choose-us-cards-parent {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
    }

    .why-choose-us-card {
        gap: 10px;
    }
}

/* ------------------------- */
.data-freshness-frequency-section {
    padding: 50px 20px;
}

.data-freshness-frequency-main {
    display: flex;
    gap: 40px;
    background-color: #cef7ff;
    border-radius: 15px;
    padding: 40px;
    margin-top: 25px;
}

.data-freshness-frequency-main-inner:nth-child(1) {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.data-freshness-frequency-main-inner:nth-child(2) {
    width: 30%;
}

.data-freshness-frequency-tabs-btns-parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.data-freshness-frequency-tabs-btn {
    padding: 15px;
    background-color: transparent;
    border-radius: 15px;
    font-weight: 500;
    border: 1px solid #00a9e2;
}

.data-freshness-frequency-tabs-btn.current-rate {
    color: #fff;
    background-color: #00a9e2;
}

.data-freshness-frequency-range-btns-parent {
    display: flex;
    gap: 25px;
}

.data-freshness-frequency-tabs-iamges-parent img {
    width: 100%;
    height: 100%;
    display: none;
}

.data-freshness-frequency-tabs-content-card {
    display: none;
}

.data-freshness-frequency-tabs-content-card p {
    margin-bottom: 0;
}

.data-freshness-frequency-tabs-content-card.current-rate-card {
    display: block;
}

.data-freshness-frequency-tabs-iamges-parent img.current-rate-img {
    display: block;
}

@media (max-width: 992px) {
    .data-freshness-frequency-main {
        flex-direction: column;
        gap: 25px;
    }

    .data-freshness-frequency-main-inner:nth-child(1),
    .data-freshness-frequency-main-inner:nth-child(2) {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .data-freshness-frequency-section {
        padding: 20px;
    }

    .data-freshness-frequency-main {
        padding: 15px;
    }

    .data-freshness-frequency-tabs-btns-parent {
        gap: 10px;
    }

    .data-freshness-frequency-tabs-btn {
        padding: 12px;
    }
}

/* ------------------------- */
.i-web-faq-design-zz-section {
    padding: 50px 10px;
    background: white;
    position: relative;
    overflow: hidden;
}

.i-web-faq-design-zz-container {
    position: relative;
    z-index: 2;
}

.i-web-faq-design-zz-section .new-index-tab-head h2.i-web-faq-design-zz-title {
    text-align: left;
}

.i-web-faq-design-zz-title-highlight {
    font-weight: 600;
    color: #00a9e2;
}

.i-web-faq-design-zz-description {
    font-size: 1.1rem;
    margin: 20px 0 40px 0;
    line-height: 1.6;
}

.i-web-faq-design-zz-accordion {
    border: none;
}

.i-web-faq-design-zz-accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e5e5;
}

.i-web-faq-design-zz-accordion-header {
    border: none;
    background: transparent;
}

.i-web-faq-design-zz-accordion-button {
    background: transparent;
    border: none;
    color: black;
    font-size: 22px;
    font-weight: 500;
    padding: 24px 28px;
    width: 100%;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.i-web-faq-design-zz-accordion-button:not(.collapsed) {
    background: rgba(59, 130, 246, 0.05);
    color: #3b82f6;
    box-shadow: none;
}

.i-web-faq-design-zz-accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
    z-index: 3;
}

.i-web-faq-design-zz-accordion-button::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-left: none;
    border-top: none;
    transform: rotate(45deg) !important;
    transition: transform 0.3s ease;
    position: absolute;
    right: 28px;
    top: 48%;
    margin-top: -6px;
    background-image: none !important;
}

.i-web-faq-design-zz-accordion-button.collapsed::after {
    transform: rotate(-135deg) !important;
    margin-top: -2px;
}

.i-web-faq-design-zz-accordion-body {
    padding: 0 28px 12px 28px;
    color: #000000ff;
    font-size: 1rem;
    line-height: 1.6;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.i-web-faq-design-zz-accordion-collapse {
    transition: height 0.35s ease;
    background: white;
}

.i-web-faq-design-zz-accordion-item {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.i-web-faq-design-zz-accordion-item:nth-child(1) {
    animation-delay: 0.1s;
}

.i-web-faq-design-zz-accordion-item:nth-child(2) {
    animation-delay: 0.2s;
}

.i-web-faq-design-zz-accordion-item:nth-child(3) {
    animation-delay: 0.3s;
}

.i-web-faq-design-zz-accordion-item:nth-child(4) {
    animation-delay: 0.4s;
}

.i-web-faq-design-zz-accordion-item:nth-child(5) {
    animation-delay: 0.5s;
}

.i-web-faq-design-zz-accordion-item:nth-child(6) {
    animation-delay: 0.6s;
}

.i-web-faq-design-zz-accordion-button:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

@media (max-width: 992px) {
    .i-web-faq-design-zz-section {
        padding: 60px 0;
    }

    .i-web-faq-design-zz-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .i-web-faq-design-zz-container {
        max-width: 890px;
    }
}

@media (max-width: 768px) {
    .i-web-faq-design-zz-section {
        padding: 20px 5px;
    }

    .i-web-faq-design-zz-title {
        font-size: 2.2rem;
    }

    .i-web-faq-design-zz-description {
        font-size: 1rem !important;
        margin: 15px 0 20px 0;
    }

    .i-web-faq-design-zz-accordion-button {
        font-size: 18px;
        padding: 20px 24px;
        line-height: 28px;
    }

    .i-web-faq-design-zz-accordion-button::after {
        right: 24px;
    }

    .i-web-faq-design-zz-accordion-body {
        padding: 0 24px 24px 24px;
    }
}

@media (max-width: 576px) {
    .i-web-faq-design-zz-title {
        font-size: 1.8rem;
    }

    .i-web-faq-design-zz-accordion-button {
        padding: 18px 20px 18px 5px;
    }

    .i-web-faq-design-zz-accordion-button::after {
        right: 2px;
    }

    .i-web-faq-design-zz-accordion-body {
        padding: 0 20px 20px 5px;
    }
}

/* ------------------------- */
.iweb-marqueeslider-des-section {
    padding: 50px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iweb-marqueeslider-des-section .container {
    background: #00a9e2;
    border-radius: 30px;
    padding: 30px;
}

.iweb-marqueeslider-des-section-content.new-index-tab-head {
    margin-inline: auto;
    text-align: center;
    color: #fff !important;
    margin-bottom: 60px;
}

.iweb-marqueeslider-des-section-content.new-index-tab-head h2 {
    color: #fff !important;
    margin-bottom: 10px;
}

.iweb-marqueeslider-des-section-whole-icon-container {
    padding-inline: 15px;
}

.iweb-marqueeslider-des-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.iweb-marqueeslider-des-icon {
    width: 60px;
    height: 60px;
    background: #0b1221;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.iweb-marqueeslider-des-icon img {
    width: 32px;
    height: 32px;
}

.iweb-marqueeslider-des-icon:hover {
    background: #1a233a;
    transform: scale(1.05);
}

.iweb-no-text-decoration {
    text-decoration: none !important;
}

.iweb-marquee-slider-section-design-logos {
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
}


.iweb-marqueeslider-des-icons .iweb-marquee-slider-section-design-logos:after,
.iweb-marquee-slider-section-design-logos:before {
    display: none;
}

/* Pause for normal direction */
.iweb-marquee-slider-section-design-logos:hover .iweb-marquee-slider-section-design-logo_items {
    animation-play-state: paused;
}

/* Pause for reverse direction as well */
.iweb-marqueeslider-des-icons:nth-child(2) .iweb-marquee-slider-section-design-logos:hover .iweb-marquee-slider-section-design-logo_items {
    animation-play-state: paused;
}



.iweb-marquee-slider-section-design-logo_items {
    display: inline-block;
    animation: 35s iweb-marquee-slider-section-design-slides infinite linear;
}

.iweb-marqueeslider-des-icons:nth-child(2) .iweb-marquee-slider-section-design-logo_items {
    animation: 35s iweb-marquee-slider-section-design-slides-reverse infinite linear;
}

.iweb-marquee-slider-section-design-logos .iweb-marquee-slider-section-design-logo_items {
    display: flex;
    gap: 25px;
}

.iweb-marquee-slider-section-design-logo_items a.iweb-no-text-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.iweb-marqueeslider-des-icons .iweb-marquee-slider-section-design-logo_items img {
    display: block;
    max-width: 50px !important;
    max-height: 50px;
    margin-inline: 0;
    border-radius: 25px;
}

@keyframes iweb-marquee-slider-section-design-slides-reverse {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .iweb-marqueeslider-des-section {
        padding: 20px 10px;
    }

    .iweb-marqueeslider-des-section .container {
        padding: 25px 10px;
    }

    .iweb-marqueeslider-des-section-content.new-index-tab-head {
        margin-bottom: 30px;
    }

    .iweb-marqueeslider-des-icon {
        width: 50px;
        height: 50px;
    }

    .iweb-marqueeslider-des-icon img {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 500px) {
    .iweb-marquee-slider-section-design-logo_items {
        animation: 10s iweb-marquee-slider-section-design-slides infinite linear;
    }

    .iweb-marqueeslider-des-icons:nth-child(2) .iweb-marquee-slider-section-design-logo_items {
        animation: 10s iweb-marquee-slider-section-design-slides-reverse infinite linear;
    }
}

/* ------------------------- */
.trending-new-geo-coverage-map-icon-main {
    position: relative;
    width: 100%;
    padding: 50px 10px;
    text-align: center;
}

.trending-new-geo-coverage-map-container {
    position: relative;
    display: inline-block;
    width: 80%;
    max-width: 1000px;
}

.trending-new-geo-coverage-map-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
}

.trending-new-geo-coverage-map-active-logos {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    top: 0;
    left: 0;
}

.trending-new-geo-coverage-map-active-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.trending-new-geo-coverage-map-active-logo.newmap-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.trending-new-geo-coverage-map-logos-wrapper {
    margin: 30px auto 0;
    width: 80%;
    max-width: 700px;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.trending-new-geo-coverage-map-logos {
    display: flex;
    flex-direction: column;
    transition: transform 0.8s ease;
}

.trending-new-geo-coverage-map-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    height: 80px;
    align-items: center;
}

.trending-new-geo-coverage-map-logo {
    width: 100%;
    height: 100%;
    opacity: 0;
    margin-inline: auto;
    border-right: 1px solid #00a9e2;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.trending-new-geo-coverage-map-logo:last-child {
    border-right: 1px solid #fff;
}

.trending-new-geo-coverage-map-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.trending-new-geo-coverage-map-logo.newmap-active {
    transform: scale(1.1);
    opacity: 1;
}

@media (max-width:768px) {
    .trending-new-geo-coverage-map-icon-main {
        padding: 20px 10px;
    }

    .trending-new-geo-coverage-map-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .trending-new-geo-coverage-map-logo img {
        width: 50px;
        height: 50px;
    }

    .trending-new-geo-coverage-map-container {
        width: 95%;
    }

    .trending-new-geo-coverage-map-active-logo {
        width: 40px;
        height: 40px;
    }

    .trending-new-geo-coverage-map-logos-wrapper {
        width: 95%;
    }
}

/* ------------------------- */
.understanding-challenges-section {
    padding: 50px 10px;
}

.understanding-challenges-main {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.understanding-challenges-tabs-parent {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.understanding-challenges-tab-btn {
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #ececec;
    cursor: pointer;
}

.understanding-challenges-tab-btn-icon {
    height: 45px;
    width: 45px;
    padding: 5px;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 10px;
}

.understanding-challenges-tab-btn-icon img {
    height: 100%;
    width: 100%;
}

.understanding-challenges-tabs-content-parent {
    width: 70%;
}

.understanding-challenges-tabs-content {
    display: none;
    grid-template-columns: 1fr 55%;
    gap: 25px;
    padding: 30px;
    border-radius: 30px;
}

.understanding-challenges-tabs-content h4 {
    font-size: 26px !important;
    margin-bottom: 15px;
}

.understanding-challenges-tabs-content img {
    height: 100%;
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

.understanding-challenges-tabs-content:nth-child(1) {
    background-color: #e7f5fd;
}

.understanding-challenges-tabs-content:nth-child(2) {
    background-color: #ebedfd;
}

.understanding-challenges-tabs-content:nth-child(3) {
    background-color: #e8fdf7;
}

.understanding-challenges-tabs-content.challenge-active {
    display: grid;
}

.understanding-challenges-tab-btn.challenge-active {
    background-color: #00a9e2;
    color: #fff !important;
    border: 2px solid #00a9e2;
}

.understanding-challenges-tab-btn.challenge-active h4.understanding-challenges-tab-btn-h4 {
    color: #fff !important;
}

@media (max-width: 1400px) {
    .understanding-challenges-tabs-content {
        min-height: 622px;
    }
}

@media (max-width: 1200px) {
    .understanding-challenges-tabs-content {
        min-height: 586px;
    }
}

@media (max-width: 992px) {
    .understanding-challenges-main {
        flex-direction: column;
        gap: 20px;
    }

    .understanding-challenges-tabs-parent {
        width: 100%;
        flex-direction: row;
    }

    .understanding-challenges-tabs-content-parent {
        width: 100%;
    }

    .understanding-challenges-tabs-content {
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .understanding-challenges-section {
        padding: 30px 10px;
    }

    .understanding-challenges-tabs-parent {
        flex-direction: column;
        gap: 10px;
    }

    .understanding-challenges-tabs-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .understanding-challenges-tab-btn {
        padding: 15px;
    }

    .understanding-challenges-tab-btn p {
        margin-bottom: 0;
    }

    .understanding-challenges-tabs-content h4 {
        font-size: 22px !important;
    }

    .understanding-challenges-main {
        gap: 25px;
        margin-top: 25px;
    }

    .understanding-challenges-tab-btn-icon {
        display: none;
    }
}

/* ------------------------- */
.trending-product-dashboard-section {
    padding: 50px 10px;
}

.trending-price-dashboard-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding-inline: 60px;
    position: relative;
}

.trending-price-dashboard-video-main {
    position: sticky;
    top: 125px;
    align-self: start;
}

.trending-price-dashboard-video-main video {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 0 5px #ececec;
}

.trending-price-dashboard-content-main {
    display: flex;
    flex-direction: column;
}

.trending-price-dashboard-content-box {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 30px;
    padding: 20px;
    padding-right: 40px
}

.trending-price-dashboard-content-main.new-index-tab-head h2 {
    text-align: left;
}

.trending-price-dashboard-content-box ul li {
    margin-top: 15px;
}

@media (max-width: 992px) {
    .trending-price-dashboard-inner {
        grid-template-columns: repeat(1, 1fr);
    }

    .trending-price-dashboard-video-main {
        position: static;
    }

    .trending-price-dashboard-content-main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .trending-price-dashboard-content-box {
        min-height: unset;
        padding: 20px;
        border: 1px solid #ececec;
        border-radius: 20px;
        justify-content: space-between;
        gap: 20px;
    }

    .trending-price-dashboard-content-main.new-index-tab-head h2 {
        font-size: 22px;
        line-height: 30px !important;
    }
}

@media (max-width: 768px) {
    .trending-product-dashboard-section {
        padding: 20px 10px;
    }

    .trending-price-dashboard-inner {
        gap: 25px;
        padding-inline: 10px;
    }

    .trending-price-dashboard-content-main {
        grid-template-columns: repeat(1, 1fr);
    }

    .trending-price-dashboard-content-box {
        gap: 10px;
    }

    .trending-price-dashboard-content-box p {
        margin-bottom: 0;
    }

    .trending-price-dashboard-content-box ul {
        padding-left: 1rem;
        margin-bottom: 0;
    }

    .trending-price-dashboard-content-box ul li {
        margin-top: 5px;
    }
}

/* ------------------------- */
.trending-inner-use-cases-section {
    padding-inline: 15px;
}

.trending-inner-use-cases-section .new-index-tab-head {
    text-align: center;
    margin-inline: auto;
}

.trending-inner-use-cases-new {
    position: relative;
    height: 500vh;
}

.trending-inner-use-cases-new-steps-content {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.trending-inner-use-cases-new-progress-line {
    position: absolute;
    top: 50%;
    right: 22%;
    transform: translateY(-50%);
    width: 2px;
    height: 250px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.trending-inner-use-cases-new-progress-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #00a9e2, #a4defd);
    transition: height 0.5s ease;
}

.trending-inner-use-cases-new-progress-steps {
    position: absolute;
    top: 0;
    left: -15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trending-inner-use-cases-new-progress-step {
    width: 32px;
    height: 32px;
    border: 2px solid #00a9e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.5s ease;
    position: relative;
    rotate: -30deg;
}

.trending-inner-use-cases-new-progress-step.active-case-new {
    border-color: #00a9e2;
    background: #00a9e2;
    color: #fff;
    transform: scale(1.1);
    rotate: 0deg;
}


.trending-inner-use-cases-new-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0 160px;
    padding: 0 80px;
    gap: 60px;
    align-items: center;
}


.trending-inner-use-cases-new-phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    opacity: 0;
}

.trending-inner-use-cases-new-phone-mockup.active-case-new {
    animation: slideInUpFade 0.8s ease forwards;
}

.trending-inner-use-cases-new-phone-mockup.active-case-new .trending-inner-use-cases-new-phone-image {
    animation: slideInUpFade 0.8s ease forwards;
}

.trending-inner-use-cases-new-phone-frame {
    width: 280px;
    height: 560px;
    background: transparent;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0px 0px 25px #00a5dd;
    position: relative;
}

.trending-inner-use-cases-new-phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trending-inner-use-cases-new-phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}


.trending-inner-use-cases-new-step-content {
    opacity: 0;
}

.trending-inner-use-cases-new-step-content.active-case-new {
    animation: slideInUpFade 0.8s ease forwards;
}

@keyframes slideInUpFade {
    0% {
        transform: translateY(60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.trending-inner-use-cases-new-step-number {
    font-size: 20px;
    color: #00a9e2;
    font-weight: 600;
    margin-bottom: 20px;
}

.trending-inner-use-cases-new-step-content.new-index-tab-head h2 {
    text-align: left;
    margin-bottom: 20px;
}

.trending-inner-use-cases-new-step-content.new-index-tab-head p {
    margin-bottom: 40px;
}

@media (max-width: 1725px) {
    .trending-inner-use-cases-new-progress-line {
        right: 18%;
    }
}

@media (max-width: 1600px) {
    .trending-inner-use-cases-new-content-grid {
        margin: 0 auto;
    }

    .trending-inner-use-cases-new-progress-line {
        right: 50px;
    }
}

@media (max-width: 768px) {
    .trending-inner-use-cases-new-content-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 20px;
    }

    .trending-inner-use-cases-new-step-number {
        margin-bottom: 10px;
    }

    .trending-inner-use-cases-new-phone-mockup {
        max-width: 90%;
    }

    .trending-inner-use-cases-new-progress-line {
        top: 48%;
        right: 30px;
        height: 200px;
    }

    .trending-inner-use-cases-new-phone-frame {
        width: 400px;
        height: 350px;
        max-width: 100%;
        box-shadow: none;
    }
}

@media (max-width: 575px) {
    .trending-inner-use-cases-new-progress-line {
        top: 78%;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        rotate: -90deg;
    }

    .trending-inner-use-cases-new-progress-step {
        rotate: 70deg;
    }

    .trending-inner-use-cases-new-progress-step.active-case-new {
        rotate: 90deg;
    }

    .trending-inner-use-cases-new-phone-frame {
        width: 320px;
        height: 200px;
    }
}

/* ------------------------- */
.trending-product-dashboard-sticky-dots-nav {
    width: max-content;
    position: fixed;
    right: 20px;
    top: 400px;
    transform: translateY(-50%);
    z-index: 1000;
    padding: 18px;
    border-radius: 25px;
    background-color: #fff;
    box-shadow: 0 0 5px #ececec;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease, transform 0.4s ease;
}

.trending-product-dashboard-sticky-dots-nav.fadeInRight {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.trending-product-dashboard-sticky-dots-nav.fadeOutRight {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(40px);
}

.trending-product-dashboard-sticky-dots-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trending-product-dashboard-sticky-dots-nav ul li {
    width: 25px;
    height: 25px;
    cursor: pointer;
    filter: grayscale(1);
}

.trending-product-dashboard-sticky-dots-nav ul li img {
    height: 100%;
    width: 100%;
}

.trending-product-dashboard-sticky-dots-nav ul li.active-dashboard-point {
    filter: grayscale(0);
}


@media (max-width: 992px) {
    .trending-product-dashboard-sticky-dots-nav {
        display: none;
    }
}


/* ------------------------- */