/* =========================================================
   Root Variables
   ========================================================= */
:root {
    /* Colors */
    --primary-color: #484848;
    --secondary-color: #111111;
    ---gray-color: #777777;
    --light-gray-color: #646161;
    --accent-color: #f72f2f;
    --yellow-accent-color: #fed602;
    --dark-clr: #292929;
    --background-color: #0c0c0c;
    --light-bg-color: #f8f8f8;
    --black-color: #000000;
    --border-clr: #e6e9eb;
    --white-color: #ffffff;

    /* New Colors */
    --home-bg-gray: #f1f0ee;
    --yellow-title: #e7b008;

    /* Typography */
    --font-family-base: "Heebo", sans-serif;

    /* Responsive Font Sizes using clamp(min, preferred, max) */
    --font-size-small: clamp(14px, 1.4vw, 16px);
    --font-size-base: clamp(16px, 1.6vw, 18px);
    --font-size-md: clamp(22px, 2.2vw, 30px);
    --font-size-lg: clamp(28px, 2.8vw, 36px);
    --font-size-xl: clamp(34px, 3.4vw, 42px);
    --font-size-h4: clamp(22px, 2vw, 24px);
    --font-size-body: 16px;
    --line-height-small: 1;
    --line-height-base: 1.2;
    --line-height-md: 1.3;
    --line-height-lg: 1.5;

    --transition: 0.3s ease all;
    --yellow-shadow: 0px 0px 10px 4px #fed6021f;

    /* Border Radius */
    --border-radius-base: 20px;
    --border-radius-lg: 30px;
    --border-radius-xl: 60px;

    /* Spacing */
    --section-padding: 72px;
    --section-pd-md: clamp(40px, 3vw, 48px);
}

/* =========================================================
   Global Defaults
   ========================================================= */
body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    line-height: var(--line-height-lg);
    font-size: var(--font-size-body);
    line-height: var(--line-height-lg);
    font-size: var(--font-size-body);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* =========================================================
   Global Layout
   ========================================================= */
.site-container {
    width: min(100%, 1240px);
    padding-inline: 20px;
    margin-inline: auto;
}
.cursor-pointer {
    cursor: pointer;
}


p + p {
    margin-top: clamp(8px, 1vw, 12px);
}

/* =========================================================
   Typography Utilities
   ========================================================= */

h1 {
    color: var(--secondary-color);
    font-size: var(--font-size-xl);
    line-height: var(--line-height-base);
    font-weight: 700;
    margin-bottom: 12px;
}

h2,
.h2 {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-base);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
h2 span {
    color: #F72F2F;
}
h3,
.h3 {
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
    font-weight: 700;
    color: var(--dark-clr);
    margin-bottom: 10px;
}
h4,
.h4 {
    font-weight: 500;
    font-size: var(--font-size-h4);
    line-height: var(--line-height-md);
    color: var(--dark-clr);
}
h5,
.h5 {
    font-size: var(--font-size-body);
    color: var(--dark-clr);
}

span.title-yellow {
    color: var(--accent-color);
}
span.display-block {
    display: block;
}
.font-800 {
    font-weight: 800;
}
.font-700 {
    font-weight: 700;
}
.fonts-outfit {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}
.pad-55-0 {
    padding: 60px 0;
}
.pad-b-55 {
    padding-bottom: 60px;
}
.pad-t-55 {
    padding-top: 60px;
}
.fonts-700 {
    font-weight: 700;
}
.gray-gri-bg {
    background-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1),
        rgba(241, 240, 238, 1)
    );
}
.bg-img-yellow {
    background-image: url(/images/home/build-EminiQ-bg.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}
h2.title-font-36 {
    font-size: 36px;
}

.site-btn {
    padding: 12px 20px;
    display: inline-block;
    color: var(--dark-clr);
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}
.yellow-accent {
    background-color: var(--accent-color);
    color: var(--white-color);
}
.site-btn.yellow-accent:hover {
    background: var(--background-color);
    color: var(--white-color);
}
.site-btn.hover-white:hover {
    background: #fff;
    color: #000;
}
.sub-title,
.sub-title-red {
    font-weight: 500;
    font-size: var(--font-size-small);
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-block-end: 12px;
    letter-spacing: 0.15em;
}
.border-sec {
    border-top-right-radius: var(--border-radius-xl);
    border-top-left-radius: var(--border-radius-xl);
}
.grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
.red-clr {
    color: var(--accent-color);
}
.sec-pd {
    padding-block: var(--section-padding);
}
.light-bg {
    background-color: var(--light-bg-color);
}
.block-grid {
    gap: 24px;
}
.odd-pd {
    padding-block: 72px 144px;
}
.mt-72 {
    margin-top: -72px;
}

/* Home Page  start from here */

/* .white-gradient:before {
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgb(255 255 255 / 36%) 3%, #ffffff 105%);
    width: 100%;
    height: 13%;
    height: 13%;
    position: absolute;
} */
/* .banner-ai-video {
    clip-path: polygon(
        94.924% 0%,
        5.076% 0%,
        5.076% 0%,
        3.964% 0.148%,
        3.018% 0.561%,
        2.224% 1.192%,
        1.572% 1.994%,
        1.051% 2.921%,
        0.649% 3.926%,
        0.354% 4.962%,
        0.155% 5.982%,
        0.041% 6.94%,
        0% 7.789%,
        0% 92.211%,
        0% 92.211%,
        0.103% 94.094%,
        0.39% 95.661%,
        0.828% 96.936%,
        1.386% 97.945%,
        2.03% 98.715%,
        2.729% 99.272%,
        3.449% 99.64%,
        4.158% 99.846%,
        4.824% 99.916%,
        5.415% 99.874%,
        44.755% 99.874%,
        44.755% 99.874%,
        45.974% 99.724%,
        47.004% 99.305%,
        47.857% 98.663%,
        48.548% 97.848%,
        49.091% 96.906%,
        49.5% 95.885%,
        49.79% 94.833%,
        49.974% 93.796%,
        50.068% 92.822%,
        50.085% 91.96%,
        50.085% 88.945%,
        50.085% 88.945%,
        50.21% 86.504%,
        50.56% 84.518%,
        51.094% 82.941%,
        51.774% 81.728%,
        52.559% 80.832%,
        53.41% 80.209%,
        54.288% 79.812%,
        55.153% 79.596%,
        55.964% 79.514%,
        56.684% 79.523%,
        94.67% 79.523%,
        94.67% 79.523%,
        95.838% 79.372%,
        96.833% 78.953%,
        97.667% 78.312%,
        98.351% 77.496%,
        98.898% 76.555%,
        99.32% 75.534%,
        99.629% 74.481%,
        99.838% 73.444%,
        99.957% 72.471%,
        100% 71.608%,
        100% 7.538%,
        100% 7.538%,
        99.904% 5.964%,
        99.635% 4.609%,
        99.223% 3.459%,
        98.701% 2.501%,
        98.096% 1.721%,
        97.442% 1.105%,
        96.766% 0.638%,
        96.102% 0.308%,
        95.477% 0.1%,
        94.924% 0%
    );
    background-color: var(--background-color);
} */

section.banner-section {
    background-image: url(/images/home/home-hero-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px 0;
}
.banner-section .banner-col p {
    max-width: 590px;
    margin-bottom: 15px;
}
.banner-section .banner-col p + p {
    margin-bottom: 0;
}
.banner-section .sub-title {
    width: min(100%, 483px);
}
.banner-col-right .product-video {
    position: relative;
}
.new-hero-section {
    overflow: hidden;
}
.product-video .banner-ai-video video.ai-video-lisa {
    width: 100%;
    height: 388px;
    object-fit: cover;
    border-radius: 20px;
}
.new-hero-section .slick-list.draggable .slick-track {
    margin-inline: 0px !important;
}

.new_hero-inner {
    position: relative;
    padding-block: 130px;
}
.new_hero_slider .new_hero-inner video {
    bottom: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.hero-video-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-video-slider .hero-bg-video {
    transform: translateX(100%);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-video-slider .hero-bg-video.is-active {
    transform: translateX(0);
    z-index: 2;
}

.hero-video-slider .hero-bg-video.is-exit {
    transform: translateX(-100%);
    z-index: 1;
}
.new_hero_slider .slick-slide {
    padding: 0px!important;
}
.new_hero_slider .new_hero-inner .container {
    z-index: 2;
    position: relative;
}
.new_hero-inner::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100vw;
    z-index: 2;
    background:
        linear-gradient(0deg, rgba(3, 3, 10, 0.3), rgba(3, 3, 10, 0.3)),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.7) 38.85%,
            rgba(102, 102, 102, 0) 152.6%
        );
}
.new_hero_slider .new_hero-inner .new-hero-col {
    max-width: 654px;
}
.new_hero_slider .new_hero-inner .new-hero-col h1 {
    font-family: Outfit;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: 0%;
    color: rgb(255, 255, 255);
}
.new-hero-rw {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.h_certificates-sec.certificates-slider.slick-initialized.slick-slider {
    max-width: 390px;
    margin-right: 0px!important;
}

.top-hero-text-viewport,
.bottom-hero-text-viewport {
    overflow: hidden;
    position: relative;
}

.top-hero-text-viewport {
    min-height: 360px;
}
.bottom-hero-text-viewport {
    min-height: 50px;
}

.top-hero-text-outer,
.bottom-hero-text-outer {
    position: relative;
    width: 100%;
    height: 100%;
}

.top-hero-text,
.bottom-hero-text {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1s ease;
    pointer-events: none;
    visibility: hidden;
}

.top-hero-text {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 20px;
    transform: translateX(100%);
}

.bottom-hero-text {
    min-height: 40px;
    display: flex;
    align-items: center;
    margin-top: 0;
    transform: translateY(40px);
}

.top-hero-text.is-active,
.bottom-hero-text.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
    visibility: visible;
}

.top-hero-text.is-active {
    transform: translateX(0);
}

.bottom-hero-text.is-active {
    transform: translateY(0);
}

.top-hero-text.is-exit,
.bottom-hero-text.is-exit {
    opacity: 0;
    z-index: 1;
    visibility: visible;
}

.top-hero-text.is-exit {
    transform: translateX(-100%);
}

.bottom-hero-text.is-exit {
    transform: translateY(-40px);
}

.bottom-hero-text-wrapper {
    margin-top: 40px;
}

.hero-col.new-right-col {
    display: flex;
    align-items: center;
    margin-top: 150px;
}
.bottom-hero-text {
    margin-top: 0;
}

.new_hero_slider .new_hero-inner .new-hero-col .bottom-hero-text p {
    color: #AAA5A5;
    position: relative;
    max-width: 443px;
    padding-left: 20px;
    margin: 0;
}

.new_hero_slider .new_hero-inner .new-hero-col .bottom-hero-text p:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 5px;
    background: #E7B008;
    border-radius: 10px;
    left: 0;
}
.new_hero_slider .new_hero-inner .new-hero-col p {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0%;
    color: rgb(255, 255, 255);
}
.new-hero-btn-wrapper {
    display: flex;
    align-items: center;
    margin-top: 35px;
    gap: 20px;
}
.new-hero-btn-wrapper .primary-btn {
    color: rgb(255, 255, 255);
    background: rgb(247, 47, 47);
}
.new-hero-btn-wrapper .secondary-btn {
    color: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
}
.banner-col-right .product-video .ai-avatar-btnn {
    position: absolute;
    background: #fff;
    display: flex;
    width: auto;
    align-items: center;
    border-radius: 42px;
    gap: 10px;
    border: 1px solid #e6e9eb;
    padding: 6px 23px 6px 8px;
    top: 20px;
    left: 20px;
}
.banner-col-left .banner__cta {
    position: absolute;
    top: 40px;
    right: 50px;
}
.banner-col-left .banner__cta img.eminiq-section__avatar-img {
    width: 100px;
}
.ai-avatar-btnn .ai-avatar-text h6 {
    font-weight: 600;
    font-size: 14px;
    line-height: 22.92px;
    color: var(--secondary-color);
}
.ai-avatar-btnn .ai-avatar-text h4 {
    font-weight: 700;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.ai-avatar-btnn .consultation-circle {
    padding-left: 14px;
}
.ai-avatar-btnn .ai-avatar-btnn-img img {
    box-shadow: 0px -0.46px 9.17px 0px #00000026;
    border-radius: 50%;
    border: 3.21px solid var(--white-color);
    opacity: 1;
}
.banner-section .play-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 50%;
    right: 20px;
    bottom: 20px;
}
.banner-section .banner-rw {
    display: grid;
    grid-template-columns: 660px 1fr;
    align-items: center;
    gap: 50px;
    margin-top: 35px;
}
.banner-section .banner-rw .banner-col-left {
    position: relative;
}

