/* ============================================================
   AI Hero — full-screen cinematic intro section
   ============================================================ */

.ai-hero {
    position: relative;
    overflow: hidden;
    font-family: "Product Sans", Arial, sans-serif;
    margin: 8px 8px 0 8px;
    border-radius: 10px;
}

/* Video background */
.ai-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Dark cinematic overlay */
.ai-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 30, 0.55);
    z-index: 1;
}

/* Flex column body — drives section height */
.ai-hero__body {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 84px 24px 44px;
}

@supports (min-height: 100svh) {
    .ai-hero__body {
        min-height: 100svh;
    }
}

/* Text stage — fills all vertical space between header and cards */
.ai-hero__text-stage {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 1040px;
}

/* Phrases and final heading — all stacked in same space */
.ai-hero__phrase,
.ai-hero__final {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 20px;
    text-align: center;
    color: #fff;
    font-size: clamp(28px, 5vw, 100px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.025em;
    opacity: 0;
    transform: translateY(calc(-50% + 28px));
    transition: opacity 0.88s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.88s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.ai-hero__final {
    font-size: clamp(36px, 6.5vw, 100px);
}

.ai-hero__phrase.is-active,
.ai-hero__final.is-active {
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
}

.ai-hero__phrase.is-exit {
    opacity: 0;
    transform: translateY(calc(-50% - 28px));
    transition: opacity 0.62s ease, transform 0.62s ease;
}

/* Cards wrapper */
.ai-hero__cards-wrap {
    flex-shrink: 0;
    width: 100%;
    max-width: 1240px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.88s ease, transform 0.88s ease;
    pointer-events: none;
}

.ai-hero__cards-wrap.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* 4-column grid */
.ai-hero__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* Individual card */
.ai-hero__card {
    background: #fff;
    border-radius: 10px;
    padding: 16px 16px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    min-height: 150px;
}

/* Image on the left */
.ai-hero__card-icon {
    width: 80px;
    border-radius: 7px;
    /* background: #eef1fb; */
    flex-shrink: 0;
    overflow: hidden;
}

.ai-hero__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content on the right */
.ai-hero__card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ai-hero__card-title {
        margin: 23px 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    max-height: calc(1.42em * 2);
}

.ai-hero__card-link {
    display: inline-block;
    align-self: flex-end;
    font-size: 12.5px;
    font-weight: 600;
    color: #014088;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
    margin-top: auto;
}

.ai-hero__card-link:hover {
    color: #2654d6;
}

.ai-hero__card-sub {
    margin: 0;
    font-size: 12.5px;
    color: #606888;
    line-height: 1.35;
    margin-top: auto;
}

.ai-hero__card-sub span {
    color: #014088;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .ai-hero__cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .new-research-grid {
        grid-auto-rows: auto !important;
    }
    .aimvp-page p {
    margin-bottom: 10px;
}
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
    .ai-hero__body {
        padding: 88px 16px 32px;
    }

    .ai-hero__text-stage {
        min-height: 180px;
    }

    .ai-hero__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-hero__card {
        flex-direction: column;
        min-height: 0;
        padding: 12px;
        gap: 8px;
    }

    .ai-hero__card-icon {
        width: 56px;
        height: 56px;
    }

    .ai-hero__card-icon img {
        object-fit: contain;
    }

    .ai-hero__card-content {
        flex: none;
    }
}

/* ============================================================
   End AI Hero
   ============================================================ */

/* ---- Header scroll-hide / show ---- */
.new-header__bar {
    transition: background 0.35s ease, backdrop-filter 0.35s ease,
                box-shadow 0.35s ease,
                transform 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.new-header__bar.nh-hidden {
    transform: translateY(-120%);
}

.new-hero-section {
    font-family: "Product Sans", Arial, sans-serif;
    padding: 38px 20px 58px;
    background: #fff;
    color: #121331;
}

.new-hero-wrap {
  
    margin: 0 auto;
}

.new-hero-head {
    max-width: 820px;
    margin: 0 auto 68px;
    text-align: center;
}

.new-hero-head h2, .new-industries-head h2 ,.new-research-head h2 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
}
.new-hero-head h1 {
    font-size: 54px;
    margin-bottom: 30px;
}
.new-hero-head h1 span {
    color: #014088;
    font-weight: 500;
}

.new-hero-head p {
    max-width: 790px;
    margin: 0 auto 16px;
    font-size: 18px;
    line-height: 1.45;
    color: #121331;
}

.new-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 17px;
    border-radius: 7px;
    background: #014088;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(91, 71, 155, 0.28);
    transition: 0.3s ease;
}

.new-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(91, 71, 155, 0.36);
    background-color: #014088;
    color: #fff !important;
}

.new-hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.new-hero-card {
    position: relative;
    min-height: 340px;
    border-radius: 16px;
    background: transparent;
    transform: translateZ(0) scale(1);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.new-hero-card:hover {
    transform: translateZ(0) scale(1.06);
}

.new-hero-visual {
    height: 160px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.new-hero-visual h3 {
    margin: 0;
    font-size: 35px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: -0.03em;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.new-hero-gradient-1 {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.68), transparent 28%),
        linear-gradient(135deg, #ff7a59 0%, #ff4f86 42%, #6d5dfc 100%);
}

.new-hero-gradient-2 {
    background:
        radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.72), transparent 30%),
        linear-gradient(135deg, #9be7ff 0%, #8f8cff 48%, #5a45d6 100%);
}

.new-hero-gradient-3 {
    background:
        radial-gradient(circle at 18% 85%, rgba(255, 255, 255, 0.62), transparent 30%),
        linear-gradient(135deg, #7cf6d1 0%, #34b8ff 45%, #7347ff 100%);
}

.new-hero-gradient-4 {
    background:
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.68), transparent 30%),
        linear-gradient(135deg, #f4b7ff 0%, #8c6dff 45%, #261b6f 100%);
}

.new-hero-content {
    position: relative;
    z-index: 2;
    width: calc(100% - 32px);
    min-height: 180px;
    margin: -42px auto 0;
    padding: 24px 18px 22px;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 16px 28px rgba(102, 72, 150, 0.18);
    display: flex;
    flex-direction: column;
}

.new-hero-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #444444;
}


