/* Home: hero SVG filter image ke bahar paint karta hai — clip mat lagao warna frame adhi dikhti hai */
body.page-home main {
    text-align: left;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    box-sizing: border-box;
}

/* Our Services + Trusted testimonials — dono strips ka left/right spacing yahi se (alag-alag section vars se mismatch na ho) */
body.page-home {
    --home-strip-section-px: clamp(0.75rem, 3vw, 1.35rem);
    --home-strip-cards-pad-start: 4.5rem;
}

@media (min-width: 1300px) {
    body.page-home {
        --home-strip-section-px: clamp(2rem, 6vw, 5rem);
        --home-strip-cards-pad-start: 11rem;
    }
}

@media (max-width: 768px) {
    body.page-home {
        --home-strip-cards-pad-start: 1.25rem;
    }
}

/* Home page hero — spacing rem (vh nahi) */
.hero-section {
    --hero-gap-header: 11.25rem;
    --hero-gap-eyebrow-title: clamp(2.25rem, 4.5vw, 3.75rem);
    --hero-gap-title-bottom: clamp(2.5rem, 4.5vw, 3.75rem);

    background: #222222;
    background-image: linear-gradient(180deg, #060b1b 0%, #151515 100%);
    padding-top: var(--hero-gap-header);
    padding-bottom: 4rem;
    padding-left: clamp(0.75rem, 3vw, 1.35rem);
    padding-right: clamp(0.75rem, 3vw, 1.35rem);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: visible;
    overflow-y: visible;
    text-align: left !important;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (min-width: 992px) {
    .hero-section {
        --hero-gap-header: 13rem;
    }
}

/* 1300px+: zyada left inset (heading / content viewport se chipke nahi) */
@media (min-width: 1300px) {
    .hero-section {
        padding-left: clamp(2rem, 6vw, 5rem);
    }

    .hero-content {
        margin-left: 11rem;
        width: calc(100% - 11rem);
        max-width: min(1180px, calc(100% - 11rem));
    }
}

.hero-content {
    /* margin + width:100% = overflow — isliye width calc */
    box-sizing: border-box;
    width: calc(100% - 4.5rem);
    max-width: min(1180px, calc(100% - 4.5rem));
    margin-left: 4.5rem;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: left !important;
    overflow: visible;
}

.hero-eyebrow {
    margin: 0 0 var(--hero-gap-eyebrow-title);
    text-align: left !important;
    color: #f4f4f4;
    font-size: clamp(4.2rem, 8.5vw, 8.6rem);
    font-family: 'autographyregular', cursive;
    line-height: 1.05;
    font-weight: normal;
    opacity: 0;
    transition: opacity 1.75s cubic-bezier(0.35, 0.12, 0.15, 1);
}

.hero-eyebrow.hero-eyebrow--visible {
    opacity: 1;
}

.hero-title {
    margin: 0;
    color: #f1f1f1;
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.85rem, 7vw, 5.5rem);
    line-height: 1;
    text-align: left !important;
    text-transform: uppercase;
    font-weight: 500;
    max-width: 100%;
    position: relative;
    overflow: visible;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* Normal document flow — no SplitText "word_come" here (absolute words collapse h1 → overlap below) */

/* Line 1: bahut wide screen par hi ek line — 1100–~1600px par nowrap se "IN/WORLD" kaat jaate the */
.hero-title-line1 {
    display: block;
    white-space: normal;
    margin: 0;
    line-height: 1.05;
}

@media (min-width: 1600px) {
    .hero-title-line1 {
        white-space: nowrap;
    }
}

/* Line 2: minimal gap under line 1 */
.hero-title-line2 {
    display: block;
    margin: 0.02em 0 0;
    line-height: 1.05;
    font-size: 1.1em;
    letter-spacing: 0.01em;
}

.hero-title .hero-title-accent {
    color: #3f63ff;
}

.hero-bottom {
    margin-top: var(--hero-gap-title-bottom);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4.25rem;
    max-width: min(1100px, 100%);
    text-align: left !important;
    clear: both;
    overflow: visible;
    /* filter ring + feOffset ke liye thodi jagah taaki clip na ho */
    padding-bottom: 1.75rem;
    padding-right: 0.5rem;
}

/* Frame sirf SVG feOffset se — margin se mat khisko warna photo bhi shift hoti hai */
.hero-image-wrap {
    position: relative;
    flex-shrink: 0;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background: none;
    line-height: 0;
    overflow: visible;
    max-width: min(280px, 44vw);
    isolation: isolate;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    -webkit-filter: url(#hero-inline-photo-outline);
    filter: url(#hero-inline-photo-outline);
    transform: translateZ(0);
    opacity: 0;
    transition: opacity 2.45s cubic-bezier(0.35, 0.12, 0.15, 1);
}

.hero-image.hero-image--visible {
    opacity: 1;
}

/* Phone/tablet: turant dikhao — GSAP stagger + filter GPU delay / scroll “khali tile” kam */
@media (max-width: 1023.98px) {
    .hero-eyebrow {
        opacity: 1;
        transition: none;
    }

    .hero-image {
        opacity: 1;
        transition: none;
        -webkit-filter: none;
        filter: none;
    }

    .hero-image-wrap {
        isolation: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image {
        opacity: 1;
        transition: none;
    }

    .hero-eyebrow {
        opacity: 1;
        transition: none;
    }
}

/* .p-text — animation.js + animation.css (services jaisa line reveal) */
.hero-copy {
    margin: 0;
    margin-top: clamp(2.35rem, 3.5vw, 3.35rem);
    flex: 1 1 auto;
    min-width: 0;
    max-width: min(58rem, 100%);
    text-align: left !important;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.3125rem;
    font-weight: 600;
    line-height: 1.65;
}

@media (max-width: 576px) {
    .hero-copy {
        font-size: 1.125rem;
        font-weight: 600;
        line-height: 1.65;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        --hero-gap-header: 8rem;
        --hero-gap-eyebrow-title: clamp(1.35rem, 4vw, 2rem);
        --hero-gap-title-bottom: clamp(2rem, 5vw, 2.75rem);
        padding-bottom: 3.5rem;
    }

    .hero-content {
        width: calc(100% - 1.25rem);
        max-width: calc(100% - 1.25rem);
        margin-left: 1.25rem;
    }

    .hero-eyebrow {
        font-size: clamp(2.75rem, 9vw, 4.25rem);
    }

    /* Narrow screens: allow wrap so line doesn’t overflow horizontally */
    .hero-title-line1 {
        white-space: normal;
    }

    .hero-title {
        font-size: clamp(1.45rem, 4.8vw, 2.85rem);
    }

    .hero-title-line2 {
        font-size: 1.08em;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .hero-copy {
        margin-top: 0.85rem;
    }

    .hero-image-wrap {
        max-width: min(230px, 70vw);
    }
}

/* —— Our Services (home) —— */
.home-our-services {
    --home-services-px: var(--home-strip-section-px, clamp(0.75rem, 3vw, 1.35rem));
    --home-service-cards-pad-start: var(--home-strip-cards-pad-start, 4.5rem);
    position: relative;
    z-index: 0;
    isolation: isolate;
    /* Fallback jab tak <img.home-our-services-bg> paint na ho */
    background-color: #050505;
    padding-top: clamp(3.25rem, 5.5vw, 5rem);
    padding-bottom: clamp(3.25rem, 5.5vw, 5rem);
    padding-left: var(--home-services-px);
    padding-right: var(--home-services-px);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    /* Optimize TBT: Skip rendering until near viewport */
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
}

/* Real <img> — CSS ::before + translateZ par mobile WebKit layer discard = texture dubara dubara “gayab / dheere” */
.home-our-services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.home-our-services>*:not(.home-our-services-bg) {
    position: relative;
    z-index: 1;
}

/* Title + View All: dono taraf utna hi inset jitna --home-service-cards-pad-start (viewport par barabar) */
.home-our-services-toprow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 2rem;
    box-sizing: border-box;
    margin-left: var(--home-service-cards-pad-start);
    margin-right: var(--home-service-cards-pad-start);
}

.home-our-services-inner {
    box-sizing: border-box;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    width: auto;
    max-width: min(1180px, 100%);
}

/* Services breadcrumb jaisa size/weight — sirf colour blue */
.home-our-services-kicker {
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #3f63ff;
}

/* Neeche blue bar — default chhoti; hover / focus par poori text width */
.home-our-services-viewall {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    align-self: center;
    padding-bottom: 0.45rem;
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #f1f1f1;
    text-decoration: none;
    white-space: nowrap;
}

.home-our-services-viewall::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #3f63ff;
    transform: scaleX(0.38);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.home-our-services-viewall:hover::after,
.home-our-services-viewall:focus-visible::after {
    transform: scaleX(1);
}

.home-our-services-viewall:focus-visible {
    outline: 2px solid #3f63ff;
    outline-offset: 4px;
}

/* Services page #service2-root .page-title jaisa — font-size / weight / line-height */
.home-our-services-title {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-family: 'Archivo', sans-serif;
    font-size: 65px;
    font-weight: 500;
    line-height: 1.17;
    color: #f1f1f1;
    text-transform: none;
    letter-spacing: 0.02em;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .home-our-services-title {
        font-size: 55px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .home-our-services-title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .home-our-services-title {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .home-our-services-kicker {
        margin-bottom: clamp(0.85rem, 3vw, 1.15rem);
        font-size: 20px;
    }

    .home-our-services-title {
        font-size: 36px;
        text-align: start;
    }

    .home-roadmap-title {
        font-size: 36px;
        text-align: center;
    }

    .home-our-services-toprow {
        flex-direction: column;
        align-items: stretch;
    }

    .home-our-services-viewall {
        align-self: flex-end;
        white-space: normal;
        text-align: right;
    }
}

@media (min-width: 1300px) {
    .home-our-services {
        padding-left: var(--home-services-px);
        padding-right: var(--home-services-px);
    }
}

/* Cards strip: section side-padding tak negative margin — clip window chaudi, left/right cards kam kaat-te; koi visible “box” outline nahi */
.home-service-cards {
    margin-top: clamp(2rem, 4vw, 3rem);
    margin-left: calc(-1 * var(--home-services-px));
    margin-right: calc(-1 * var(--home-services-px));
    width: calc(100% + 2 * var(--home-services-px));
    max-width: none;
    box-sizing: border-box;
    /* Sirf section edge; card gutter track par left+right barabar — scroll start/end dono taraf same space */
    padding-left: var(--home-services-px);
    padding-right: calc(var(--home-services-px) + env(safe-area-inset-right, 0px));
    overflow: hidden;
    overscroll-behavior-x: contain;
    cursor: grab;
    outline: none;
    border: none;
    box-shadow: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-service-cards::-webkit-scrollbar {
    display: none;
}

.home-service-cards:focus {
    outline: none;
}

.home-service-cards:focus-visible {
    outline: none;
}

.home-service-cards.is-dragging {
    cursor: grabbing;
}

.home-service-cards-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1rem;
    width: max-content;
    padding-left: var(--home-service-cards-pad-start);
    padding-right: var(--home-service-cards-pad-start);
    padding-bottom: 0;
    box-sizing: border-box;
    transform: translate3d(0, 0, 0);
    /* pan-x = vertical page scroll in cards strip par atak / blank repaint; pan-y = page scroll, horizontal JS */
    touch-action: pan-y;
    -webkit-user-drag: none;
}

.home-service-card {
    position: relative;
    flex: 0 0 auto;
    width: 340px;
    min-width: 340px;
    height: 550px;
    min-height: 550px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

.home-service-card * {
    user-select: none;
    -webkit-user-select: none;
}

.home-service-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 0;
    padding-bottom: 10rem;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.home-service-card:hover .home-service-card-text {
    opacity: 0;
    visibility: hidden;
}

.home-service-card-title {
    font-family: 'Archivo', sans-serif;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.36rem;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0;
    max-height: 159px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.home-service-card-arrow {
    display: none;
}

/* Desktop (mynew jaisa): sirf rgba(10,10,10,0.4) + 14px blur — koi extra tint / z-index nahi */
.home-service-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 4rem 1.99rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    overflow-y: auto;
}

.home-service-card:hover .home-service-card-hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.home-service-card-hover-title {
    font-family: 'Archivo', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 1.25rem 0;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-align: left;
}

.home-service-card-hover-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.home-service-card-hover-list li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.6rem;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    word-wrap: break-word;
}

.home-service-card-hover-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.home-service-card-hover-arrow {
    font-size: 3.35rem;
    font-weight: bold;
    color: #fff;
    align-self: center;
    margin-top: auto;
    padding-top: 1rem;
    flex-shrink: 0;
    cursor: default;
    transition: color 0.25s ease;
}

.home-service-card-hover-arrow:hover {
    color: #64b5f6;
}

@media (prefers-reduced-motion: reduce) {
    .home-service-card-hover {
        transition: none;
    }
}

/*
 * Phone/tablet: blur yahan GPU par halo / “shadow” jaisa artefact deta hai — blur hata kar
 * desktop jaisa halka tint: rgba(10,10,10,~0.5). Inset box-shadow ring bhi hata — seedha border.
 */
@media (max-width: 1024px) {
    .home-service-cards {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .home-service-card {
        padding: 1.5rem 1.1rem;
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: none;
    }

    .home-service-card .home-service-card-text {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .home-service-card .home-service-card-hover {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        background: rgba(10, 10, 10, 0.52);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-service-card-title {
        font-size: 1.2rem;
    }

    .home-service-card-hover-title {
        font-size: 1.35rem;
    }

    .home-service-card-hover-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .home-service-card-hover-title {
        font-size: 1.2rem;
    }

    .home-service-card-hover-list li {
        font-size: 0.88rem;
    }
}

/* —— Industries we cover (home) — services band → pricing se pehle —— */
.home-industries {
    --home-industries-inset: clamp(0.75rem, 3vw, 1.35rem);
    --home-industries-column-max: 1480px;
    background: #222222;
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4rem) var(--home-industries-inset) clamp(2.75rem, 5vw, 4.25rem);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    /* Optimize TBT: Skip rendering until near viewport */
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

.home-industries-inner {
    width: min(var(--home-industries-column-max), 100%);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.home-industries-kicker {
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #3f63ff;
}

.home-industries-title {
    margin: 0 0 clamp(1rem, 2vw, 1.35rem);
    font-family: 'Archivo', sans-serif;
    font-size: 65px;
    font-weight: 500;
    line-height: 1.17;
    color: #f1f1f1;
    letter-spacing: 0.02em;
    text-transform: none;
}

/* Industries jaisi breakpoints — isse PEHLE media queries mein font-size; warna baad mein 65px override ho jata tha */
.home-core-values-title {
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    font-family: 'Archivo', sans-serif;
    font-size: 65px;
    font-weight: 500;
    line-height: 1.17;
    color: #f1f1f1;
    letter-spacing: 0.02em;
    text-transform: none;
}

.home-industries-lead {
    margin: 0 0 clamp(2rem, 4vw, 2.75rem);
    max-width: 42rem;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

/* Neeche: sirf industry naam + image + notes (mynew data); heading block upar same) */
.home-industries .home-industries-panel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
}

.home-industries .home-industries-panel.section3 {
    min-height: 0;
    height: auto;
    overflow: visible;
}

.home-industries .home-industries-panel .industries-wrap {
    position: relative;
    z-index: 5;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: visible;
}

.home-industries .home-industries-panel .industries-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 0;
}

.home-industries .home-industries-panel .industries-left {
    flex: 0 0 auto;
    max-width: 420px;
    width: 38%;
}

.home-industries .home-industries-panel .industries-right {
    flex: 1;
    min-width: 0;
    position: relative;
    display: block;
    padding-left: clamp(0.75rem, 2vw, 1.25rem);
    /* fixed niche jagah — vw se width resize par jump / clip kam */
    padding-bottom: 6.75rem;
    overflow: visible;
}

/* Desktop (≥1024): image left; note bottom-right overlap */
.home-industries .home-industries-panel .industries-img-wrap {
    position: relative;
    display: block;
    width: 100%;
    max-width: min(100%, 640px);
    margin-left: 0;
    margin-right: auto;
    box-sizing: border-box;
    aspect-ratio: 16 / 10;
    /* vh hata — window height kam karte hi image upar “jump” karti thi */
    max-height: min(540px, 40rem);
    overflow: hidden;
    margin-top: 1rem;
    margin-bottom: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-industries .home-industries-panel.section3.industries-switching .industries-img-wrap {
    opacity: 0;
    transform: scale(0.97);
}

.home-industries .home-industries-panel .industries-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.home-industries .home-industries-panel .industries-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-top: 0;
}

.home-industries .home-industries-panel.section3 .industries-notes {
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    /* % = note ki khud ki height → resize par hilna; rem stable overlap */
    transform: translateY(3.5rem);
    background: rgba(28, 28, 32, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.85rem 1.75rem;
    width: min(100%, 480px);
    max-width: calc(100% - 0.25rem);
    min-height: 0;
    border-radius: 0;
    z-index: 6;
    box-sizing: border-box;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-industries .home-industries-panel.section3.industries-switching .industries-notes {
    opacity: 0;
    transform: translateY(calc(3.5rem + 14px));
}

.home-industries .home-industries-panel .industries-notes-title {
    font-family: 'Archivo', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
}

.home-industries .home-industries-panel .industries-notes-text {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.home-industries .home-industries-panel .industries-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-industries .home-industries-panel button.industries-row {
    display: grid;
    grid-template-columns: 48px 48px 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: inherit;
    font: inherit;
    text-align: left;
    width: 100%;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease;
    box-sizing: border-box;
}

.home-industries .home-industries-panel button.industries-row:last-child {
    border-bottom: none;
}

.home-industries .home-industries-panel button.industries-row:hover {
    color: #fff;
}

.home-industries .home-industries-panel button.industries-row:hover .industries-num {
    color: #64b5f6;
    opacity: 1;
}

.home-industries .home-industries-panel button.industries-row:hover .industries-row-icon {
    color: #64b5f6;
    transform: scale(1.08);
}

.home-industries .home-industries-panel button.industries-row:hover .industries-row-line,
.home-industries .home-industries-panel button.industries-row.active .industries-row-line {
    transform: scaleX(1);
    opacity: 1;
}

.home-industries .home-industries-panel button.industries-row.active .industries-num,
.home-industries .home-industries-panel button.industries-row.active:hover .industries-num {
    color: #64b5f6;
    opacity: 1;
}

.home-industries .home-industries-panel button.industries-row.active .industries-row-icon,
.home-industries .home-industries-panel button.industries-row.active:hover .industries-row-icon {
    color: #64b5f6;
    transform: scale(1.08);
}

.home-industries .home-industries-panel .industries-num {
    font-family: 'Archivo', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.home-industries .home-industries-panel .industries-row-icon {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.25s ease, transform 0.25s ease;
}

.home-industries .home-industries-panel .industries-row-name {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.home-industries .home-industries-panel .industries-row-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4a7bff, #64b5f6);
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.home-industries .home-industries-panel .industries-mobile-nav {
    display: none;
}

/* 1024–1280: desktop jaisa hi, sirf gap / image cap thoda tight (≤1023 phone par apply nahi) */
@media (min-width: 1024px) and (max-width: 1280px) {
    .home-industries .home-industries-panel .industries-content {
        gap: clamp(1.25rem, 3vw, 2rem);
    }

    .home-industries .home-industries-panel .industries-right {
        padding-left: clamp(0.75rem, 2vw, 1.5rem);
    }

    .home-industries .home-industries-panel .industries-img-wrap {
        max-height: min(500px, 34rem);
    }
}

/* ≤1023: phone / tablet — stack + arrows; 1024+ desktop layout */
@media (max-width: 1023px) {
    .home-industries .home-industries-panel .industries-content {
        flex-direction: column;
        gap: 1.25rem;
    }

    .home-industries .home-industries-panel .industries-left,
    .home-industries .home-industries-panel .industries-right {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
    }

    .home-industries .home-industries-panel .industries-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 0 !important;
    }

    .home-industries .home-industries-panel .industries-img-wrap {
        margin: 1rem auto 0;
        display: block;
        transform: none !important;
        width: 100%;
        max-width: min(100%, 560px);
        max-height: min(320px, 40vh, 28rem);
        aspect-ratio: 16 / 10;
    }

    .home-industries .home-industries-panel .industries-img {
        margin: 0;
    }

    .home-industries .home-industries-panel.section3 .industries-notes {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 1rem auto 0 !important;
        width: min(100%, 640px) !important;
        max-width: 100% !important;
        min-height: 0 !important;
        box-shadow: none !important;
    }

    .home-industries .home-industries-panel.section3.industries-switching .industries-notes {
        transform: none !important;
    }

    .home-industries .home-industries-panel .industries-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100% !important;
        margin: 0 0 0.35rem !important;
    }

    .home-industries .home-industries-panel .industries-mobile-arrow {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.7);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0;
        cursor: pointer;
        flex-shrink: 0;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .home-industries .home-industries-panel .industries-mobile-heading {
        flex: 1 1 auto;
        min-width: 0;
        margin: 0;
        text-align: center;
        font-family: 'Archivo', sans-serif;
        font-size: clamp(1.05rem, 4vw, 1.35rem);
        font-weight: 500;
        color: #64b5f6;
        letter-spacing: 0.02em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .home-industries .home-industries-panel .industries-left {
        display: none;
    }

    .home-industries .home-industries-panel .industries-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Notes andar scroll + overscroll-behavior:contain = page vertical swipe yahan atak jata tha */
    .home-industries .home-industries-panel.section3 .industries-notes {
        padding: 1.25rem 1rem !important;
        width: 100% !important;
        max-width: min(100%, 400px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        min-height: 0;
        max-height: none;
        overflow: visible;
        -webkit-overflow-scrolling: auto;
    }

    .home-industries .home-industries-panel .industries-notes-text {
        margin: 0;
    }

    .home-industries .home-industries-panel .industries-img-wrap {
        margin: 1.25rem auto 0;
        max-width: min(100%, 400px);
        max-height: min(220px, 34vh, 16rem);
        aspect-ratio: 4 / 3;
    }

    .home-industries .home-industries-panel .industries-img {
        margin: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-industries .home-industries-panel .industries-img-wrap,
    .home-industries .home-industries-panel.section3 .industries-notes {
        transition: none;
    }

    .home-industries .home-industries-panel.section3.industries-switching .industries-img-wrap {
        opacity: 1;
        transform: none;
    }

    .home-industries .home-industries-panel.section3.industries-switching .industries-notes {
        opacity: 1;
        transform: translateY(3.5rem);
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .home-industries-title,
    .home-core-values-title {
        font-size: 55px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {

    .home-industries-title,
    .home-core-values-title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    .home-industries-title,
    .home-core-values-title {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .home-industries-kicker {
        font-size: 20px;
    }

    .home-industries-title,
    .home-core-values-title {
        font-size: 36px;
    }
}

@media (min-width: 1300px) {
    .home-industries {
        --home-industries-inset: clamp(2rem, 6vw, 5rem);
    }

    .home-core-values {
        padding-left: clamp(2rem, 6vw, 5rem);
        padding-right: clamp(2rem, 6vw, 5rem);
    }
}

/* —— Our company core values (industries ke neeche, solid #222) —— */
.home-core-values {
    background: #222222;
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4rem) var(--home-industries-inset, clamp(0.75rem, 3vw, 1.35rem));
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.home-core-values-inner {
    width: min(var(--home-industries-column-max, 1480px), 100%);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* mynew home jaisi value cards (section4) */
.home-core-values .home-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.home-core-values .home-values-card {
    padding: 2.25rem 2rem;
    border-radius: 0;
    background: rgba(13, 13, 13, 0.35);
    transition: background 0.35s ease, color 0.35s ease, transform 0.3s ease, border-radius 0.35s ease;
    position: relative;
    box-sizing: border-box;
}

/* Sirf outer glow hata — blue hover, lift, rounded corners = mynew jaisa */
.home-core-values .home-values-card:hover {
    background: linear-gradient(135deg, #2d5bcf, #3d6ee6);
    color: #fff;
    transform: translateY(-2px);
    border-radius: 0 42px 0 42px;
}

.home-core-values .home-values-card:hover .home-values-card-title,
.home-core-values .home-values-card:hover .home-values-card-num,
.home-core-values .home-values-card:hover .home-values-card-desc {
    color: #fff;
}

.home-core-values .home-values-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.home-core-values .home-values-card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    letter-spacing: 0.02em;
}

.home-core-values .home-values-card-num {
    font-family: 'Archivo', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

/* Tenor Sans body — roadmap jaisa halka weight */
.home-core-values .home-values-card-desc {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* Tablet: 2 col; mynew mobile = 1 col @ 768 */
@media (max-width: 1024px) and (min-width: 769px) {
    .home-core-values .home-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .home-core-values .home-values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-core-values .home-values-card {
        transition: background 0.35s ease, color 0.35s ease, border-radius 0.35s ease;
    }

    .home-core-values .home-values-card:hover {
        transform: none;
    }
}

/* —— Roadmap for learner: heading beech screen, View All Courses daayen (Services link jaisi jagah) —— */
.home-roadmap-banner {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: clamp(2.25rem, 4.5vw, 3.5rem) var(--home-strip-section-px, clamp(0.75rem, 3vw, 1.35rem));
    background-color: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

.home-roadmap-toprow {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    box-sizing: border-box;
    margin-left: var(--home-strip-cards-pad-start, 4.5rem);
    margin-right: var(--home-strip-cards-pad-start, 4.5rem);
    min-height: clamp(4rem, 12vw, 5.75rem);
}

.home-roadmap-title-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: calc(100% - 9.5rem);
    box-sizing: border-box;
    margin: 0;
    padding: 0 0.35rem;
    text-align: center;
    pointer-events: none;
    z-index: 0;
}

.home-roadmap-title-wrap .home-roadmap-title {
    pointer-events: auto;
}

.home-roadmap-title {
    margin: 0;
    font-family: 'Archivo', sans-serif;
    font-size: 65px;
    font-weight: 500;
    line-height: 1.17;
    color: #f1f1f1;
    letter-spacing: 0.02em;
    text-transform: none;
    text-align: center;
}

.home-roadmap-toprow .home-our-services-viewall {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Roadmap section: extra air between title row and circle/card stage */
.home-roadmap-section .home-roadmap-toprow {
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

/* Chhoti / medium width: absolute + daayen link overlap karte — column: pehle heading center, neeche View All */
@media (max-width: 991.98px) {
    .home-roadmap-toprow {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
        justify-content: flex-start;
        min-height: 0;
        gap: clamp(0.65rem, 2.5vw, 1.1rem);
    }

    .home-roadmap-title-wrap {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        max-width: none;
        width: 100%;
        padding: 0;
        pointer-events: auto;
    }

    .home-roadmap-toprow .home-our-services-viewall {
        align-self: flex-end;
    }
}

/* —— Trusted by our clients: heading + testimonial strip + Let’s talk + Contact (mynew section7 design, prtfollio paths) —— */
.home-trusted-clients {
    --trusted-inset: var(--home-strip-section-px, clamp(0.75rem, 3vw, 1.35rem));
    --home-trusted-cards-pad-start: var(--home-strip-cards-pad-start, 4.5rem);
    position: relative;
    background-color: #222222;
    background-image: url("../bg/test.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4rem) var(--trusted-inset) 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    /* Sirf X: wide track + translateX se page par safed strip / horizontal overflow na bane */
    overflow-x: hidden;
    overflow-y: visible;
}

.home-trusted-inner {
    width: min(var(--home-industries-column-max, 1480px), 100%);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

.home-trusted-title {
    margin: 0 0 clamp(2rem, 4vw, 2.75rem);
    font-family: 'Archivo', sans-serif;
    font-size: 65px;
    font-weight: 500;
    line-height: 1.17;
    color: #f1f1f1;
    letter-spacing: 0.02em;
    text-transform: none;
    text-align: center;
}

/* Strip: .home-service-cards jaisa — section side-padding tak negative margin, clip window chaudi */
.home-trusted-testimonials {
    position: relative;
    z-index: 2;
    /* Services strip jaisa top spacing */
    margin-top: clamp(2rem, 4vw, 3rem);
    margin-left: calc(-1 * var(--trusted-inset));
    margin-right: calc(-1 * var(--trusted-inset));
    width: calc(100% + 2 * var(--trusted-inset));
    max-width: none;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: var(--trusted-inset);
    padding-right: calc(var(--trusted-inset) + env(safe-area-inset-right, 0px));
    overflow: hidden;
    overscroll-behavior-x: contain;
    cursor: grab;
    outline: none;
    border: none;
    box-shadow: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-trusted-testimonials::-webkit-scrollbar {
    display: none;
}

.home-trusted-testimonials:focus,
.home-trusted-testimonials:focus-visible {
    outline: none;
}

.home-trusted-testimonials.is-dragging {
    cursor: grabbing;
}

.home-trusted-testimonials-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1rem;
    width: max-content;
    min-width: max-content;
    padding-left: var(--home-trusted-cards-pad-start);
    padding-right: var(--home-trusted-cards-pad-start);
    padding-bottom: 0;
    box-sizing: border-box;
    transform: translate3d(0, 0, 0);
    touch-action: pan-y;
    -webkit-user-drag: none;
}

.home-trusted-testimonial-card {
    flex: 0 0 auto;
    width: 340px;
    min-width: 340px;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
}

.home-trusted-testimonial-quote {
    font-size: 1.75rem;
    color: rgba(74, 123, 255, 0.6);
    line-height: 1;
}

.home-trusted-testimonial-text {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    flex: 1;
}

.home-trusted-testimonial-author {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-trusted-testimonial-name {
    font-family: 'Archivo', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    display: block;
    letter-spacing: 0.02em;
}

.home-trusted-testimonial-role {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-top: 0.15rem;
}

/* CTA — height rem se fixed: viewport height (vh) se bandha hone par window chhoti karte hi niche se shrink hota tha */
.home-trusted-cta {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(1rem, 2.5vw, 1.75rem) 0 0;
    box-sizing: border-box;
    z-index: 2;
    overflow: visible;
    min-height: clamp(30rem, 32rem, 36rem);
}

.home-trusted-lets-talk {
    display: inline-block;
    margin: 0;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
    white-space: nowrap;
    z-index: 10;
}

/* Per-letter animation; inline-block + baseline = services jaisa glyph spacing (flex se kerning tut ti thi) */
.home-trusted-lets-talk>span {
    display: inline-block;
    vertical-align: baseline;
    color: #fff;
    animation: letsTalkDance 5s ease-in-out infinite;
    transform-origin: center bottom;
}

.home-trusted-lets-talk>span:nth-child(1) {
    animation-delay: 0s;
}

.home-trusted-lets-talk>span:nth-child(2) {
    animation-delay: 0.1s;
}

.home-trusted-lets-talk>span:nth-child(3) {
    animation-delay: 0.2s;
}

.home-trusted-lets-talk>span:nth-child(4) {
    animation-delay: 0.3s;
}

.home-trusted-lets-talk>span:nth-child(5) {
    animation-delay: 0.4s;
}

.home-trusted-lets-talk>span:nth-child(6) {
    animation-delay: 0.5s;
}

.home-trusted-lets-talk>span:nth-child(7) {
    animation-delay: 0.6s;
}

.home-trusted-lets-talk>span:nth-child(8) {
    animation-delay: 0.7s;
}

.home-trusted-lets-talk>span:nth-child(9) {
    animation-delay: 0.8s;
}

.home-trusted-lets-talk>span:nth-child(10) {
    animation-delay: 0.9s;
}

.home-trusted-lets-talk>span:nth-child(11) {
    animation-delay: 1s;
}

/* Let’s ↔ talk: word space (empty span = width; > span rules se animation delay bhi lagta hai) */
.home-trusted-lets-gap {
    width: 0.42em;
    min-width: 0.35rem;
}

.home-trusted-contact-wrap {
    width: 180px;
    height: 180px;
    max-width: 180px;
    max-height: 180px;
    flex-shrink: 0;
    box-sizing: border-box;
    z-index: 10;
}

.home-trusted-contact-ring {
    position: absolute;
    inset: 0;
    animation: contactSpin 12s linear infinite;
    pointer-events: none;
}

.home-trusted-contact-ring img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* mynew .contact-circle-center — 135px fixed */
.home-trusted-contact-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: #0a6cff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.35s ease, transform 0.35s ease;
}

.home-trusted-contact-wrap:hover .home-trusted-contact-center,
.home-trusted-contact-wrap:active .home-trusted-contact-center {
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.home-trusted-contact-arrow {
    font-size: 35px;
    -webkit-text-stroke: 0.1px #fff;
    font-weight: 900;
    line-height: 1;
}

.home-trusted-contact-wrap:hover .home-trusted-contact-arrow,
.home-trusted-contact-wrap:active .home-trusted-contact-arrow,
.home-trusted-contact-wrap:focus-within .home-trusted-contact-arrow {
    animation: arrowSlide 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* mynew .section7 .lets-talk-text / .contact-circle-wrap — desktop & tablet */
@media (min-width: 769px) {
    .home-trusted-lets-talk {
        position: absolute;
        left: clamp(24px, 10vw, 200px);
        right: auto;
        bottom: 6.5rem;
        top: auto;
        transform: none;
        font-size: clamp(7rem, 14vw, 10rem);
        max-width: calc(100vw - 260px);
        box-sizing: border-box;
    }

    .home-trusted-contact-wrap {
        position: absolute;
        left: auto;
        right: clamp(24px, 10vw, 200px);
        bottom: 4.5rem;
        top: auto;
        transform: none;
        width: 180px;
        height: 180px;
        max-width: 180px;
        max-height: 180px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .home-trusted-lets-talk {
        font-size: clamp(3.75rem, 11vw, 6rem);
    }
}

/* mynew: narrow tablet portrait — circle upar, text neeche */
@media (min-width: 769px) and (max-width: 900px) and (orientation: portrait) {
    .home-trusted-contact-wrap {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        bottom: 14rem !important;
        width: 180px !important;
        height: 180px !important;
        max-width: 180px !important;
        max-height: 180px !important;
        z-index: 12 !important;
    }


    .home-trusted-contact-center {
        width: 118px;
        height: 118px;
    }

    .home-trusted-contact-arrow {
        font-size: 2.35rem;
    }

    .home-trusted-lets-talk {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        bottom: 3.5rem !important;
        width: max-content;
        max-width: calc(100vw - 24px) !important;
        font-size: clamp(5rem, 15vw, 8rem) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-trusted-lets-talk>span {
        animation: none;
    }

    .home-trusted-contact-ring {
        animation: none;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .home-trusted-title,
    .home-roadmap-title {
        font-size: 55px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {

    .home-trusted-title,
    .home-roadmap-title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    .home-trusted-title,
    .home-roadmap-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {

    /* Phone: bottom rem — vh se window height resize par niche shrink nahi */
    .home-trusted-contact-wrap {
        position: absolute;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        top: auto;
        bottom: 11rem;
        width: 150px;
        height: 150px;
        max-width: 150px;
        max-height: 150px;
    }


    .home-trusted-contact-center {
        width: 100px;
        height: 100px;
    }

    .home-trusted-contact-arrow {
        font-size: 32px;
    }

    .home-trusted-lets-talk {
        position: absolute;
        left: 51%;
        right: auto;
        transform: translateX(-50%);
        top: auto;
        bottom: 3.25rem;
        width: max-content;
        max-width: calc(100vw - 24px);
        font-size: clamp(6rem, 22vw, 9rem);
        box-sizing: border-box;
    }

    .home-trusted-testimonial-card {
        width: min(340px, 90vw);
        min-width: min(340px, 90vw);
    }
}

/* Bahut chhoti width — mynew chhota circle */
@media (max-width: 576px) {


    .home-trusted-lets-talk {
        font-size: clamp(5.5rem, 20vw, 8rem);
    }
}

@media (max-width: 400px) {

    .home-trusted-lets-talk {
        font-size: clamp(4.5rem, 18vw, 7rem);
    }
}

@media (max-width: 575px) {

    .home-trusted-title,
    .home-roadmap-title {
        font-size: 36px;
    }

    .home-trusted-testimonial-text {
        font-size: 0.95rem;
    }

    .home-trusted-testimonial-name {
        font-size: 0.9rem;
    }

    .home-trusted-testimonial-role {
        font-size: 0.8rem;
    }
}

/* —— Plans section intro: pehle wala kicker + title + lead (mynew ka bada PLANS heading / subtext yahan nahi) —— */
.home-pricing-intro {
    width: min(var(--home-pricing-column-max, 1480px), calc(100% - 2 * var(--home-pricing-intro-inset, 2.75rem)));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.home-pricing .home-plans-kicker {
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #3f63ff;
}

.home-pricing .home-plans-title {
    margin: 0 0 clamp(1rem, 2vw, 1.35rem);
    font-family: 'Archivo', sans-serif;
    font-size: 65px;
    font-weight: 500;
    line-height: 1.17;
    color: #f1f1f1;
    text-transform: none;
    letter-spacing: 0.02em;
}

.home-pricing .home-plans-lead {
    margin: 0;
    max-width: 42rem;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .home-pricing .home-plans-title {
        font-size: 55px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .home-pricing .home-plans-title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .home-pricing .home-plans-title {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .home-pricing .home-plans-kicker {
        margin-bottom: clamp(0.85rem, 3vw, 1.15rem);
        font-size: 20px;
    }

    .home-pricing .home-plans-title {
        font-size: 36px;
        text-align: start;
    }

    .home-pricing .home-plans-lead {
        font-size: 1.125rem;
    }
}