.banner-section .banner-col .sub-title {
    color: var(--secondary-color);
    font-size: 16px;
}
.banner-section .banner-col h1.home-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 600;
}
.banner-section .play-btn i {
    color: var(--yellow-accent-color);
    font-size: 24px;
    line-height: 1;
}
.banner-section .full-screen-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    margin: 0;
    line-height: 1;
    width: 60px;
    height: 60px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}
.banner-section .full-screen-icon img {
    position: absolute;
    top: 58%;
    transform: translate(-50%, -50%);
    left: 50%;
}
.banner-section .full-screen-icon i {
    color: var(--white-color);
}
section.home-logo-sec {
    padding: 30px 0 0;
    background: #f8f7f6;
}
section.home-logo-sec .hero-more-text {
    margin-bottom: 30px;
    padding: 20px 20px;
    background-image: url(/images/home/sec-2bg.webp);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
}
section.home-logo-sec .hero-more-text p {
    color: #fff;
    position: relative;
    z-index: 1;
    padding-left: 20px;
}
section.home-logo-sec .hero-more-text p:after {
    content: "";
    position: absolute;
    background: #e7b008;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
}

/* certificate logo section css start from here */
.h_certificates-sec {
    margin: 0 auto;
    justify-content: space-between;
    overflow: hidden;
    width: min(980px, 100%);
    flex-wrap: wrap;
    row-gap: 20px;
}
.h_certificates-sec.certificates-slider {
    width: min(100%, 384px);
    overflow: visible;
}
.h_certificates-sec.certificates-slider .slick-list {
    margin: 0 -8px;
    overflow: hidden;
}
.h_certificates-sec.certificates-slider .slick-track {
    display: flex;
    align-items: stretch;
}
.h_certificates-sec.certificates-slider .slick-slide {
    height: inherit;
}
.h_certificates-sec.certificates-slider .slick-slide > div {
    height: 100%;
}
.h_certificates-sec.certificates-slider .certi-logo {
    width: auto !important;
    max-width: 384px;
    margin: 0 8px;
    align-items: center;
    justify-content: center;
}
.h_certificates-sec.certificates-slider .slick-list.draggable .slick-track .slick-slide {
    padding-right: 0;
}
.h_certificates-sec .certi-logo img {
    width: 100%;
    max-width: 168px;
    height: 5.625rem;
    filter: grayscale(1);
    transition: var(--transition);
    display: inline-block;
    object-fit: contain;
    margin: 0 auto;
}

.h_certificates-sec .certi-logo img:hover {
    filter: grayscale(0);
}
.logo-sec {
    padding-bottom: var(--section-pd-md);
}
/*Promis section section css start from here */
.promise-sec {
    background-size: cover;
    background-color: #F1F0EE;
}
.promise-block {
    width: min(984px, 100%);
    margin: auto;
    margin-top: 2rem;
}
.promise-sec-outer .why-counter-grid .block-item {
    background: var(--white-color);
    padding: 25px 20px;
    box-shadow: none;
    border-radius: 15px;
    border: 2px solid #EEEEEE;
}

.promise-sec-outer .why-counter-grid .block-item:hover {
    border: 2px solid var(--accent-color);
}
.promise-block .promise-block-team {
    border: 1px solid var(---gray-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    gap: 0.625rem;
    color: var(--white-color);
    align-items: center;
    min-height: 84px;
    transition: var(--transition);
}
.promise-block .promise-block-team:hover {
    box-shadow: var(--yellow-shadow);
    background: var(--white-color);
}
.promise-block .promise-block-team:hover:hover {
    color: var(--secondary-color);
}
.grid-blox-outer h3 {
    font-family: Outfit;
    font-weight: 500;
    color: #292929;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 0;
}
.promise-block .promise-block-team p {
    font-size: 16px;
    letter-spacing: -0.5px;
}

.promise-block .promise-block-team .icon i {
    color: var(--yellow-accent-color);
}

.promise-sec-outer .promise-sec-inner {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 127px;
    gap: 30px;
}
.grid-blox-outer {
    margin-block-start: 30px;
    padding-inline: 0;
}
.promise-sec-outer .promise-sec-inner .promise-col {
    max-width: 963px;
}
.why-rw .why-content {
    padding-top: 10px;
}
.why-rw .why-content p {
    max-width: 517px;
}
.promise-sec .why-counter-grid {
    margin-top: 20px;
}
.why-sec .why-counter-item {
    border: 1px solid #eeeeee;
    border-radius: 15px;
    transition: var(--transition);
    padding: 20px 25px;
    background: #fff;
    box-shadow: 0 6px 22px -3px #eeeeee;
}
.why-counter-item:hover {
    background: var(--yellow-accent-color);
}
.why-sec .why-counter-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
}
.why-sec .why-counter-grid {
    padding: 0 20px;
}
.why-counter-item h4 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
}
.why-rw {
    display: flex;
    gap: 40px;
}
.promise-sec-outer .why-counter-grid .block-item .up-to-text, .up-to {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}
.case-study-header h2 {
    font-family: 'Outfit';
}
.why-rw .why_rw-col {
    width: 50%;
}
.why-rw .why-img img {
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}
section.eminiq-section {
    background-image: linear-gradient(
        to bottom,
        rgba(241, 240, 238, 1),
        rgba(241, 240, 238, 1)
    );
}
.eminiq-section__header-row {
    display: flex;
    justify-content: space-between;
}
.eminiq-section__header-row .eminiq-section__content {
    width: 80%;
}
.eminiq-section__header-row .eminiq-section__cta {
    width: auto;
}
.eminiq-section__header-row
    .eminiq-section__cta
    img.eminiq-section__avatar-img {
    width: 110px;
}
.eminiq-section__consult-card h3.eminiq-section__consult-title {
    font-family: "Outfit";
}