.new-hero-link {
    display: inline-flex;
    width: max-content;
    margin-top: auto;
    padding-top: 16px;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 5px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition:
        opacity 0.65s ease,
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.new-hero-card:hover .new-hero-link {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.new-landing-page .container{
  max-width: 1470px !important;
  width: 100%;
}
section.new-hero-section {
    padding-top: 80px;
}

/* ============================================================
   Build Page
   ============================================================ */
.build-page .container {
    max-width: 1280px !important;
    width: 100%;
}

.build-hero {
    position: relative;
    overflow: hidden;
    padding: 230px 0 120px;
    background:
        radial-gradient(circle at top right, rgba(1, 64, 136, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.build-hero::before,
.build-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(18px);
    opacity: 0.8;
}

.build-hero::before {
    width: 160px;
    height: 160px;
    right: -36px;
    top: 28px;
    background: rgba(1, 64, 136, 0.08);
}
section.build-hero {
    background-image: url('/images/Build-Digital-Products-new.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
section.scale-hero{
    background-image: url('/images/scale-bg.webp') !important;
}
section.specialization-hero{
    background-image: url('/images/specialization-main.webp') !important;
}
section.transform-hero {
    background-image: url('/images/Transform-Digital-Businesses-2.webp') !important;
}
section.build-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 12, 30, 0.74);
    border-radius: unset;
    box-shadow: unset;
    opacity: 1;
    filter: un;
}
.build-hero::after {
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: -96px;
    background: rgba(9, 106, 216, 0.06);
}

.build-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.build-pill,
.build-section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(1, 64, 136, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: none;
}
span.build-pill {
    background: #014088;
}

.build-hero h1 {
    margin: 22px auto 20px;
    max-width: 900px;
    color: #fff;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.03;
    font-weight: 700;
    letter-spacing: -0.045em;
}
a.rounded-btn-fill {
    background: #ffffff;
}
.build-hero p {
    max-width: 860px;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    line-height: 1.72;
}

.build-services {
    padding: 80px 0 110px;
    background: #fff;
}

.build-services__head {
    max-width: 100%;
    margin: 0 0 34px;
    text-align: left;
}

.build-services__head h2 {
    margin: 0;
    color: #06122f;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.build-services__head h2 span {
    color: #014088;
}

.build-services__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 78px;
    gap: 14px;
    align-items: stretch;
    margin-top: 12px;
    grid-auto-flow: dense;
}

.build-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 30px 30px 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(1, 64, 136, 0.08);
    box-shadow: 0 12px 30px rgba(6, 18, 47, 0.08);
    overflow: hidden;
    color: #06122f;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.build-card:visited {
    color: #06122f;
}

.build-card::after {
    content: "";
    position: absolute;
    inset: auto -54px -54px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 64, 136, 0.08) 0%, rgba(1, 64, 136, 0) 72%);
    pointer-events: none;
}

/* Stretched link: keeps the whole card clickable while leaving the
   title/description text outside the anchor so it stays selectable/copyable. */
.build-card__link {
    position: absolute;
    inset: 0;
    z-index: 0;
    text-decoration: none;
}

.build-card:hover,
.build-card:focus-visible {
    transform: translateY(-6px);
    background: #014088;
    box-shadow: 0 22px 50px rgba(1, 64, 136, 0.22);
    border-color: rgba(1, 64, 136, 0.22);
    color: #fff;
    outline: none;
}

.build-card__meta {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 26px;
}

.build-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(1, 64, 136, 0.08);
    color: #014088;
    border: 1px solid rgba(1, 64, 136, 0.12);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.build-card__body {
    position: relative;
    z-index: 1;
}

.build-card h3 {
    margin: 0 0 12px;
    font-size: 35px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: inherit;
    transition: color 0.35s ease;
}

.build-card p {
    margin: 0;
    color: #44506f;
    font-size: 18px;
    line-height: 1.65;
    transition: color 0.35s ease;
}

.build-card:hover h3,
.build-card:hover p,
.build-card:hover .build-card__index,
.build-card:focus-visible h3,
.build-card:focus-visible p,
.build-card:focus-visible .build-card__index {
    color: #fff;
}

.build-card:hover .build-card__index,
.build-card:focus-visible .build-card__index {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
}

.build-card--wide {
    min-height: 100%;
}

.build-card--tall {
    min-height: 100%;
}

.build-card--half {
    min-height: 100%;
}

.build-services__grid > .build-card:nth-child(1) {
    grid-column: 1 / span 4;
    grid-row: 1 / span 5;
}

.build-services__grid > .build-card:nth-child(2) {
    grid-column: 5 / span 4;
    grid-row: 1 / span 2;
}

.build-services__grid > .build-card:nth-child(3) {
    grid-column: 9 / span 4;
    grid-row: 1 / span 2;
}

.build-services__grid > .build-card:nth-child(4) {
    grid-column: 5 / span 5;
    grid-row: 3 / span 3;
}

.build-services__grid > .build-card:nth-child(5) {
    grid-column: 1 / span 8;
    grid-row: 6 / span 3;
}

.build-services__grid > .build-card:nth-child(6) {
    grid-column: 10 / span 3;
    grid-row: 3 / span 6;
}

.build-cta {
    padding: 60px 0 80px;
    background: #fff;
}

.build-cta__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px 40px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #014088 0%, #0c5cbc 100%);
    box-shadow: 0 24px 60px rgba(1, 64, 136, 0.22);
    overflow: hidden;
}

.build-cta__box::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.build-cta__content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.build-section-kicker--light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.build-cta h2 {
    margin: 18px 0 12px;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.build-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
}

.build-cta__btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: #fff;
    color: #014088;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.build-cta__btn:hover {
    transform: translateY(-2px);
    color: #014088;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1100px) {
    .build-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
    }

    .build-services__grid > .build-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .build-card {
        min-height: 240px;
    }
}

@media (max-width: 767px) {
    .build-hero {
        padding: 90px 0 70px;
    }

    .build-services {
        padding: 18px 0 84px;
    }

    .build-cta {
        padding: 0 0 92px;
    }

    .build-hero h1 {
        margin-top: 18px;
    }

    .build-services__head { margin-bottom: 24px; }

    .build-services__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .build-services__grid > .build-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .build-card {
        min-height: 220px;
        padding: 24px 22px 22px;
        border-radius: 24px;
    }

    .build-card h3 {
        font-size: 22px;
    }

    .build-card p,
    .build-hero p,
    .build-cta p {
        font-size: 18px;
    }

    .build-cta__box {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 22px;
        border-radius: 26px;
    }

    .build-cta__btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .build-hero {
        padding: 78px 0 58px;
    }

    .build-hero h1 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .build-services__head h2 {
        font-size: 28px;
    }
}

/* Scale page: 7-card "Solutions we offer" premium masonry grid (services/scale/index.php) */
.scale-page .build-services {
    background: #f4f6fb;
}

.scale-services__grid .build-card {
    border-radius: 18px;
    padding: 28px 28px 26px;
}

.scale-services__grid .build-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.scale-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(1, 64, 136, 0.08);
    color: #014088;
    font-size: 18px;
    flex-shrink: 0;
    transition: background-color 0.35s ease, color 0.35s ease;
}