.eminiq-section__header-row .eminiq-section__description {
    width: min(964px, 100%);
}
.eminiq-section__body-row {
    border-radius: var(--border-radius-lg);
    margin-block-start: 32px;
    position: sticky;
    top: 140px;
    background: var(--white-color);
    padding: 30px 0;
    padding-inline: 18px;
    margin-inline: 0;
    border: 1px solid var(--border-clr);
    box-shadow: rgb(172 172 172 / 10%) 0px 5px 15px 0px;
}
.eminiq-section__image-wrap img {
    border-radius: var(--border-radius-base);
}
.eminiq-section__consult-list {
    list-style: none;
    padding: 0;
    margin-block-start: 30px;
}
.eminiq-section__consult-list li {
    position: relative;
    padding-inline-start: 32px;
}
.eminiq-section__consult-list li + li {
    margin-top: 16px;
}
.eminiq-section__consult-list li::before {
    content: "";
    position: absolute;
    background-image: url("/images/home/svg/check-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
}
.eminiq-sticky-sec {
    position: relative;
}

.eminiq-section__body-row:nth-child(2) {
    z-index: 2;
}
.eminiq-section__body-row:nth-child(3) {
    z-index: 3;
}

.advantage-section {
    padding: 0 15px;
    background-color: #F1F0EE;
}
.transform-bg-sec {
    background-image: url(/images/home/transform-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: 70px 0;
}
.advantage-section__content {
    max-width: 700px;
}
.advantage-section .advantage-section__content :where(h2, p) {
    color: var(--white-color);
}
.advantage-section__content .advantage-section__btn {
    margin-block-start: 24px;
}
.eminiq-build .eminiq-build__note {
    margin-top: 15px;
}
.eminiq-build__cards-rw {
    gap: 20px;
    margin-top: 24px;
}
.eminiq-build__cards {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: stretch;
}
.eminiq-build__cards > div {
    width: 100%;
}
.eminiq-build__cards .eminiq-build__card {
    border: 1px solid var(--border-clr);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    transition: var(--transition);
    background: #ffff;
}
.eminiq-build__cards .eminiq-build__card:hover {
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.15);
}
.eminiq-build__card-title {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}
.eminiq-build__cards.horizontal-cards {
    gap: 20px;
}
.eminiq-build__cards.horizontal-cards .eminiq-build__card {
    height: 100%;
    margin: 0px;
}
.eminiq-build__text-block p.eminiq-build__card-sub {
    margin-bottom: 5px;
    line-height: 1.3;
}
.eminiq-build__cards.horizontal-cards .eminiq-build__card > div {
    flex: unset !important;
}
.eminiq-build__text-block {
    gap: 12px;
}
.vertical-card .eminiq-build__text-block {
    padding-block-start: 20px;
}
.eminiq-build__text-block .site-btn {
    margin-top: 14px;
    border: 1px solid #292929;
    font-weight: 600;
    padding: 10px 20px;
}

.horizontal-cards .eminiq-build__card {
    gap: 20px;
}
.eminiq-build__cards .eminiq-build__card:hover .site-btn {
    background: var(--yellow-accent-color);
    color: var(--dark-clr);
    border: 1px solid transparent;
}
.eminiq-rw-tw {
    grid-template-columns: 2fr 1fr;
}
.eminiq-build__cards .eminiq-build__card img {
    width: 100%;
}
.eminiq-build__cards .eminiq-build__card .col-md-6 {
    flex: unset;
}
/*====== Case study section css start from here ======*/
.case-study-cards-rw {
    margin-block-start: 32px;
    gap: 20px;
}
.case-study-header .right-col .site-btn {
    border: 1px solid #F72F2F;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: start;
    color: #111111;
    background: #fff;
}

.case-study-header {
    display: grid;
    grid-template-columns: 3.5fr 1fr;
    margin-bottom: 20px;
}

.case-study-header .right-col {
    display: flex;
    justify-content: end;
    align-items: start;
}
.case-study-main-section{
background-color: #F1F0EE;
}
.case-study-header .right-col .site-btn:hover {
    background: #F72F2F;
    color: #fff;
}

.case-study-header .right-col .site-btn:hover span img {
    filter: invert(1);
}
.case-study-btn a:hover {
    background: var(--accent-color);
}

.portfolio-casestudy.cmcasestudy-inner .slick-list.draggable .slick-track .slick-slide {
    padding-inline: 0px;
}
.portfolio-casestudy.cmcasestudy-inner .slick-list.draggable .slick-track {
    display: flex;
    gap: 20px;
    margin-inline: 5px;
}
.portfolio-casestudy.cmcasestudy-inner .slick-list.draggable .slick-track .col-sm-12.col-md-6.col-lg-4.col-xl-4 {
    margin-inline: -10px;
}
.portfolio-casestudy.cmcasestudy-inner.common-slider .slick-prev.slick-arrow {
    right: 60px;
}
.case-study-main-section.common-slider button {
    right: 10px;
}
.portfolio-casestudy.cmcasestudy-inner .slick-arrow {
    background: #F72F2F!important;
    top: -45px;
}
.portfolio-casestudy.cmcasestudy-inner .slick-prev.slick-arrow {
    right: 60px;
}
.portfolio-casestudy.cmcasestudy-inner .slick-arrow::before {
    filter: brightness(0) invert(1);
}
.case-study-section .slick-arrow {
    top: -60px;
}
.case-study-cards-rw .case-study-cards {
    flex: 1;
    background: var(--white-color);
    border: 1px solid var(--border-clr);
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
    height: 475px;
}
.case-study-cards .card-img {
    height: 312px;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.case-study-cards .card-img .case-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 222;
    transform: translate(-50%, -50%);
}
.case-study-cards .card-img:after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.case-study-cards:hover .card-img {
    height: 255px;
}
.case-study-cards-rw .case-study-cnt p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-clamp: 3;
}
.case-study-cards .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-study-cards-rw .slick-list,
.product-engineering-cards-outer .slick-list,
.client-testimonial-final .slick-list {
    margin-inline: -15px;
}