.build-card:hover .scale-card__icon,
.build-card:focus-visible .scale-card__icon {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.scale-card__icon-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    margin: 4px 0 18px;
}

.scale-card__icon--lg {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    font-size: 34px;
}

.scale-services__grid .build-card h3 {
    font-size: 22px;
    margin: 0 0 10px;
}

.scale-services__grid .build-card p {
    font-size: 17px;
    line-height: 1.4;
}

.scale-card--merged .scale-card__icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
}

@media (min-width: 1101px) {
    .scale-card--merged h3 {
        font-size: 26px;
    }

    .scale-card--merged p {
        max-width: 640px;
    }
}

@media (min-width: 1101px) {
    .scale-services__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, auto));
        grid-template-areas:
            "card1 card2 card3"
            "card1 card4 card5"
            "card6 card7 card7";
        grid-auto-rows: auto;
        align-items: stretch;
        gap: 20px;
    }

    .scale-services__grid > .build-card {
        height: auto;
        min-height: 0;
    }

    .scale-services__grid > .build-card:nth-child(1) { grid-area: card1; }
    .scale-services__grid > .build-card:nth-child(2) { grid-area: card2; }
    .scale-services__grid > .build-card:nth-child(3) { grid-area: card3; }
    .scale-services__grid > .build-card:nth-child(4) { grid-area: card4; }
    .scale-services__grid > .build-card:nth-child(5) { grid-area: card5; }
    .scale-services__grid > .build-card:nth-child(6) { grid-area: card6; }
    .scale-services__grid > .build-card:nth-child(7) { grid-area: card7; }
}

@media (max-width: 767px) {
    .scale-services__grid .build-card {
        padding: 22px 20px 20px;
        border-radius: 16px;
    }

    .scale-services__grid .build-card h3 {
        font-size: 19px;
    }

    .scale-card__icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .scale-card__icon--lg {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .scale-card__icon-wrap {
        min-height: 70px;
        margin: 0 0 12px;
    }
}

/* Specialization page: 8-card "Solutions we offer" grid (services/specialization/index.php) */
/* Same masonry template as .scale-services__grid, plus a 4th row for the 8th card. */
@media (min-width: 1101px) {
    .specialization-scale-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(4, minmax(0, auto));
        grid-template-areas:
            "card1 card2 card2"
            "card1 card3 card4"
            "card5 card6 card6"
            "card7 card7 card8";
        grid-auto-rows: auto;
    }

    .specialization-scale-grid > .build-card {
        height: auto;
        min-height: 0;
    }

    .specialization-scale-grid > .build-card:nth-child(1) { grid-area: card1; }
    .specialization-scale-grid > .build-card:nth-child(2) { grid-area: card2; }
    .specialization-scale-grid > .build-card:nth-child(3) { grid-area: card3; }
    .specialization-scale-grid > .build-card:nth-child(4) { grid-area: card4; }
    .specialization-scale-grid > .build-card:nth-child(5) { grid-area: card5; }
    .specialization-scale-grid > .build-card:nth-child(6) { grid-area: card6; }
    .specialization-scale-grid > .build-card:nth-child(7) { grid-area: card7; }
    .specialization-scale-grid > .build-card:nth-child(8) { grid-area: card8; }
}

/* third section css */
.new-industries-section {
    font-family: "Product Sans", Arial, sans-serif;
    padding: 90px 20px 80px;
    background: #f4f6fb;
    color: #000000;
}

.new-industries-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.new-industries-head {
    max-width: 700px;
    margin: 0 auto 68px;
    text-align: center;
}


.new-industries-head p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.45;
    color: #34384a;
}

.new-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
}

.new-industries-col {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.new-industries-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    color: #014088;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.35s ease, transform 0.35s ease;
}

.new-industries-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.new-industries-link::after {
    content: "↗";
    margin-left: 8px;
    font-size: 14px;
    opacity: 0;
    transform: translate(-8px, 6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.new-industries-link:hover {
    color: #065ab9;
    transform: translateX(4px);
}

.new-industries-link:hover::before {
    transform: scaleX(0);
    transform-origin: right;
}

.new-industries-link:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}
/* /fourth slider section css */
.new-research-section {
    font-family: "Product Sans", Arial, sans-serif;
    padding: 78px 20px 72px;
   
    color: #101548;
}

.new-research-wrap {
    max-width: 1260px;
    margin: 0 auto;
}

.new-research-head {
    max-width: 1200px;
    margin: 0 auto 36px;
    text-align: center;
}



.new-research-head p {
    margin: 0 auto;
    max-width: 1200px;
    font-size: 18px;
    line-height: 1.45;
    color: #050945;
}

.new-research-swiper {
    padding: 0 0 42px;
}

.new-research-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
    grid-auto-rows: 326px;
    gap: 18px;
    padding: 20px 20px 60px 20px;
}

.new-research-card {
    display: flex;
    overflow: hidden;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(44, 50, 90, 0.08);
    transition: box-shadow 0.55s ease;
        border: 1px solid #eae2e2c4;
}

.new-research-card:hover {
    box-shadow: 0 18px 38px rgba(44, 50, 90, 0.16);
}

.new-research-img-wrap {
    flex: 0 0 34%;
    min-height: 100%;
    overflow: hidden;
}

.new-research-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.new-research-card:hover .new-research-img {
    transform: scale(1.1);
}

.industries-solution-img-wrap {
    flex: 0 0 34%;
    min-height: 100%;
    overflow: hidden;
}

.industries-solution-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.new-research-card:hover .industries-solution-img {
    transform: scale(1.1);
}

.new-research-card-small .industries-solution-img-wrap {
    flex: none;
    width: 100%;
    height: 185px;
    min-height: 185px;
}

.new-research-card-small {
    flex-direction: column;
}

.new-research-card-small .new-research-img-wrap {
    flex: none;
    width: 100%;
    height: 185px;
    min-height: 185px;
}

.new-research-card-wide,
.new-research-card-small {
    grid-column: span 2;
}

.new-research-img {
    flex: 0 0 34%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1);
}


.new-research-card:hover .new-research-img {
    transform: scale(1.08);
}
.new-research-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 36px 20px;
}

.new-research-card-small .new-research-content {
    padding: 18px 16px 20px;
}



.new-research-card-small .new-research-content a {
    right: 16px;
    bottom: 15px;
}

.new-research-content span {
    width: max-content;
    margin-bottom: 14px;
    padding: 3px 7px;
    border-radius: 3px;
    background: #014088;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}

.new-research-content h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 500;
    color: #000000;
}

.new-research-card-small .new-research-content h3 {
    font-size: 19px;
}

.new-research-content small {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444444;
}

.new-research-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
    color: #444444;
}

.new-research-content a {
    position: relative;
    width: max-content;
    margin-top: auto;
    margin-left: auto;
    color: #000000;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
}

.new-research-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.new-research-content a:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}
.sub-pages-img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.new-research-img-1 {
    /* background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35)),
        radial-gradient(circle at 20% 20%, #36ffb0, transparent 28%),
        linear-gradient(135deg, #020617 0%, #07164a 42%, #00c276 100%); */
       background: linear-gradient(135deg, #021b3d 0%, #064ea4 40%, #014088 70%, #3ea0ff 100%);
}
.saas-img img {
    height: 507px;
    margin-top: 19px;
}
.new-research-image-1 {
    background-image: url(/images/build-1.jpg);
    background-size: cover;
    background-position: center;
}
.new-research-image-2 {
    background-image: url(/images/scale.png);
    background-size: cover;
    background-position: center;
}
.new-research-image-3 {
    background-image: url(/images/transform.jfif);
    background-size: cover;
    background-position: center;
}
.new-research-image-4 {
    background-image: url(/images/specialization.webp);
    background-size: cover;
    background-position: center;
}

.new-research-img-2 {
    background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,0.45), transparent 22%),
        linear-gradient(135deg, #10233f 0%, #174b78 35%, #79e6ff 65%, #d8a35b 100%);
}

.new-research-img-3 {
    background:
        radial-gradient(circle at 80% 16%, #ff2a1f, transparent 20%),
        linear-gradient(135deg, #020617 0%, #151b2b 42%, #a31319 70%, #f7b46c 100%);
}

.new-research-img-4 {
    background:
        radial-gradient(circle at 68% 35%, #ffdd72, transparent 18%),
        linear-gradient(135deg, #7538ff 0%, #ff2ebd 36%, #ff934d 70%, #1511a8 100%);
}
.new-research-imgs-1{
    background-image:url(/images/new-folio-games.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.new-research-imgs-2{
    background-image:url(/images/new-kaycyber.webp);
    background-position: center bottom;
}
.new-research-imgs-3{
    background-image:url(/images/netrix-new.webp);
    
}
.new-research-imgs-4{
    background-image:url(/images/nw-guidalor.webp);
    background-position: center bottom;

}
.new-research-imgs-5{
    background-image:url(/images/v2a-new.webp);
    background-position: center bottom;

}
.new-research-imgs-6{
    background-image:url(/images/blacky-bg.webp);
    background-position: center bottom;

}
.new-research-imgs-7{
    background-image:url(/images/explanify-new.webp);
    background-position: center bottom;

}
.new-research-imgs-8{
    background-image:url(/images/skillscoop-new.webp);
    background-position: center bottom;

}

.new-research-pagination {
    bottom: 0 !important;
}

.new-research-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000000;
    opacity: 0.28;
    transition: 0.35s ease;
}

.new-research-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 20px;
    opacity: 1;
}
/* /next sec css */
.new-careers-section {
    font-family: "Product Sans", Arial, sans-serif;
    padding: 24px 20px;
    background: #014088;}

.new-careers-wrap {
    max-width: 1280px;
    min-height: 455px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.new-careers-content {
    max-width: 620px;
    padding-left: 20px;
}

.new-careers-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    margin-bottom: 14px;
    border-radius: 4px;
    background: #2a237c;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}

.new-careers-content h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #fff;
}

.new-careers-content p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.new-careers-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 39px;
    padding: 0 14px;
    border-radius: 6px;
    background: #fff;
    color: #242424;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 16px 28px rgba(118, 97, 185, 0.28);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.new-careers-btn span {
    font-size: 14px;
    transition: transform 0.45s ease;
}

.new-careers-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(118, 97, 185, 0.38);
}

.new-careers-btn:hover span {
    transform: translate(3px, -3px);
}

.new-careers-image {
    height: 455px;
    border-radius: 22px;
    overflow: hidden;
}

.new-careers-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.new-careers-image:hover img {
    transform: scale(1.06);
}
/* industries section */
.industries-hero-section {
    font-family: "Product Sans", Arial, sans-serif;
    padding: 150px 20px 90px;
    background: #014088;
    text-align: center;
}

.industries-hero-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 30px;
    background: #e7f1fc;
    color: #014088;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.industries-hero-title {
    font-size: 50px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}

.industries-hero-text {
    max-width: 1100px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.55;
    color: #f0f0f0;
}

.industries-hero-ratings {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.industries-hero-rating-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(12, 24, 72, 0.08);
}

.industries-hero-stars {
    color: #ffb800;
    font-size: 11px;
    letter-spacing: 2px;
}

.industries-hero-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0c1848;
    font-size: 14px;
    font-weight: 600;
}

.industries-hero-brand i {
    font-size: 13px;
    color: #014088;
}
.industries-hero-rating-card img {
    height: 50px;
}
.industries-showcase-section {
    padding: 60px 20px 90px;
      
}
.latest_blog_section_resource .blogs_card img {
    width: 100%;
    object-fit: cover;
    height: 201px;
}
section.common_sec.adv_technology.industry-blog {
    padding-top: 20px !important;
}
section.success-stories.indstry-stories {
    background: #f4f6fb;
}
.industries-showcase-wrap {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
      height: 800px;
    overflow: hidden;
    border: 4px solid #014088;
}



.industries-showcase-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.35));
    border-radius:10px;
    object-fit: cover;      /* fills container without distortion */
    object-position: center center; 
}

/* industries problem & solution */
.industries-solution-section {
    font-family: "Product Sans", Arial, sans-serif;
    padding: 90px 20px;
   background: #f4f6fb;
}

.industries-solution-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-solution-head {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.industries-solution-head h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: #0c1848;
    margin: 18px 0 16px;
}

.industries-solution-head p {
    font-size: 18px;
    line-height: 1.6;
    color: #5a5f73;
}

.industries-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 36px;
}

.industries-problem-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 18px;
    padding: 34px 28px;
    box-shadow: 0 14px 34px rgba(12, 24, 72, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.industries-problem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0c1848 0%, #014088 55%, #2a7de1 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.industries-problem-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 24px 46px rgba(1, 64, 136, 0.16);
}

.industries-problem-card:hover::before {
    transform: scaleX(1);
}

.industries-problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e7f1fc;
    color: #014088;
    font-size: 22px;
    margin-bottom: 20px;
}

.industries-problem-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0c1848;
    margin: 0 0 10px;
}

.industries-problem-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #5a5f73;
    margin: 0;
}

.industries-solution-banner {
    display: flex;
    /* align-items: center; */
    gap: 28px;
    padding: 40px 44px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 35%),
        linear-gradient(135deg, #0c1848 0%, #014088 55%, #2a7de1 100%);
    box-shadow: 0 26px 50px rgba(1, 64, 136, 0.28);
}

.industries-solution-banner-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 28px;
}