.btn-w-arw {
    position: relative;
    color: var(--accent-color);
    padding-right: 34px;
}
.btn-w-arw:after {
    content: "";
    position: absolute;
    background-image: url(/images/home/svg/btn-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    right: 0;
    top: 50%;
    width: 26px;
    height: 26px;
    transform: translateY(-50%);
}
.case-study-cnt {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    padding-top: 12px;
    transition: 0.3s ease all;
}
.case-study-cards-rw .case-study-cards:hover .case-study-cnt {
    background: var(--white-color);
    position: relative;
}
.case-study-cnt h3 {
    margin-bottom: 0;
    font-family: "Outfit";
}
.card-img img {
    border-top-right-radius: var(--border-radius-base);
    border-top-left-radius: var(--border-radius-base);
}
.slick-list.draggable .slick-track {
    display: flex;
    margin-inline: -10px;
}
.slick-list.draggable .slick-track .slick-slide {
    padding-inline: 10px;
}
.common-slider .slick-arrow {
    background: var(--yellow-accent-color) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
}
.iti {
    width: 100%;
}
.slick-arrow:focus {
    background: var(--yellow-accent-color);
}
section .contact-fixed {
    position: fixed;
    right: 30px;
    bottom: 80px;
    z-index: 99;
    /* display: none; */
}
.contact-fixed ul li {
    list-style: none;
    margin: 10px 0;
}
.common-slider .slick-arrow::before {
    opacity: 1;
    background-image: url(/images/c0-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}
.slick-prev:before {
    background-image: url(/images/c1-arrow.png) !important;
}
.slick-arrow:hover {
    background: #2929291a;
}
.slick-arrow:hover::before {
    opacity: 0.8;
}
.common-slider button {
    position: absolute;
    top: -80px;
    left: auto;
    right: 0;
}
.common-slider .slick-prev.slick-arrow {
    right: 50px;
}
.common-slider .slick-arrow.slick-disabled {
    background: #dddcda !important;
}

.solutions-outer.ppc_solutions-outer {
    padding-block: var(--section-padding);
    margin-top: -72px;
    background: var(--white-color);
    border-top-left-radius: var(--border-radius-xl);
    border-top-right-radius: var(--border-radius-xl);
}
.btn-wraper .site-btn.btn {
    background: #F72F2F;
    color: #fff;
    border: 1px solid #F72F2F;
}
.btn-wraper .site-btn.btn:hover {
    background: #fff;
    color: #111111;
}
.btn-wraper.solutions-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block-start: 35px;
}
.product-engineering-sec .product-engineering-cards button.slick-arrow:before {
    filter: brightness(0) invert(1);
}
.product-engineering-sec .product-engineering-cards button.slick-arrow {
    top: -50px;
    background:var(--accent-color)!important;
}
.solutions-outer.ppc_solutions-outer .solution_grid {
    margin-top: 32px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.card-grid .card-item {
    background: var(--white-color);
    padding: 30px;
    text-align: left;
    border: 1px solid var(--border-clr);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}
.service-grid .card-item img {
    height: auto;
    width: 42px;
    margin-bottom: 0;
}
.card-grid .card-item h3 {
    margin-bottom: 0;
    font-family: "Outfit";
}

.card-grid .card-item:first-child {
    border-top-left-radius: var(--border-radius-lg);
}
.card-grid .card-item:nth-child(3) {
    border-top-right-radius: var(--border-radius-lg);
    border-left: 0;
}
.card-grid .card-item:nth-child(4) {
    border-bottom-left-radius: var(--border-radius-lg);
}
.card-grid .card-item:nth-child(6) {
    border-bottom-right-radius: var(--border-radius-lg);
}
.card-grid .card-item:hover {
    box-shadow: 0 10px 36px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}
.card-grid .card-item:hover h4 {
    color: var(--white-color);
}
.card-grid .card-item:hover .hovr_img {
    display: block;
}
.solution_grid.card-grid .card-item:nth-child(2) {
    border-left: 0;
}
.solution_grid.card-grid .card-item:nth-child(5) {
    border-inline: 0;
    border-top: 0;
}
.solution_grid.card-grid .card-item:nth-child(6) {
    border-top: 0px;
}
.solution_grid.card-grid .card-item:nth-child(4) {
    border-top: 0px;
}
.product-video img {
    border-radius: var(--border-radius-lg);
}
.banner-section .banner-rw .banner-col-left h2 span, span.red {
    color: #f72f2f;
}
section.banner-section .about-header {
    max-width: 886px;
    margin: auto;
    text-align: center;
}

.banner-section .banner-rw .banner-col-left h2 span {
    color: #f72f2f;
}

.banner-section .banner-rw .banner-col-left .about-des {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-section .banner-rw .banner-col-left .about-des p {
    margin-bottom: 0;
}
section.banner-section{
    background: linear-gradient(
        180deg,
        #ffffff -17.86%,
        rgba(255, 255, 255, 0) 58.06%
    );
    padding-block: 60px;
}
.product-engineering-cards .product-cards {
    background: var(--white-color);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-clr);
    height: 100%;
}
.product-engineering-sec .product-engineering-cards button.slick-arrow {
    top: -50px;
}
.product-engineering-cards .slick-list.draggable .slick-track .slick-slide {
    height: auto;
}
.product-engineering-cards
    .slick-list.draggable
    .slick-track
    .slick-slide
    > div {
    height: 100%;
}
.product-engineering-cards
    .slick-list.draggable
    .slick-track
    .slick-slide
    > div
    .case-study-cards {
    height: 100%;
}
.product-engineering-sec .header-cnt {
    padding-right: 280px;
}
.product-engineering-cards {
    margin-top: 32px;
}

.new_faq_sec .faq_header {
    margin-bottom: 30px;
}
.new_faq_sec .accordion-item .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 20px;
    padding: 0;
    line-height: var(--line-height-md);
    font-family: "Outfit";
    display: flex;
    justify-content: space-between;
    gap: 20px;
    box-shadow: none;
    color: #292929;
}
.new_faq_sec .active-faq .accordion-button span.arrow-btn circle {
    fill: var(--accent-color);
    fill-opacity: 1;
}
.new_faq_sec .active-faq .accordion-button span.arrow-btn path {
    fill: #fff;
}
.still-have-questions-sec {
    background-size: cover;
    background-image: url(/images/home/brand-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding-block: 78px;
    border-radius: 12px;
}

.still-have-questions-sec .heading-h2 {
    color: #fff;
}

.still-have-questions-sec .heading-h2, .still-have-questions-sec .site-btn.btn {
    margin-inline: 40px;
}

.still-have-questions-sec .site-btn {
    background: #F72F2F;
    color: #fff;
}

.still-have-questions-sec-outer {
    padding-block-start: 60px;
    background-color: #F1F0EE;
    padding-inline:15px;
}
.new_faq_sec .active-faq .accordion-button span.arrow-btn svg {
    transform: rotate(180deg);
}
.new_faq_sec .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.new_faq_sec .accordion-item.active-faq {
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 36px 0 rgba(0, 0, 0, 0.1);
}
.new_faq_sec .active-faq .accordion-button {
    color: #292929;
    box-shadow: none;
    line-height: var(--line-height-md);
}

.new_faq_sec .accordion-item {
    padding: 25px;
    border: 1px solid var(--border-clr);
    margin-bottom: 15px;
    border-radius: 15px;
    color: #292929;
}

.new_faq_sec .accordion-item .accordion-body {
    padding: 0;
    margin-top: 16px;
}
.new_faq_sec .accordion {
    width: 50%;
}
.new_faq_sec .accordion-item button::after {
    display: none;
}
.new_faq_sec .accordion-item .accordion-body ul {
    padding-left: 20px;
}
.new_faq_sec .accordion-item .accordion-body ul li::marker {
    font-size: 14px;
}
.new_faq_sec .accordion_body {
    display: flex;
    gap: 20px;
}

/* AI service strip section */
.ai-service-strip-section {
    background: #F1F0EE;
}

.ai-service-strip__head {
    width: min(100%, 1100px);
    margin: 0 auto 30px;
}

.ai-service-strip__head h2 {
    margin-bottom: 10px;
}

.ai-service-strip__sub {
    display: inline-block;
    max-width: 1100px;
}

.ai-service-strip {
    display: flex;
    gap: 6px;
    align-items: stretch;
    min-height: 420px;
}

.ai-service-card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    border-radius: 10px;
    overflow: hidden;
    isolation: isolate;
    background: #061c2c;
    cursor: pointer;
    will-change: flex-grow, transform;
    transition:
        flex-grow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ai-service-card:hover {
    transform: translateY(-2px);
}

.ai-service-card.is-active {
    flex-grow: 2.5;
}

.ai-service-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.ai-service-card:hover .ai-service-card__bg,
.ai-service-card.is-active .ai-service-card__bg {
    transform: scale(1.08);
}

.ai-service-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 11, 18, 0.12) 0%, rgba(4, 11, 18, 0.58) 58%, rgba(4, 11, 18, 0.84) 100%);
}

.ai-service-card__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px 12px;
    color: #fff;
}

.ai-service-card__title {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.15;
    position: absolute;
    inset: 15px;
}

.ai-service-card__content p,
.ai-service-card__content h4,
.ai-service-card__content ul,
.ai-service-card__content .site-btn {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        max-height 0.25s ease,
        margin 0.25s ease;
}

.ai-service-card.is-active .ai-service-card__content {
    justify-content: flex-end;
    padding: 24px 16px 18px;
}

.ai-service-card.is-active .ai-service-card__title {
    font-size: 28px;
    margin-bottom: 10px;
}

.ai-service-card__content p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.ai-service-card__content h4 {
    font-size: 20px;
    color: #fff;
}

.ai-service-card__content ul {
    list-style: none;
    padding: 0;
}

.ai-service-card__content ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
}

.ai-service-card__content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fffdfd;
    transform: translateY(-50%);
}

.ai-service-card__content .site-btn {
    width: 100%;
    text-align: center;
    border-radius: 8px;
    background: #ff3434;
    color: #fff;
    padding: 10px 16px;
}

.ai-service-card__content .site-btn:hover {
    background: #e52222;
}

.ai-service-card.is-active .ai-service-card__content p,
.ai-service-card.is-active .ai-service-card__content h4,
.ai-service-card.is-active .ai-service-card__content ul,
.ai-service-card.is-active .ai-service-card__content .site-btn {
    opacity: 1;
    transform: translateY(0);
    max-height: 320px;
    pointer-events: auto;
}

.ai-service-card.is-active .ai-service-card__content p {
    margin: 0 0 10px;
}

.ai-service-card.is-active .ai-service-card__content h4 {
    margin: 0 0 8px;
}

.ai-service-card.is-active .ai-service-card__content ul {
    margin: 0 0 14px;
}

/* Development services section */
.development-services-section {
    position: relative;
    overflow: hidden;
    background: #F1F0EE;
}
.development-services-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/new-home/sec-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}
/* .development-services-section::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: clamp(90px, 18vw, 180px);
    background:
        linear-gradient(90deg, rgba(255, 117, 117, 0.08) 0 8%, transparent 8% 16%, rgba(255, 117, 117, 0.08) 16% 24%, transparent 24% 32%, rgba(255, 117, 117, 0.08) 32% 40%, transparent 40% 48%, rgba(255, 117, 117, 0.08) 48% 56%, transparent 56% 64%, rgba(255, 117, 117, 0.08) 64% 72%, transparent 72% 80%, rgba(255, 117, 117, 0.08) 80% 88%, transparent 88% 100%);
    pointer-events: none;
} */