.industries-solution-banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.industries-solution-banner-content h3 {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.industries-solution-banner-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #d9e6f7;
    margin: 0 0 14px;
}

.industries-solution-btn {
    align-self: flex-start;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 14px 26px;
    border-radius: 30px;
    background: #fff;
    color: #014088;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industries-solution-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    color: #014088;
}

@media (max-width: 991px) {
    .industries-problem-grid {
        grid-template-columns: 1fr;
    }

    .industries-solution-banner {
        flex-direction: column;
        text-align: center;
        padding: 34px 26px;
    }

    .industries-solution-banner-content {
        align-items: center;
    }

    .industries-solution-btn {
        align-self: center;
    }
}

/* industries overview / problem statement */
.industries-overview-section {
    font-family: "Product Sans", Arial, sans-serif;
    padding: 70px 20px;
    background: #f4f6fb;
}

.industries-overview-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-overview-head {
    margin-bottom: 26px;
}

.industries-overview-head h2 {
    font-size: 35px;
    font-weight: 700;
    color: #0c1848;
    margin: 0;
}

.industries-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.industries-overview-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 18px rgba(12, 24, 72, 0.06);
}

.industries-overview-card-wide {
    grid-column: 1 / -1;
}

.industries-overview-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
}

.industries-overview-card-green .industries-overview-icon {
    background: #e6f4ea;
    color: #1f9254;
}

.industries-overview-card-blue .industries-overview-icon {
    background: #e7f1fc;
    color: #2654d6;
}

.industries-overview-card-purple .industries-overview-icon {
    background: #efeafc;
    color: #5a3fd6;
}

.industries-overview-card p {
    font-size: 18px;
    line-height: 1.65;
    color: #34384a;
    margin: 0;
}

/* ai mvp page css */
.aimvp-page {
    font-family: "Product Sans", Arial, sans-serif;
    background: #fff;
}
.aimvp-page h1,
.aimvp-page h2,
.aimvp-page h3,
.aimvp-page h4 {
    font-family: "Product Sans", Arial, sans-serif;
    color: #06122f !important;
    font-weight: 700;
    letter-spacing: -0.03em;
}
.aimvp-page p,
.aimvp-page li {
    font-family: "Product Sans", Arial, sans-serif;
    color: #44506f;
}
.aimvp-page .heading_new h2 {
    font-size: clamp(28px, 3.2vw, 42px) !important;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.aimvp-page .heading_new.text-center p {
    color: #44506f !important;
    font-size: 18px !important;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
}
.aimvp-page .linee {
    height: 4px;
    width: 64px;
    border-radius: 4px;
    background: #014088;
    margin: 18px auto 26px auto;
}
.aimvp-page .common_sec {
    padding: 90px 0;
}
section.about_us_banner.portfolio_headarea.career_header.new-ui-ux {
    background: #014088 !important;
}
/* ---------- Banner (kept same structure, theme refreshed) ---------- */
.aimvp-page .web_app_header {
    background:
        radial-gradient(circle at top right, rgba(1, 64, 136, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    padding: 145px 0 80px  !important;
}
.aimvp-page .web_app_header h1 {
    font-size: clamp(34px, 4.4vw, 57px) !important;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}
.aimvp-page .web_app_header > .container > aside > p:first-of-type {
    font-weight: 700;
    font-size: 19px;
}
.aimvp-page .web_app_header p {
    font-size: 17px;
    line-height: 1.75;
    color: #44506f;
}

/* ---------- AI MVP Stance cards ---------- */
.aimvp-page .webapp_box_section {
    background: #fff;
}
.aimvp-page .app_box {
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(6, 18, 47, 0.08);
    border: 1px solid rgba(1, 64, 136, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    background: #fff;
    padding: 36px 30px;
    height: 100%;
}
.aimvp-page .app_box:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(1, 64, 136, 0.18);
}
.aimvp-page .app_box .app_box_icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(1, 64, 136, 0.08);
}
.aimvp-page .app_box .app_box_icon i {
    color: #014088;
    font-size: 22px;
}
.aimvp-page .app_box > p {
    font-size: 21px !important;
    font-weight: 700;
    color: #06122f;
    margin-bottom: 30px;
}
.aimvp-page .app_box ul li {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* ---------- Technologies section (full redesign) ---------- */
.aimvp-page .aimvp-tech-section {
    background:
        radial-gradient(circle at top right, rgba(1, 64, 136, 0.07), transparent 35%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}
.aimvp-page .aimvp-tech-pills {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 46px;
    list-style: none !important;
    padding: 0;
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.aimvp-page .aimvp-tech-pills::-webkit-scrollbar {
    display: none;
}
.aimvp-page .aimvp-tech-pills > li {
    margin: 0;
    flex: 0 0 auto;
    width: auto !important;
    border: none !important;
    float: none !important;
}
.aimvp-page .aimvp-tech-pill {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 13px 26px !important;
    border-radius: 999px !important;
    background: #fff;
    border: 1px solid rgba(1, 64, 136, 0.14) !important;
    color: #014088;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    margin: 0 !important;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.aimvp-page .aimvp-tech-pill::after {
    content: none !important;
}
.aimvp-page .aimvp-tech-pill:hover {
    border-color: rgba(1, 64, 136, 0.3);
    box-shadow: 0 10px 24px rgba(1, 64, 136, 0.12);
}
.aimvp-page li.active .aimvp-tech-pill,
.aimvp-page .aimvp-tech-pill.is-active {
    background: #014088 !important;
    border-color: #014088 !important;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(1, 64, 136, 0.25);
}
.aimvp-page .aimvp-tech-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}
.aimvp-page .aimvp-tech-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 14px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(1, 64, 136, 0.08);
    box-shadow: 0 10px 26px rgba(6, 18, 47, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.aimvp-page .aimvp-tech-card:hover {
    transform: translateY(-6px);
    background: #014088;
    box-shadow: 0 20px 44px rgba(1, 64, 136, 0.22);
}
.aimvp-page .aimvp-tech-card .aimvp-tech-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    /* background: rgba(1, 64, 136, 0.06); */
    transition: background-color 0.3s ease;
}
.aimvp-page .aimvp-tech-card:hover .aimvp-tech-icon {
    /* background: rgba(255, 255, 255, 0.14); */
}
.aimvp-page .aimvp-tech-card .aimvp-tech-icon img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.aimvp-page .aimvp-tech-card span {
    font-size: 14px;
    font-weight: 700;
    color: #06122f;
    transition: color 0.3s ease;
}
.aimvp-page .aimvp-tech-card:hover span {
    color: #fff;
}
.aimvp-page .ai-core-services {
    background: #fff;
}
.aimvp-page .ai-core-services .ai-core-intro {
    max-width: 720px;
    margin: 0 auto 6px;
}
.aimvp-page .ai-core-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.aimvp-page .ai-service-card {
    display: flex;
    flex-direction: column;
    background: rgb(1 64 136 / 8%);
    border-radius: 20px;
    border: 1px solid rgba(1, 64, 136, 0.08);
    box-shadow: 0 10px 26px rgba(6, 18, 47, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.aimvp-page .ai-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(1, 64, 136, 0.18);
    border-color: #014088;
    background: #fff;
}
/* .aimvp-page .ai-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(1, 64, 136, 0.18);
    border-color: #014088;
} */
.aimvp-page .ai-service-card:hover *{
    color: #014088 !important;
}
.aimvp-page .ai-service-card .ai-service-img {
    height: 150px;
    overflow: hidden;
}
.aimvp-page .ai-service-card .ai-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.4s ease;
}
.aimvp-page .ai-service-card:hover .ai-service-img img {
    transform: scale(1.06);
}
.aimvp-page .ai-service-card .ai-service-content {
    flex: 1;
    padding: 26px 24px 18px;
}
.aimvp-page .ai-service-card h3 {
    margin-top: 0;
    font-size: 20px !important;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.aimvp-page .ai-service-card p {
    font-size: 14.5px;
    line-height: 1.65;
    transition: color 0.3s ease;
}
.aimvp-page .ai-service-card:hover h3 {
    color: #014088;
}
.aimvp-page .ai-service-card:hover .ai-service-content p {
    color: #1a2436;
}
.aimvp-page .ai-service-card ul {
    margin: 16px 0 0;
    padding-left: 0;
    list-style: none;
}
.aimvp-page .ai-service-card ul li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 22px;
    font-size: 13.5px;
    color: #44506f;
}
.aimvp-page .ai-service-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #014088;
}
.aimvp-page .ai-service-footer {
    margin-top: auto;
    padding: 14px 24px;
    background: rgba(1, 64, 136, 0.06);
    border-top: 1px solid rgba(1, 64, 136, 0.08);
}
.aimvp-page .ai-service-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #014088;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}
.aimvp-page .ai-service-footer a:hover {
    color: #0c5cbc;
    gap: 10px;
}

/* ai core services - expanding image cards */
.aimvp-page .ai-core-expand-section {
    background: #fff;
}
.aimvp-page .ai-core-expand-section .ai-core-intro {
    max-width: 720px;
    margin: 0 auto 6px;
}
.aimvp-page .ai-expand-grid {
    display: flex;
    align-items: stretch;
    gap: 14px;
    height: 620px;
    margin-top: 50px;
}
.aimvp-page .ai-expand-card {
    position: relative;
    flex: 1 1 0%;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.aimvp-page .ai-expand-card:hover,
.aimvp-page .ai-expand-card:focus-within {
    flex: 2.6 1 0%;
}
.aimvp-page .ai-expand-bg {
    position: absolute;
    inset: 0;
}
.aimvp-page .ai-expand-bg::after {
    content: "";
    position: absolute;
    inset: 0;
 
}
section.portfolio_headarea.career_header.web_app_header.space.new-industry-page {
    padding-bottom: 80px !important;
}
.aimvp-page .ai-expand-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aimvp-page .ai-expand-arrow {
    position: absolute;
       top: 20px;
    right: 14px;
    z-index: 3;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 13px;
    opacity: 0;
    transform: rotate(-45deg) translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.aimvp-page .ai-expand-card:hover .ai-expand-arrow {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: rotate(-45deg) translateY(0);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, background 0.3s ease, border-color 0.3s ease;
}

/* heading is pinned to the top independently of the paragraph so it never shifts as the card widens */
.aimvp-page .ai-expand-title {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 40px;
    z-index: 2;
    margin: 0;
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1.3;
    transition: font-size 0.5s ease;
}
.aimvp-page .ai-expand-card:hover .ai-expand-title {
    font-size: 26px !important;
    right: 24px;
}

.aimvp-page .ai-expand-text {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    color: #fff;
}
.aimvp-page .ai-expand-text p {
    margin: 0;
    opacity: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.aimvp-page .ai-expand-card:hover .ai-expand-text p {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.aimvp-page .techno_tab .nav-tabs {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    border: none;
    padding: 0 0 40px;
    list-style: none !important;
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.aimvp-page .techno_tab .nav-tabs::-webkit-scrollbar {
    display: none;
}
.aimvp-page .techno_tab .nav-tabs > li {
    float: none !important;
    width: auto !important;
    border: none !important;
    flex: 0 0 auto;
}
.aimvp-page .techno_tab .nav-tabs > li > a {
    display: inline-flex !important;
    align-items: center;
    border: 1px solid rgba(1, 64, 136, 0.14) !important;
    border-radius: 999px !important;
    background: #fff;
    color: #014088;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    padding: 13px 28px !important;
    margin: 0 !important;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.aimvp-page .techno_tab .nav-tabs > li > a::after {
    content: none !important;
}
.aimvp-page .techno_tab .nav-tabs > li.active > a,
.aimvp-page .techno_tab .nav-tabs > li.active > a:focus,
.aimvp-page .techno_tab .nav-tabs > li.active > a:hover,
.aimvp-page .techno_tab .nav-tabs > li > a:hover {
    background: #014088 !important;
    color: #fff !important;
    border-color: #014088 !important;
    box-shadow: 0 14px 30px rgba(1, 64, 136, 0.22);
}
.aimvp-page .bg_gray {
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%) !important;
}
.aimvp-page .our_techno .tab-content {
    background: #fff;
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 12px 30px rgba(6, 18, 47, 0.07);
    border: 1px solid rgba(1, 64, 136, 0.06);
}
.aimvp-page .our_techno .tab-content .row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.aimvp-page .our_techno .tab_image {
    text-align: center;
}
.aimvp-page .our_techno .tab_image img {
    max-width: 100%;
    border-radius: 18px;
}
.aimvp-page .our_techno .tab_text h2 {
    font-size: 26px !important;
    margin-bottom: 14px;
}
.aimvp-page .our_techno .tab_text p {
    font-size: 15.5px;
    line-height: 1.75;
}
.aimvp-page .our_techno .tab_text ul {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
.aimvp-page .our_techno .tab-content .tab_text ul li {
    width: 50%;
    box-sizing: border-box;
}
.aimvp-page .our_techno .tab_text ul li p {
    font-size: 15px;
    font-weight: 700;
    color: #06122f;
}
.techno_tab ul.nav-tabs {
    padding: 2px 0;
    overflow: visible;
}
.aimvp-page #price.tab-pane .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 40px;
}
.aimvp-page #price.tab-pane .tab_image {
    flex: 1 1 42%;
    width: 42%;
    max-width: 42%;
    text-align: center;
}
.aimvp-page #price.tab-pane .tab_text {
    flex: 1 1 58%;
    width: 58%;
    max-width: 58%;
}
.choose-why-section-for-build-page h2, .choose-why-section-for-build-page p, .choose-why-section-for-build-page h3 {
    color: #fff !important;
}
.aimvp-page .orange_button {
    border-radius: 999px;
    font-family: "Product Sans", Arial, sans-serif;
}
.aimvp-page .our_techno .orange_button.roundd_button.btn_bigg,
.aimvp-page .aimvp-tech-section .orange_button.roundd_button.btn_bigg {
    background: #014088;
    border: 2px solid #014088;
    color: #fff;
    max-width: none;
    width: auto;
    padding: 16px 34px;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(1, 64, 136, 0.22);
}
.aimvp-page .our_techno .orange_button.roundd_button.btn_bigg:hover,
.aimvp-page .aimvp-tech-section .orange_button.roundd_button.btn_bigg:hover {
    background: #0c5cbc;
    border-color: #0c5cbc;
    color: #fff;
    box-shadow: 0 18px 40px rgba(1, 64, 136, 0.28);
}
.build-cta__content h2, .build-cta__content p {
    color: #fff !important;
}

@media (max-width: 991px) {
    .aimvp-page .aimvp-tech-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .aimvp-page .aimvp-tech-pill {
        padding: 11px 18px;
        font-size: 14px;
    }

    .aimvp-page .ai-core-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aimvp-page .our_techno .tab-content {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .aimvp-page .aimvp-tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aimvp-page .aimvp-tech-pills {
        justify-content: flex-start;
    }

    .aimvp-page .ai-core-grid {
        grid-template-columns: 1fr;
    }

    .aimvp-page .techno_tab .nav-tabs {
        justify-content: flex-start;
    }

    .aimvp-page .techno_tab .nav-tabs > li > a {
        padding: 11px 18px !important;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .aimvp-page .our_techno .tab-content .row {
        flex-direction: column;
    }

    .aimvp-page .our_techno .tab-content .tab_text ul li {
        width: 100%;
    }

    .aimvp-page #price.tab-pane .row {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 24px;
    }

    .aimvp-page #price.tab-pane .tab_image,
    .aimvp-page #price.tab-pane .tab_text {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .aimvp-page .common_sec {
        padding: 56px 0;
    }

    .aimvp-page .ai-expand-grid {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .aimvp-page .ai-expand-card,
    .aimvp-page .ai-expand-card:hover {
        flex: none;
        width: 100%;
        height: 240px;
    }

    .aimvp-page .ai-expand-title,
    .aimvp-page .ai-expand-card:hover .ai-expand-title {
        font-size: 22px !important;
    }

    .aimvp-page .ai-expand-text p,
    .aimvp-page .ai-expand-card .ai-expand-text p,
    .aimvp-page .ai-expand-card:hover .ai-expand-text p {
        opacity: 1;
        transform: translateY(0);
        font-size: 16px;
    }

    .aimvp-page .ai-expand-arrow,
    .aimvp-page .ai-expand-card:hover .ai-expand-arrow {
        opacity: 1;
        transform: rotate(-45deg) translateY(0);
    }
}

@media (max-width: 768px) {
    .industries-overview-grid {
        grid-template-columns: 1fr;
    }

    .industries-overview-card-wide {
        grid-column: auto;
    }
    .aimvp-page .ai-expand-text p,
    .aimvp-page .ai-expand-card .ai-expand-text p,
    .aimvp-page .ai-expand-card:hover .ai-expand-text p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        line-clamp: 6; 
        -webkit-box-orient: vertical;
    }
}

@media (max-width:1440px)
{
    .new-landing-page .container{
  max-width: 100% !important;
  width: auto !important;
}
}
/* responsive css */
@media (max-width: 1199px) {
    .new-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .new-hero-card {
        min-height: 390px;
    }
}

@media (max-width: 991px) {
    .new-industries-section {
        padding: 70px 20px 55px;
    }

    .new-industries-head {
        margin-bottom: 50px;
    }

    .new-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 70px;
    }
     .new-research-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .new-research-card {
        grid-column: span 1;
        flex-direction: column;
        min-height: 420px;
    }

   .new-research-img-wrap,
    .new-research-card-small .new-research-img-wrap,
    .industries-solution-img-wrap,
    .new-research-card-small .industries-solution-img-wrap {
        flex: none;
        width: 100%;
        height: 170px;
        min-height: 170px;
    }
     .new-careers-wrap {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: auto;
        padding: 50px 0;
    }

    .new-careers-content {
        padding-left: 0;
        max-width: 100%;
    }

    .new-careers-image {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .new-hero-section {
        padding: 34px 16px 46px;
    }

    .new-hero-head {
        margin-bottom: 42px;
    }

    .new-hero-head h2 {
        font-size: 25px;
    }

    .new-hero-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .new-hero-visual {
        height: 185px;
    }

    .new-hero-visual h3 {
        font-size: 28px;
    }

    .new-hero-content {
        width: calc(100% - 28px);
        min-height: 185px;
        margin-top: -36px;
    }

    .new-hero-card {
        min-height: 340px;
    }
}
@media (max-width: 575px) {
     .new-research-content {
        padding: 22px 18px 24px;
    }
    .new-industries-section {
        padding: 56px 16px 46px;
    }

    .new-industries-head h2 {
        font-size: 25px;
    }

    .new-industries-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .new-industries-col {
        gap: 26px;
    }
     .new-research-section {
        padding: 58px 16px 58px;
    }

    .new-research-head h2 {
        font-size: 25px;
    }

    .new-research-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 0 60px;
    }

    .new-research-card {
        min-height: 390px;
    }

    .new-research-content {
        padding: 22px 18px 18px;
    }

    .new-research-content h3,
    .new-research-card-small .new-research-content h3 {
        font-size: 18px;
    }
     .new-careers-section {
        padding: 18px 16px;
    }

    .new-careers-wrap {
        padding: 42px 0;
    }

    .new-careers-content h2 {
        font-size: 30px;
    }

    .new-careers-image {
        height: 300px;
        border-radius: 18px;
    }
    .new-industries-col {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
        flex-direction: inherit;
}

/* ============================================================
   FAQ Section — nh-faq-* (scoped, no conflicts)
   ============================================================ */
.nh-faq-section {
    padding: 80px 0;
    background: #fff;
    font-family: "Product Sans", Arial, sans-serif;
}

.nh-faq-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.nh-faq-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    color: #0c1848;
    margin: 0 0 52px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.nh-faq-list {
    display: flex;
    flex-direction: column;
}

/* Each row */
.nh-faq-item {
    border-bottom: 1px solid #e8eaf0;
}

.nh-faq-item:first-child {
    border-top: 1px solid #e8eaf0;
}

/* Trigger button — reset all inherited button styles first */
.nh-faq-trigger {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-family: "Product Sans", Arial, sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

.nh-faq-q {
    font-size: 16px;
    font-weight: 500;
    color: #0c1848;
    line-height: 1.5;
    flex: 1;
    transition: color 0.2s ease;
}

.nh-faq-trigger[aria-expanded="true"] .nh-faq-q {
    color: #014088;
}

/* +/- icon */
.nh-faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    border: 1.5px solid #c8cde0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.nh-faq-icon::before,
.nh-faq-icon::after {
    content: '';
    position: absolute;
    background: #0c1848;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s ease,
                background 0.25s ease;
}

/* horizontal bar */
.nh-faq-icon::before {
    width: 13px;
    height: 1.5px;
}

/* vertical bar */
.nh-faq-icon::after {
    width: 1.5px;
    height: 13px;
}

/* expanded state — hide vertical bar, turn icon blue */
.nh-faq-trigger[aria-expanded="true"] .nh-faq-icon {
    background: #014088;
    border-color: #014088;
}

.nh-faq-trigger[aria-expanded="true"] .nh-faq-icon::before,
.nh-faq-trigger[aria-expanded="true"] .nh-faq-icon::after {
    background: #fff;
}

.nh-faq-trigger[aria-expanded="true"] .nh-faq-icon::after {
    transform: scaleY(0);
    opacity: 0;
}

/* Smooth body — CSS grid trick */
.nh-faq-body {
    display: grid !important;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nh-faq-body.is-open {
    grid-template-rows: 1fr;
}

.nh-faq-content {
    overflow: hidden;
    min-height: 0; /* required — without this, 0fr does not collapse the row */
}

.nh-faq-content p {
    margin: 0 0 14px;
    font-size: 15px;
    color: #4a5278;
    line-height: 1.75;
}

.nh-faq-content p:last-child {
    margin-bottom: 24px;
}

.nh-faq-ul {
    margin: 10px 0 14px 0;
    padding-left: 20px;
    list-style: disc;
}

.nh-faq-ul li {
    font-size: 15px;
    color: #4a5278;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 640px) {
    .nh-faq-section {
        padding: 52px 0;
    }

    .nh-faq-heading {
        margin-bottom: 32px;
    }

    .nh-faq-q {
        font-size: 14.5px;
    }

    .nh-faq-trigger {
        padding: 18px 0;
    }
}
.new-hero-head h1 {
    font-size: 29px;
    margin-bottom: 30px;
}
section.new-hero-section {
    padding-top: 23px;
}
.aimvp-page .ai-expand-card {
    height: 270px;
}
}


@media (max-width: 767px) {
    .industries-hero-section {
        padding: 60px 16px 44px;
    }

    .industries-hero-title {
        font-size: 28px;
    }

    .industries-hero-text {
        font-size: 15px;
    }

    .industries-hero-ratings {
        gap: 10px;
    }

    .industries-hero-rating-card {
        padding: 8px 14px;
    }
}



@media (max-width: 767px) {
    .industries-showcase-section {
        padding: 10px 16px 56px;
    }

    .industries-showcase-wrap {
        padding: 36px 20px;
        border-radius: 18px;
    }
}
/* ============================================================
   Latest Insights cards — equal-height rows (industries.php)
   ============================================================ */
#posts-container.resources-section {
    display: flex;
    flex-wrap: wrap;
}

#posts-container.resources-section > div {
    display: flex;
}

#posts-container.resources-section .blogs_card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#posts-container.resources-section .blog_content {
    flex: 1 0 auto;
}
/* Build/scale/transform pages + their service detail pages - container width override */
body.build-page .container,
body.Specialization-page .container,
body.scale-page .container,
body.transform-page .container,
body.ai-mvp-development .container,
body.saas-product-development .container,
body.offshore-development-center .container,
body.managed-engineering .container,
body.hire-devops-developer .container,
body.ai-consulting .container,
body.ai-agent-development .container,
body.process-automation .container,
body.cloud-migration .container {
    max-width: 1440px !important;
    width: 100% !important;
}
@media (max-width: 1440px) {
    body.build-page .container,
    body.scale-page .container,
    body.transform-page .container,
    body.ai-mvp-development .container,
    body.saas-product-development .container,
    body.offshore-development-center .container,
    body.managed-engineering .container,
    body.hire-devops-developer .container,
    body.ai-consulting .container,
    body.ai-agent-development .container,
    body.process-automation .container,
    body.cloud-migration .container {
        max-width: 1280px !important;
        width: 100% !important;
    }
}

/* Certification badges: build/scale/transform/specialization internal pages only */
body.ai-consulting .certification-badge,
body.process-automation .certification-badge,
body.cloud-migration .certification-badge,
body.ai-agent-development .certification-badge,
body.hire-devops-developer .certification-badge,
body.offshore-development-center .certification-badge,
body.managed-engineering .certification-badge,
body.saas-product-development .certification-badge,
body.ai-mvp-development .certification-badge {
    width: 200px;
}

body.ai-consulting .certification-badge img,
body.process-automation .certification-badge img,
body.cloud-migration .certification-badge img,
body.ai-agent-development .certification-badge img,
body.hire-devops-developer .certification-badge img,
body.offshore-development-center .certification-badge img,
body.managed-engineering .certification-badge img,
body.saas-product-development .certification-badge img,
body.ai-mvp-development .certification-badge img {
    width: 200px;
    max-width: 200px;
}

/* Certification badges: build/scale/transform/specialization internal pages only */
body.ai-consulting .certification-badge,
body.process-automation .certification-badge,
body.cloud-migration .certification-badge,
body.ai-agent-development .certification-badge,
body.hire-devops-developer .certification-badge,
body.offshore-development-center .certification-badge,
body.managed-engineering .certification-badge,
body.saas-product-development .certification-badge,
body.ai-mvp-development .certification-badge {
    width: 200px;
}

body.ai-consulting .certification-badge img,
body.process-automation .certification-badge img,
body.cloud-migration .certification-badge img,
body.ai-agent-development .certification-badge img,
body.hire-devops-developer .certification-badge img,
body.offshore-development-center .certification-badge img,
body.managed-engineering .certification-badge img,
body.saas-product-development .certification-badge img,
body.ai-mvp-development .certification-badge img {
    width: 200px;
    max-width: 200px;
}

.aimvp-page .web_app_header .container {
    display: flex;
    align-items: center;
}
.portfolio_headarea img {
    object-fit: contain;
}
@media (max-width: 991px) {
    .aimvp-page .web_app_header .container {
display: block !important;
    }
}
@media (max-width: 768px) {
.portfolio_headarea.career_header.web_app_header {
    padding-bottom: 50px !important;
}
.saas-img img {
    height: auto;
}
}