.development-services-section .container {
    position: relative;
    z-index: 1;
}

.development-services__head {
    margin-bottom: 30px;
}

.development-services__head h2 {
    margin-bottom: 0;
}

.development-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.development-service-card {
    min-height: 300px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    padding: 22px 18px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.development-service-card:hover {
    transform: translateY(-4px);
}



.development-service-card__icon {
    margin-bottom: 14px;
}

.development-service-card__icon svg {
    width: 22px;
    height: 22px;
}

.development-service-card__icon img {
    width: 35px;
    height: auto;
    object-fit: contain;
    display: block;
}

.development-service-card h3 {
    margin-bottom: 14px;
    font-family: Outfit;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.development-service-card p {
    font-family: Heebo;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #646161;
    max-width: 320px;
}

.development-service-card__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 38px;
    padding: 9px 18px;
    border: 1px solid #F72F2F;
    border-radius: 8px;
    color: #111111;
    background: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    transition: background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
    padding: 12px 30px;
    min-height: 48px;
}
.development-service-card__btn:hover::after {
    filter: brightness(0) invert(1);
}
.development-service-card__btn::after {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    background-image: url("/images/new-home/arrow-btn-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex: 0 0 14px;
}

.development-service-card__btn:hover {
    background: #ff5a5f;
    color: #fff;
    border-color: #ff5a5f;
}



.case-study-poster {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.portfolio-casestudy-item {
    min-height: 500px;
    background-repeat: no-repeat;
    background-position: top center;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    text-decoration: none;
    transition: 0.3s ease all;
}
.case-study-poster .portfolio-casestudy-item {
    display: block;
    height: 100%;
    width: 100%;
    /* position: absolute;
    left: 0;
    top: 0; */
    transition: 0.3s ease all;
    padding: 0;
}
.case-study-poster .portfolio-casestudy-item img.poster {
    width: 100%;
    transition: 0.3s ease all;
    height: 100%!important;
    min-height: auto;
    height: auto;
    object-fit: cover;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
}
.case-study-poster:hover .portfolio-casestudy-item .poster {
    scale: 1.04;
}
.portfolio-casestudy-item .logo-btn {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    min-height: 56px;
    z-index: 2;
}
.case-study-poster .portfolio-casestudy-item .portfolio-casestudy-iner {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
}
.portfolio-casestudy-iner ul li {
    font-size: 14px;
    font-weight: 400;
    line-height: 20.56px;
    color: #fff;
    background: #ffffff33;
    padding: 5px 16px;
    border-radius: 30px;
    margin-right: 10px;
    flex: 0 0 auto;
    margin-bottom: 8px;
}
.portfolio-casestudy-item:before, .portfolio_item:before {
    background: linear-gradient(182.16deg, rgba(0, 0, 0, 0) 1.72%, rgba(0, 0, 0, 0.7) 98.09%);
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    content: "";
}
.portfolio-casestudy-iner>h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 12px;
    text-transform: capitalize;
}
.portfolio-casestudy-iner ul {
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}
.logo-btn span.case-btn {
    opacity: 0;
    transition: 0.3s ease all;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-btn span.case-btn img.logo-arrow {
    width: 60%;
    transition: 0.3s ease all;
}
.portfolio-casestudy-item:hover .logo-btn span.case-btn img.logo-arrow {
    width: 100%;
}
.portfolio-casestudy-item:hover .logo-btn span.case-btn {
    opacity: 1;
}

.nopage-data a,
.portfolio-casestudy-cat {
    display: inline-block;
    background: #fed602;
}

.portfolio-casestudy-item:before {
    z-index: 1;
    transition: 0.5s;
    opacity: 1;
    border-radius: 20px;
}

.portfolio-casestudy-cat {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #111;
    padding: 5px 15px;
    border-radius: 4px;
}
.solutions.ppc_solutions {
    background: linear-gradient(180deg, #F6F6F6 0%, rgba(255, 255, 255, 0) 100%);
}
.row.promise-sec-outer {
    margin: 0px;
}









/* Trusted logos section */

/* Home page csss end Here */

/*====================== Start Responsive Here ======================*/

@media (min-width: 991px) {
    .h_certificates-sec .certi-logo {
        width: calc((100% - 45px) / 7);
        row-gap: 20px;
        text-align: center;
    }
}



@media (max-width: 1199px) {
    .banner-section .banner-col h1.home-title {
        font-size: 54px;
    }
    .why-counter-item h4,
    .why-sec .why-counter-item h3 {
        font-size: 40px;
    }
    .case-study-title .title-l {
        max-width: 620px;
    }
    .case-study-cards-rw .case-study-cards {
        height: 465px;
    }
    .case-study-cnt {
        gap: 8px;
    }
    .case-study-cards-rw .case-study-cnt p {
        margin-bottom: 10px;
    }
    .new_hero_slider .new_hero-inner .new-hero-col h1 {
        font-weight: 700;
        font-size: 42px;
        line-height: 1.2;
    }
}
@media (max-width: 1050px) {
    .banner-col-left .banner__cta {
        top: 20px;
        right: 0px;
    }
    .new_hero-inner {
        position: relative;
        padding-block: 80px;
    }
    .banner-section .banner-col h1.home-title {
        font-size: 45px;
    }
    .h_certificates-sec {
        gap: 0px;
    }
    .why-rw {
        gap: 25px;
    }
    .promise-sec-outer .why-counter-grid .block-item,
    .why-sec .why-counter-item {
        padding: 15px 15px;
    }
    .transform-bg-sec {
        background-position: center;
    }
    .contact-form-sec h2.heading-h2,
    .logo-title .section-heading h2 {
        font-weight: 700;
    }
    .new-hero-rw {
        grid-template-columns: 1.5fr 1fr;
    }
}
@media (max-width: 992px) {
    :root {
        --border-radius-xl: 30px;
        --border-radius-lg: 15px;
        --border-radius-base: 12px;
        --section-padding: 50px;
    }
    .pad-55-0 {
        padding: 50px 0;
    }
    .pad-b-55 {
        padding-bottom: 50px;
    }
    .pad-t-55 {
        padding-top: 50px;
    }

  
    .banner-section .banner-col h1.home-title {
        font-size: 65px;
    }
    .banner-section .full-screen-icon {
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
    .h_certificates-sec {
        justify-content: center;
    }
    .trusted-logo-row {
        flex-direction: column;
    }
    .trusted-logo-row .logo-title,
    .trusted-logo-row .logo-slider-sec {
        width: 100%;
    }
    .trusted-logo-row .logo-title .section-heading {
        display: flex;
        justify-content: space-between;
    }
    .trusted-logo-row .logo-title .section-heading h2 {
        max-width: 500px;
        margin-bottom: 0;
    }

    .eminiq-build__cards {
        grid-template-columns: 1fr;
    }
    .vertical-card {
        flex-direction: row !important;
        gap: 20px;
    }
    .eminiq-build__cards .eminiq-build__card img {
        width: 100%;
        max-width: 100%;
    }
    .eminiq-build__img-block {
        width: 41.67%;
    }
    .vertical-card .eminiq-build__text-block.flex.flex-column {
        width: 58.33%;
    }
    .product-engineering-sec .header-cnt {
        padding-right: 120px;
    }
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution_grid.card-item {
        padding: 15px;
    }
    .eminiq-build__cards.horizontal-cards .eminiq-build__card {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .eminiq-build__cards.horizontal-cards .md-col-reverse {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .double-listing .listing-rt .list-block {
        padding: 0px;
    }
    .h_level_why-sec .why-counter-grid {
        grid-template-columns: 1fr;
    }
    .box-clc {
        max-width: 100%;
    }
    .ai-service-card__content {
        align-items: start;
    }
}
@media (max-width: 991.9px) {
    h2.title-font-36 {
        font-size: 28px;
    }
    .industry-sec .industry-title {
        width: 80%;
    }
    .banner-section .banner-col h1.home-title {
        font-size: 45px;
    }
    .banner-section .banner-rw .banner-col-left,
    .banner-section .banner-rw .banner-col-right {
        width: 100%;
    }
    .banner-col-left .banner__cta img.eminiq-section__avatar-img,
    .eminiq-section__header-row
        .eminiq-section__cta
        img.eminiq-section__avatar-img {
        width: 80px;
    }
    .banner-col-left .banner__cta {
        top: 40px;
    }
    .h_certificates-sec {
        gap: 30px;
    }
    .h_certificates-sec .certi-logo {
        width: calc((100% - 0px) / 10);
    }
    .h_certificates-sec .certi-logo img {
        height: 90px;
        width: 90px;
        object-fit: contain;
    }
    .client-video-sec,
    .client-imginto,
    .client-011 {
        height: 100%;
    }
    .client-video-sec .custom-client-011 .clinet-review {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .case-study-rw .case-study-title {
        flex-direction: column;
    }
    .ai-service-card__content .site-btn {
        width: auto;
     
    }
    .new-hero-rw {
        grid-template-columns: 1fr;
    }
    .h_certificates-sec.certificates-slider.slick-initialized.slick-slider {
        margin-left: 0;
        margin-right: 0!important;
    }
    .hero-col.new-right-col {
        align-items: center;
        margin-top: 60px;
    }
   
}
@media (max-width: 849.9px) {
    .banner-section .banner-col h1.home-title {
        font-size: 40px;
    }
    .promise-sec .why-counter-grid,
    .why-sec .why-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-sec .why-counter-grid {
        padding: 0;
    }
    .transform-bg-sec {
        padding: 40px 10px;
    }
    .card-grid .card-item {
        padding: 15px;
    }
    .card-grid .card-item h3 {
        font-size: 18px;
        line-height: 1.1;
    }
    .trusted-logo-row .logo-title .section-heading h2 {
        max-width: 360px;
    }
    .industry-slider-sec .ind-slide .case-content {
        padding: 10px;
    }
    .footer-sitemap__grid {
        grid-template-columns: repeat(3, auto);
    }
 
    .footer-contact-strip__cta {
        justify-content: flex-start;
    }
}
@media (max-width: 767.9px) {
    :root {
        --border-radius-xl: 20px;
    }
    h2,
    .h2 {
        margin-bottom: 0.75rem;
    }
   
    .blog-sec {
        padding: 30px 0;
    }
    .case-study-cards-rw .slick-list,
    .product-engineering-cards-outer .slick-list,
    .client-testimonial-final .slick-list {
        margin-inline: 0px;
    }
    .product-engineering-sec .product-engineering-cards button.slick-arrow {
        top: 102%;
    }
    .testimonial-sec h4.count-value {
        display: none;
    }
    .trusted-logo-row {
        margin-top: 40px;
    }
    .banner-section .banner-rw {
        flex-direction: column;
    }
    .banner-section .banner-rw .banner-col-left,
    .banner-section .banner-rw .banner-col-right {
        width: 100%;
    }
    .banner-section .banner-col h1.home-title {
        font-size: 60px;
    }
    .case-study-cards-rw {
        margin-bottom: 40px;
    }
    .case-study-cta-inner {
        width: 100%;
        gap: 30px;
    }
    .case-study-cta-inner .case-study-cta-title {
        max-width: 100%;
    }
    .banner-section {
        padding-block: 25px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .grid-col-2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-col-4 {
        grid-template-columns: repeat(1, 1fr);
    }
    .product-video {
        margin-top: 15px;
    }
    .banner-col-left:before {
        display: none;
    }
    .banner-ai-video {
        clip-path: unset;
        border-radius: var(--border-radius-base);
    }
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .why_rw-col.why-img {
        margin-bottom: 20px;
    }
    .h_certificates-sec {
        gap: 20px;
    }
    .h_certificates-sec .certi-logo img {
        /* height: 5.25rem; */
        width: 84px;
        height: 84px;
        object-fit: contain;
    }
    .vertical-card {
        flex-direction: column !important;
    }
    .eminiq-build__img-block,
    .vertical-card .eminiq-build__text-block.flex.flex-column {
        width: 100%;
    }
    .eminiq-section__body-row .eminiq-section__consult {
        padding-inline: 0;
    }
    .eminiq-section__image-wrap {
        padding-inline: 0px;
    }
    .eminiq-build__cards.horizontal-cards {
        flex-direction: column-reverse !important;
    }
    .vertical-card .eminiq-build__text-block {
        padding-block-start: 0;
    }
    .eminiq-build__cards.horizontal-cards .reverse-col {
        flex-direction: column;
    }
    .eminiq-section__cta .eminiq-section__circle-btn {
        justify-content: start !important;
        margin-top: 12px;
    }
    .eminiq-build__cards.horizontal-cards .md-col-reverse {
        flex-direction: column;
    }
    .eminiq-build__cards.horizontal-cards .eminiq-build__card.sm-col-reverse {
        flex-direction: column-reverse;
    }
    .eminiq-build__cards .eminiq-build__card.md-row-reverse {
        flex-direction: row-reverse !important;
    }
    .eminiq-section__body-row {
        top: 0px;
        position: relative;
        padding: 20px;
        margin-block-start: 20px;
    }
    .case-study-section .header-cnt {
        padding-inline-end: 0;
    }
  
    .common-slider button {
        top: auto;
        left: 50%;
        bottom: -70px;
        transform: translate(-50%, -50%);
    }
    .slick-list.draggable .slick-track {
        margin-inline: 0;
    }
    .product-engineering-sec .header-cnt {
        padding-right: 0;
    }
    .case-study-cards .card-img img {
        height: auto;
    }
    .case-study-cnt {
        margin-top: 0;
    }
    .advantage-section {
        background-image: none;
    }
    .common-slider .slick-prev.slick-arrow {
        left: unset;
        right: 50px;
    }
    .common-slider button.slick-next {
        left: unset;
    }
    .block-grid {
        gap: 15px;
    }
  
    .banner-section .banner-col p {
        max-width: 100%;
    }
    .card-grid .card-item,
    .new_faq_sec .accordion-item,
    .block-grid .block-item {
        padding: 15px;
    }
    .case-study-cards-rw .case-study-cards {
        height: auto;
    }
    .case-study-cards-rw .case-study-cards:hover .case-study-cnt {
        margin-top: 0;
    }
    .why-sec .why-rw .why-img img {
        max-height: 410px;
    }
    .eminiq-build__cards.horizontal-cards .eminiq-build__card {
        height: auto;
    }

    .logo-sec {
        padding-bottom: 40px;
    }
    .card-grid .card-item:first-child,
    .card-grid .card-item:nth-child(3),
    .card-grid .card-item:nth-child(6),
    .card-grid .card-item:nth-child(4) {
        border-radius: unset;
    }
    .card-grid .card-item:nth-child(3) {
        border-left: 1px solid var(--border-clr);
    }

    .solution_grid .card-item:nth-child(2) {
        border-left: 1px solid var(--border-clr) !important;
        border-bottom: 0px;
    }
    .card-grid .card-item:first-child {
        border-bottom: 0px;
    }
    .solution_grid.card-grid .card-item:nth-child(5) {
        border-bottom: 1px solid var(--border-clr);
        border-inline: 1px solid var(--border-clr);
    }
    .card-grid .card-item:first-child {
        border-top-left-radius: var(--border-radius-xl);
        border-top-right-radius: var(--border-radius-xl);
    }
    .card-grid .card-item:last-child {
        border-bottom-left-radius: var(--border-radius-xl);
        border-bottom-right-radius: var(--border-radius-xl);
    }
    .new_faq_sec .accordion-item .accordion-button {
        font-weight: 700;
        font-size: 16px;
    }
    .automation-section .automation-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .zoho_integration-inner .eminiq-section__image-wrap {
        padding-inline: 0;
    }
    .expertise-sec .odd-pd {
        padding-block: 50px 100px;
    }
    .promise-block .promise-block-team .icon {
        width: 30px;
    }
    .promise-block .promise-block-team p {
        width: 100%;
    }
    .promise-block .promise-block-team .icon {
        width: 30px;
    }
    .promise-block .promise-block-team {
        padding: 10px 15px;
        min-height: 64px;
    }
    .eminiq-build .eminiq-build__note {
        margin-top: 10px;
    }
    .countryflag {
        padding-bottom: 0;
    }
    .address-list-item h3 {
        margin-top: 0;
    }
    .case-study-cnt {
        gap: 5px;
    }
    h3.eminiq-build__card-title {
        font-size: 20px;
        font-weight: 600;
    }
    .client-block.video .row {
        gap: 20px;
    }
    .new_faq_sec .accordion_body {
        flex-direction: column;
        gap: 0;
    }
    .new_faq_sec .accordion {
        width: 100%;
    }
    .blog-postcard .blog-img img {
        height: 470px;
    }
    .blog-info-box .blog-btn {
        font-size: 16px;
    }
    section.why-sec .why-rw {
        flex-direction: column;
        gap: 0px;
    }
    .why-rw .why_rw-col {
        width: 100%;
    }
    .why-rw .why-content p {
        max-width: 100%;
    }
    #accordionExample-1 .accordion-item:last-child {
        margin-bottom: 0;
    }
    section.case-study-section .case-study-outer button.slick-arrow,
    .industry-slider-sec .case-slider button.slick-arrow {
        bottom: -60px;
        top: unset;
    }
    /* section.case-study-section .case-study-outer button.slick-arrow.slick-prev {
        left: unset;
        right: 50px;
    }
    section.case-study-section .case-study-outer button.slick-arrow.slick-next {
        right: 41%;
        left: unset;
    }  */
    section.case-study-section {
        padding-bottom: 55px;
    }
    .trusted-logo-sec {
        padding-top: 80px;
    }
    .testimonial-sec {
        padding-top: 60px;
    }
    .slick-list.draggable .slick-track .slick-slide {
        padding-inline: 0px;
    }
    .product-engineering-cards {
        margin-top: 15px;
    }
    .industry-slider-sec .ind-slide img {
        width: 100%;
    }
    .industry-slider-sec .slick-track .slick-slide {
        padding: 0 9px !important;
    }
    .industry-slider-sec .ind-slide .case-content {
        padding: 15px;
    }
    .h_certificates-sec .certi-logo {
        width: calc((100% - 0px) / 6);
        text-align: center;
    }
    .certificates-sec .certi-logo {
        width: calc((100% - -85px) / 7);
    }
    .ai_services-grid-content {
        margin-bottom: 0px;
    }
    .case-study-cards-rw .slick-list.draggable .slick-track .slick-slide {
        padding-inline: 5px;
    }
    .trusted-logo-row .logo-title .section-heading {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 10px;
    }
    .our-industry-sec .common-slider .slick-arrow {
        bottom: -40px;
    }

    .promise-sec-outer .promise-sec-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .case-study-header {
        grid-template-columns: 1fr;
    }
    .case-study-header .right-col {
        justify-content: start;
    }

}

@media (max-width: 575.98px) {
    h2.title-font-36 {
        font-size: 25px;
    }
    .testimonial-sec h2.heading-h2,
    .blog-sec .heading-wrap h2.heading-h2 {
        font-size: 25px;
    }
    .contact-form-sec h2.heading-h2 {
        font-size: 28px;
    }
    .h_certificates-sec {
        gap: 10px;
    }
    .h_certificates-sec .certi-logo img {
        height: 4.5rem;
    }
    .header-menu .talk-btn a {
        margin-left: 0;
    }
    .logo-sec {
        padding-bottom: 30px;
    }
    .eminiq-build__cards .eminiq-build__card img {
        width: 100%;
        max-width: 100%;
    }
    .banner-section .banner-col h1.home-title {
        font-size: 45px;
    }
    .promise-sec .why-counter-grid,
    .why-sec .why-counter-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .product-engineering-cards .product-cards {
        padding: 15px;
    }
    .logo-slider-sec .brands-slider .brand-logo-item {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .blog-postcard .blog-img img {
        height: 300px;
    }
    .new_faq_sec .faq_header {
        margin-bottom: 10px;
    }
    .industry-slider-sec .ind-slide .case-content {
        background: #fff;
        position: static;
    }
    .industry-slider-sec .ind-slide .case-content h3.case-title,
    .industry-slider-sec .ind-slide .case-content p.case-desc {
        color: var(--dark-clr);
    }
    .industry-slider-sec .ind-slide .case-content span.case-cta {
        border: 1px solid var(--dark-clr);
        color: var(--dark-clr);
    }
    .industry-slider-sec .ind-slide .case-content span.case-cta .ico svg path {
        fill: var(--dark-clr);
    }
}
@media (max-width: 450.98px) {
    h2.title-font-36,
    .testimonial-sec h2.heading-h2,
    .blog-sec .heading-wrap h2.heading-h2 {
        font-size: 24px;
    }
    .header-menu button.menu-toggle {
        /* width: 40px !important;
    height: 40px !important; */
        /* padding: 0 5px !important; */
    }
    .meu-title h4 {
        font-size: 16px !important;
        margin-bottom: 0;
    }
    .meu-title p {
        font-size: 14px;
    }
    .banner-section .banner-col h1.home-title {
        font-size: 35px;
    }
    .product-video .banner-ai-video video.ai-video-lisa {
        height: 370px;
    }
    .banner-section .banner-rw {
        gap: 0px;
    }
    .h_certificates-sec .certi-logo {
        width: calc((100% - 0px) / 5);
    }
    section.home-logo-sec .hero-more-text {
        margin-bottom: 10px;
    }
    .sub-title {
        margin-block-end: 5px;
    }
    .eminiq-section__header-row .eminiq-section__cta {
        display: none;
    }
    .eminiq-section__header-row .eminiq-section__content {
        width: 100%;
    }
    .transform-bg-sec {
        padding: 30px 0px;
    }
    .case-study-rw .case-study-title {
        gap: 10px;
    }
    .case-study-btn a {
        width: 100%;
    }
    .industry-sec .industry-title {
        width: 100%;
    }
    section.home-logo-sec {
        padding: 20px 0 0;
    }
   
}
@media (max-width: 359px) {
    .header-menu .talk-btn a {
        padding: 8px 10px;
    }
    .header-menu button.menu-toggle {
        /* width: 40px !important;
    height: 40px !important; */
        /* padding: 0 5px !important; */
    }
    .banner-section .banner-col h1.home-title {
        font-size: 30px;
    }
    .banner-col-left .banner__cta img.eminiq-section__avatar-img,
    .eminiq-section__header-row
        .eminiq-section__cta
        img.eminiq-section__avatar-img {
        width: 68px;
    }
}

@media (max-width: 1199.98px) {
    .ai-service-strip {
        min-height: 380px;
    }
    .ai-service-card.is-active .ai-service-card__title {
        font-size: 24px;
    }
    .ai-service-card__title {
        font-size: 16px;
    }
    .banner-section .banner-rw {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .contact-form-sec h2.heading-h2 {
        font-size:36px
    }
    .custom-testimonial-final {
        padding: 20px 0 0
    }
    .address-list-item {
        padding: 28px 25px
    }
    .blog-post {
        gap: 0
    }
    .address-list-item h3,.home-portfolio h3,h1.heading-h1 {
        line-height: 1.2
    }
    .cmn-section br,.enterprises-sec-img,.our-portfolio-sec::after,.we-work-box::after,.we-work-box::before {
        display: none
    }
    .dg-mas-row.row-2 .dg-mas-item-double .dg-mas-row-iner:first-child .dg-mas-item,.portfolio-casestudy-iner ul {
        flex-wrap: wrap
    }

    .portfolio-casestudy-iner ul li {
        margin-bottom: 10px
    }
    .talk-btn a {
        margin-left: 10px
    }
    .btn-cmn a {
        padding: 12px 16px;
        font-size: 14px
    }
    h4.heading-h4 {
        font-size: 17px
    }
}

@media (max-width: 991.98px) {
    .ai-service-strip {
        min-height: auto;
        overflow: visible;
        padding-bottom: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    .ai-service-card {
        flex: unset;
        min-height: 280px;
        transform: none;
        transition: none;
    }
    .ai-service-card.is-active {
        flex: unset;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
    }
    .ai-service-card__title,
    .ai-service-card.is-active .ai-service-card__title {
        font-size: 20px;
    }
    .ai-service-card__bg,
    .ai-service-card:hover .ai-service-card__bg,
    .ai-service-card.is-active .ai-service-card__bg {
        transform: scale(1.02);
        transition: none;
    }
    .ai-service-card__content p,
    .ai-service-card__content h4,
    .ai-service-card__content ul,
    .ai-service-card__content .site-btn {
        opacity: 1;
        max-height: none;
        overflow: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }
    .ai-service-card__content p {
        margin: 0 0 10px;
    }
    .ai-service-card__content h4 {
        margin: 0 0 8px;
    }
    .ai-service-card__content ul {
        margin: 0 0 14px;
    }
    .development-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ai-service-card__title {
        position: relative;
        inset: unset;
        margin-bottom: 10px;
    }
    .bottom-hero-text-wrapper {
        margin-top: 0;
    }
    .pad-b-55 {
        padding-bottom:40px
    }
    .title-font-36 {
        font-size: 28px
    }

    h2.heading-h2 {
        font-size: 28px
    }
    .phase-block .phase-num {
        left: 0
    }
    .Work-phase-inner .phase-block .phase-content {
        width: 100%;
    }
    .transform-bg-sec {
        padding: 30px 20px
    }
    .development-process-row .development-process-col:after {
        width: 75px;
        right: -43px;
        content: none
    }
    section.jccc-sec {
        margin-top: -20px
    }
    .howweworkmain-start,body section.aboutus-testimonial {
        margin-top: 0
    }
    .virtual0I-pd {
        padding-bottom: 60px
    }
    .header-inner {
        padding: 10px 0
    }

    .menus-coll {
        justify-content: flex-end;
        display: flex
    }
    .logos-with-hdngwrp .brand-logo-item,.testibrands-sec .brand-logos .brand-logo-item {
        flex: 0 0 33.33%;
    }
    .contact-forminner .section-textarea {
        flex: 0 0 350px;
        max-width: 350px;
        padding: 20px 25px
    }

    .contact-forminner #enquiry-form {
        padding-left: 10px
    }
    .contact-form-sec h2.heading-h2 {
        line-height: 1.1;
        text-align: left;
        margin-bottom: 10px;
        font-size: 28px
    }
    .home-tabs button.nav-link {
        font-size: 20px;
        margin-bottom: 35px
    }

    .home-tab-data p {
        font-size: 16px;
        line-height: 32px;
        margin-top: 15px
    }

    .home-tabs .tab-content {
        padding-left: 40px
    }
    .address-list,.copyright-sec,.footer-menu-sec {
        flex-wrap: wrap;
        justify-content: center
    }

    .address-list.d-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .address-list-item,.blog--item--wrp .blog--item,.blog--item--wrp .blog--item:nth-child(2),.blog--item--wrp .blog--item:nth-child(3),.blog--item--wrp .blog--item:nth-child(6),.horizontal-card-sec-col4 .card--item-list,.meta-srvc-item {
        flex: 0 0 50%;
        max-width: 50%
    }
    .address-list-item h3,.contact-detail a,.nopage-data p {
        font-size: 22px
    }
    .red-hdng-sec .heading-wrap h3.heading-h3 {
        line-height: 1.3;
    }
    .address-list-item {
        padding: 20px 20px 26px
    }

    .address-list-item p {
        font-size: 17px
    }
    .footer-menu-sec .certification,.footer-menu-sec .footer-menu {
        margin-left: 0
    }
    .footer-menu a {
        margin-left: 0;
        margin-right: 57px;
        margin-top: 20px
    }

    .copyright-menu {
        margin: 0 auto
    }

    .heading-behind-text.t-up-68 {
        top: -78px
    }

    .strech-up-sec {
        padding-bottom: 40px;
        margin-top: -50px
    }
    .header-menu nav.navbar {
        padding: 0
    }
    .cmn-section {
        padding-top: 40px
    }
    .footer-contact-strip__grid {
        grid-template-columns: repeat(2,auto);
        gap: 25px
    }
}

@media (max-width: 767.98px) {
    .banner-section .banner-rw {
        grid-template-columns: 1fr;
    }
    .promise-col-logo {
        display: none;
    }
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .portfolio-casestudy.cmcasestudy-inner .slick-arrow {
        bottom: -37px!important;
    }
    .new_hero_slider .new_hero-inner .new-hero-col h1 {
        font-size: 30px;
    }
    .new-hero-btn-wrapper {
        flex-wrap: wrap;
    }
    .new_hero_slider .new_hero-inner .new-hero-col p {
        line-height: 1.2;
        font-size: 14px;
    }
    .new-hero-btn-wrapper {
        margin-top: 5px;
    }
    body .home-testimonials .testimonial-btn a {
        margin-left:0
    }

    .home-testimonials .client-desc {
        margin-bottom: 0
    }

    .why-partner-inner .why-partner-row .why-partner-col {
        width: 100%
    }

    .home-testimonials .testimonial-btn {
        float: none!important;
        margin: 55px 0 40px;
        text-align: center
    }

    .testimonial-finalsec .slick-prev {
        bottom: -50px
    }

    .testimonial-finalsec .slick-next.slick-arrow {
        right: 0;
        background: #fed602;
        bottom: -50px
    }

    .our-industry-sec .common-slider .slick-arrow {
        bottom: -70px
    }

    .new_faq_sec .faq_header {
        margin-bottom: 20px
    }

    .faq_header h2 {
        margin-bottom: 5px
    }

    .digital_div .quote-name {
        font-size: 16px;
        line-height: normal
    }
        .abfeatures-listing.features li p {
        text-align: start
    }

    .makeusdifferent .solution_grid .card-f {
        flex: 0 0 100%
    }

    .hwework-flex {
        gap: 20px 0
    }

    .howweworkmain-start .cardai_block .cardai-inner {
        flex: 0 0 100%
    }
        .agentic-action-wrap h2.heading-h2 {
        text-align: center;
        margin: 0 0 20px
    }

    .agentic-action-wrap {
        padding: 30px
    }

    section#clientgrow_withus {
        padding-bottom: 90px
    }

    .virtual0I-pd {
        padding-bottom: 60px
    }

    .techframe-sec .yellow-box-sec {
        margin-bottom: 10px!important
    }
    .portfolio--finalsec .scroller-item {
        height: auto
    }

    .portfolio--finalsec .scroller-item img {
        width: 120px
    }

    section.portfolioside-sec {
        padding-top: 30px;
    }
    .builtgrowth-sec {
        background-image: unset;
        padding: 40px 0 145px
    }

    .triangle-right-with-border {
        display: none
    }

    .industry-focused-sec .casestudycards-sec-col {
        flex: 0 0 100%
    }

    .one-size-fits-all .tech_card p {
        font-size: 28px;
        text-align: center;
        line-height: normal
    }

    .looking_div p {
        text-align: center
    }

    .app-development .heading-bottom-paragraph {
        margin-bottom: 0!important
    }

    .development_approach .strech-up-sec {
        padding-bottom: 100px
    }
    .development_approach .timeline-container {
        flex-direction: column
    }

    .ai-coach-section__content-wrapper {
        flex-direction: column
    }
    .blog-form,.card-3-img,.contact-detail-rgt,.masionary-card-item.card-1 img.single-img {
        margin-top: 30px
    }

    .blog-write-sec {
        padding-top: 0
    }

    .blockchain-service-item .btnlink {
        bottom: 12px
    }
    .testimonials-box-first {
        margin-bottom: 1.5rem;
        margin-top: 1.5rem
    }

    .banner-img-main {
        margin-top: 20px
    }

    .we-work-inner {
        margin-bottom: 30px;
        height: auto
    }

    body .we-work-box {
        margin-bottom: 0;
        padding-bottom: 0
    }

    .hrzntl-card-theme-one3col {
        padding-top: 50px
    }

    .review-section .slick-list,.we-padding {
        padding: 0
    }

    .testimonials-bg img {
        display: none
    }

    .vertical-tabs .vertical-inner {
        min-width: 100%;
        flex-wrap: unset
    }
}
@media (max-width: 575.98px) {
    .ai-service-strip__sub {
        font-size: 12px;
        line-height: 1.45;
    }
    .ai-service-strip {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ai-service-card {
        border-radius: 8px;
        min-height: 300px;
    }
    .ai-service-card__title {
        font-size: 16px;
    }
    .ai-service-card.is-active .ai-service-card__title {
        font-size: 18px;
    }
    .development-services__grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .top-hero-text-viewport {
        min-height: 360px;
        width: 340px;
    }
    .bottom-hero-text-wrapper {
        margin-top: 0;
    }
    .development-service-card h3 {
        font-size: 22px;
    }
}

/* Smooth WhatsApp icon motion in header button */
.header-menu .talk-btn a {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
    will-change: transform;
}

.header-menu .talk-btn a svg {
    display: block;
    transform-origin: center;
    animation: whatsappFloat 2.8s ease-in-out infinite;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.header-menu .talk-btn a:hover svg {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.35));
}

.header-menu .talk-btn a:hover {
    transform: translateY(-2px);
}
a {
    text-decoration: none
}
@media (max-width: 1366.98px) {
    .container {
        padding-inline:20px
    }
}
@media (max-width: 1280.98px) {
    .talk-btn a {
        font-size: 16px
    }
}

@media (max-width: 1140px) {
    nav.navbar.navbar-expand-lg {
        margin-right: 0
    }
}
@media (max-width: 1100.98px) {
    .address-list-item h2 {
        font-size: 40px
    }
}
@media (max-width: 1093.98px) {
    .iti__selected-country-primary {
        align-items: start!important
    }
}

@media (max-width: 1024.98px) {
    .contact_form .form-group-row .form-group button {
        margin-top: 14px
    }
}
@media (max-width: 992.98px) {
    .blog-sec {
        padding: 40px 0
    }
}
@media (max-width: 850.98px) {
    .custom-client-play {
        width: 70px;
        height: 60px
    }
    .client-block {
        gap: 0 20px
    }
    .blog-date {
        padding: 5px 10px;
        font-size: 12px
    }

    .blog-info-box h4 {
        font-size: 18px;
        line-height: normal
    }
    .numbers-wrap {
        flex-wrap: wrap;
        gap: 0 0
    }

    .numbers-item {
        flex: 0 0 50%
    }

    .main-banner-flex {
        flex-direction: column
    }

    .banner-right-col {
        margin-bottom: 30px
    }

    .hero-banner-img {
        padding-bottom: 40px
    }

    .testimonial-card-col .slick-arrow {
        bottom: -80px
    }

    .web_container .content {
        min-width: 100%;
        max-width: 100%
    }

    .card-grid .card p {
        line-height: 24px
    }

    .benefits-section__left-list {
        order: 1
    }

    .benefits-section__right-list {
        order: 2
    }

    .benefits-section__center-image {
        order: 3;
        max-width: 100%
    }

    .rag-ai-card {
        margin-top: -115px
    }

    .intauto-ai-card {
        margin-top: -125px
    }

    .era-content-wrap .era-content,.era-content-wrap .era-img {
        width: 100%
    }
}

@media (max-width: 768px) {
    .address-list.d-grid {
        grid-template-columns: repeat(1,1fr)
    }
    .container {
        padding-inline:15px
    }
    .testimonial-sec .client-testimonial-final button.slick-arrow {
        top: 101%
    }
}
@media (min-width: 768px) {
    #enquiry-form .form-sbmt-row {
        padding-left:20px
    }

    .card-grid {
        grid-template-columns: repeat(3,1fr)
    }
}
@media (max-width: 1024px) {
    .form-sbmt-row.visi-form {
        flex-direction: column
    }
}