/* Net Soft Solutions — e-commerce-development.css
   Source: e-commerce-development(2).html + sections from e-commerce-development.html
   Header/Footer: Mobile-App-Development-in-Delhi.html
   https://www.netsoft.in */

:root {
    --navy: #0D2137;
    --blue: #1A56DB;
    --blue-h: #1446BE;
    --blue-lt: #EBF2FF;
    --blue-bd: #BFDBFE;
    --ink: #0F172A;
    --body: #475569;
    --muted: #64748B;
    --white: #FFFFFF;
    --bg: #F8FAFC;
    --bg2: #F1F5F9;
    --line: #E2E8F0;
    --amber: #F59E0B;
    --green: #10B981;
    --hh: 'DM Serif Display',Georgia,serif;
    --hb: 'Manrope',system-ui,sans-serif;
    --ease: cubic-bezier(.4,0,.2,1);
    --mw: 1160px;
    --r: 10px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--body);
    font-family: var(--hb);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.w {
    width: 92%;
    max-width: var(--mw);
    margin-inline: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.sr {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s var(--ease),transform .6s var(--ease);
}

    .sr.on {
        opacity: 1;
        transform: none;
    }

.sl {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity .55s var(--ease),transform .55s var(--ease);
}

    .sl.on {
        opacity: 1;
        transform: none;
    }

.sr-r {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity .55s var(--ease),transform .55s var(--ease);
}

    .sr-r.on {
        opacity: 1;
        transform: none;
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

    .eyebrow::before {
        content: '';
        width: 16px;
        height: 2px;
        background: var(--blue);
        border-radius: 99px;
    }

.sh {
    font-family: var(--hh);
    font-size: clamp(1.85rem,3vw,2.75rem);
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: -.02em;
    color: var(--ink);
}

    .sh em {
        font-style: italic;
        color: var(--blue);
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 22px;
    border-radius: var(--r);
    font-family: var(--hb);
    font-size: .86rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all .2s var(--ease);
}

    .btn svg {
        transition: transform .2s;
    }

    .btn:hover svg {
        transform: translateX(3px);
    }

.btn-blue {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

    .btn-blue:hover {
        background: var(--blue-h);
        box-shadow: 0 5px 18px rgba(26,86,219,.28);
    }

.btn-ol {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

    .btn-ol:hover {
        border-color: var(--ink);
    }

.btn-wt {
    background: #fff;
    color: var(--ink);
}

    .btn-wt:hover {
        background: var(--bg);
    }

.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.8);
}

    .btn-ghost:hover {
        border-color: #fff;
        color: #fff;
    }

.btn-lg {
    padding: 13px 26px;
    font-size: .94rem;
}

.topbar {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    text-align: center;
    padding: 8px 16px;
    font-size: .75rem;
    font-weight: 500;
}

    .topbar strong {
        color: #fff;
    }

    .topbar a {
        color: #fff;
        font-weight: 700;
        border-bottom: 1px solid rgba(255,255,255,.4);
        margin-left: 10px;
    }

        .topbar a:hover {
            border-color: #fff;
        }

header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

    .logo img {
        height: 34px;
        width: auto;
    }

.logo-fb {
    font-family: var(--hh);
    font-size: 1.15rem;
    color: var(--ink);
    display: none;
}

    .logo-fb em {
        font-style: italic;
        color: var(--blue);
    }

.nl {
    display: flex;
    gap: 4px;
    list-style: none;
}

    .nl > li {
        position: relative;
    }

        .nl > li > a {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: .82rem;
            font-weight: 500;
            color: var(--body);
            transition: color .18s,background .18s;
            white-space: nowrap;
        }

            .nl > li > a:hover, .nl > li.active > a {
                color: var(--ink);
                background: var(--bg);
            }

.chev {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform .2s;
}

.nl > li:hover > a .chev {
    transform: rotate(180deg);
}

.dd {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 32px rgba(13,33,55,.12);
    min-width: 230px;
    padding: 8px 6px 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity .18s var(--ease),transform .18s var(--ease),visibility .18s;
    z-index: 600;
}

    .dd::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 0;
        right: 0;
        height: 8px;
    }

.nl > li:hover .dd, .nl > li:focus-within .dd {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dd a {
    display: block;
    padding: 9px 14px;
    border-radius: 7px;
    font-size: .81rem;
    font-weight: 500;
    color: var(--body);
    transition: background .15s,color .15s;
    white-space: nowrap;
}

    .dd a:hover {
        background: var(--blue-lt);
        color: var(--blue);
    }

.nav-r {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-ph {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
}

    .nav-ph:hover {
        color: var(--blue);
    }

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .ham span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink);
        border-radius: 2px;
        transition: .2s;
    }

.bc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .71rem;
    color: rgba(255,255,255,.38);
    margin-bottom: 12px;
}

    .bc a {
        color: rgba(255,255,255,.55);
    }

        .bc a:hover {
            color: rgba(255,255,255,.9);
        }

.bc-sep {
    color: rgba(255,255,255,.22);
}

/* ── HERO: split text + CSS store mockup ─────────────────────────────────── */
.pg-hero {
    background: var(--navy);
    padding: 74px 0 88px;
    position: relative;
    overflow: hidden;
}

    .pg-hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -60px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(26,86,219,.1);
        pointer-events: none;
    }

    .pg-hero::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -40px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(16,185,129,.06);
        pointer-events: none;
    }

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: center;
}

.hero-eyebrow {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-bottom: 16px;
}

.hero-h1 {
    font-family: var(--hh);
    font-size: clamp(2rem,3.6vw,3.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -.025em;
}

    .hero-h1 em {
        font-style: italic;
        color: var(--blue-bd);
    }

.hero-p {
    font-size: .97rem;
    color: rgba(255,255,255,.56);
    line-height: 1.9;
    margin-top: 18px;
    max-width: 560px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* Store mockup */
.store-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-mock {
    width: 280px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0,0,0,.4);
}

.sm-header {
    background: rgba(26,86,219,.35);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sm-logo-bar {
    height: 8px;
    width: 60px;
    background: rgba(255,255,255,.3);
    border-radius: 4px;
}

.sm-cart {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,.15);
    border-radius: 6px;
}

.sm-banner {
    background: linear-gradient(120deg,rgba(26,86,219,.5),rgba(16,185,129,.3));
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
}

.sm-banner-text {
    height: 8px;
    width: 70%;
    background: rgba(255,255,255,.25);
    border-radius: 4px;
}

.sm-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
}

.sm-prod {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    overflow: hidden;
}

.sm-prod-img {
    height: 40px;
    background: rgba(255,255,255,.07);
}

.sm-prod-info {
    padding: 7px 8px;
}

.sm-prod-line {
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,.1);
    margin-bottom: 4px;
}

    .sm-prod-line.short {
        width: 55%;
        background: rgba(26,86,219,.35);
    }

.sm-footer {
    padding: 10px 14px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    gap: 6px;
}

.sm-btn {
    flex: 1;
    height: 24px;
    border-radius: 6px;
    background: rgba(26,86,219,.4);
}

    .sm-btn.ghost {
        background: rgba(255,255,255,.06);
    }


/* ══════════════════════════════════════════════════════════ */


/* ── ECOM HERO CONTENT / ECOM FEATURES / PLATFORM SECTIONS ─────────── */

.ecom-hero-content {
    padding: 80px 0;
    background: var(--white);
}

    .ecom-hero-content .w {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

.ecom-panel {
    background: var(--navy);
    border-radius: 18px;
    padding: 36px;
}

.ep-title {
    font-family: var(--hh);
    font-size: 1.2rem;
    color: #fff;
    font-style: italic;
    line-height: 1.35;
    margin-bottom: 20px;
}

.ep-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ep-feat {
    background: rgba(255,255,255,.06);
    border-radius: 9px;
    padding: 14px;
}

.ep-feat-ico {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.ep-feat h4 {
    font-size: .77rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.ep-feat p {
    font-size: .7rem;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
}

.ecom-features {
    background: var(--bg);
    padding: 80px 0;
}

.ef-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 40px;
}

.ef-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    transition: box-shadow .2s,transform .2s;
}

    .ef-box:hover {
        box-shadow: 0 8px 28px rgba(26,86,219,.1);
        transform: translateY(-3px);
    }

.ef-ico {
    font-size: 2rem;
    margin-bottom: 14px;
}

.ef-box h3 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.ef-box p {
    font-size: .82rem;
    color: var(--body);
    line-height: 1.75;
}

.platform-sec {
    padding: 80px 0;
    background: var(--white);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.plat-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
}

    .plat-card h3 {
        font-size: .96rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 10px;
    }

    .plat-card p {
        font-size: .84rem;
        color: var(--body);
        line-height: 1.78;
        margin-bottom: 14px;
    }

.plat-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--blue-lt);
    color: var(--blue);
}

@media(max-width:900px) {
    .ecom-hero-content .w {
        grid-template-columns: 1fr;
    }

    .ef-grid {
        grid-template-columns: 1fr 1fr;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {
    .ef-grid {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════════════ */


/* ── FEATURES GRID / PROCESS TIMELINE / TECH STACK / OVERVIEW / TESTIMONIALS / FAQ ── */

/* ── FEATURES GRID ──────────────────────────────────────────────────── */
.feat-sec {
    padding: 90px 0;
    background: var(--bg);
}

.feat-hd {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.feat-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px;
    transition: box-shadow .25s,transform .22s,border-color .22s;
    display: flex;
    flex-direction: column;
}

    .feat-card:hover {
        box-shadow: 0 10px 28px rgba(26,86,219,.1);
        transform: translateY(-4px);
        border-color: var(--blue-bd);
    }

.feat-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .feat-ico svg {
        width: 22px;
        height: 22px;
    }

.feat-card h3 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.feat-card p {
    font-size: .79rem;
    color: var(--body);
    line-height: 1.72;
    flex: 1;
}

.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.feat-tag {
    font-size: .68rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-lt);
    padding: 4px 10px;
    border-radius: 99px;
}

/* ── PROCESS TIMELINE ───────────────────────────────────────────────── */
.timeline-sec {
    padding: 90px 0;
    background: var(--white);
}

.timeline-hd {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
}

.timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        background: linear-gradient(180deg,var(--blue) 0%,var(--blue-bd) 100%);
    }

.tl-item {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 32px;
}

    .tl-item:last-child {
        margin-bottom: 0;
    }

.tl-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 26px;
}

.tl-item:nth-child(odd) .tl-card:last-child {
    background: transparent;
    border-color: transparent;
}

.tl-item:nth-child(even) .tl-card:first-child {
    background: transparent;
    border-color: transparent;
}

.tl-card h3 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.tl-card p {
    font-size: .8rem;
    color: var(--body);
    line-height: 1.72;
}

.tl-node {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hh);
    font-size: .85rem;
    font-weight: 400;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(26,86,219,.35);
}

/* ── TECH STACK ─────────────────────────────────────────────────────── */
.tech-sec {
    padding: 60px 0;
    background: var(--bg2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.tech-cat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 20px;
}

.tc-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .tc-label::before {
        content: '';
        width: 12px;
        height: 2px;
        background: var(--blue);
        border-radius: 99px;
    }

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tech-tag {
    font-size: .73rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--bg2);
    border: 1px solid var(--line);
    padding: 5px 12px;
    border-radius: 6px;
}

/* ── OVERVIEW SECTION ───────────────────────────────────────────────── */
.ov-sec {
    padding: 90px 0;
    background: var(--white);
}

.ov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.ov-body p {
    font-size: .94rem;
    color: var(--body);
    line-height: 1.92;
    margin-bottom: 16px;
}

.sidebar-pull {
    background: var(--navy);
    border-radius: 18px;
    padding: 32px;
    color: #fff;
    position: sticky;
    top: 88px;
}

.pull-quote-big {
    font-family: var(--hh);
    font-size: 1.45rem;
    font-style: italic;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

    .pull-quote-big em {
        color: var(--blue-bd);
    }

.pull-cite {
    font-size: .72rem;
    color: rgba(255,255,255,.35);
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 14px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}

.stag {
    font-size: .72rem;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
}

/* ── TESTIMONIALS ───────────────────────────────────────────────────── */
.testi-sec {
    padding: 90px 0;
    background: var(--white);
}

.testi-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.tc2 {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
}

.tc2-stars {
    color: var(--amber);
    font-size: .78rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.tc2-text {
    font-family: var(--hh);
    font-style: italic;
    font-size: .93rem;
    color: var(--ink);
    line-height: 1.76;
    margin-bottom: 18px;
}

.tc2-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.tc2-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hh);
    font-size: .95rem;
    color: var(--blue);
    flex-shrink: 0;
}

.tc2-name {
    font-size: .79rem;
    font-weight: 700;
    color: var(--ink);
}

.tc2-role {
    font-size: .68rem;
    color: var(--muted);
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-sec {
    padding: 90px 0;
    background: var(--bg);
}

.faq-hd {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--hb);
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    transition: background .18s;
}

    .faq-q:hover {
        background: var(--bg);
    }

    .faq-q svg {
        width: 18px;
        height: 18px;
        color: var(--blue);
        flex-shrink: 0;
        transition: transform .25s var(--ease);
    }

.faq-item.open .faq-q {
    background: var(--blue-lt);
    color: var(--blue);
}

    .faq-item.open .faq-q svg {
        transform: rotate(45deg);
    }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.faq-a-inner {
    padding: 0 22px 20px;
    font-size: .87rem;
    color: var(--body);
    line-height: 1.8;
}

.faq-item.open .faq-a {
    max-height: 300px;
}


/* ══════════════════════════════════════════════════════════ */


/* ── CTA BAND ──────────────────────────────────────────────────────── */

/* ── CTA ─────────────────────────────────────────────────────────────── */
.cta-band {
    background: var(--navy);
    padding: 72px 0;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.cta-l h2 {
    font-family: var(--hh);
    font-size: clamp(1.7rem,2.6vw,2.3rem);
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
}

    .cta-l h2 em {
        font-style: italic;
        color: var(--blue-bd);
    }

.cta-l p {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    margin-top: 10px;
    line-height: 1.78;
}

.cta-r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}


/* ══════════════════════════════════════════════════════════ */


/* ── WHATSAPP FLOAT + BACK TO TOP ──────────────────────────────────── */

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.25);
    z-index: 900;
    transition: transform .2s;
}

    .wa-float:hover {
        transform: scale(1.1);
    }

    .wa-float svg {
        width: 26px;
        height: 26px;
        fill: #fff;
    }

.btt-btn {
    position: fixed;
    bottom: 84px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,.2);
    z-index: 900;
    transition: background .2s;
}

    .btt-btn.show {
        display: flex;
    }

    .btt-btn:hover {
        background: var(--blue);
    }


/* ══════════════════════════════════════════════════════════ */


/* ── FOOTER (from Mobile-App-Development-in-Delhi.html) ────────────── */

footer {
    background: #070F1A;
    font-family: var(--hb);
}

.ft-main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 52px 0 64px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.ft-brand {
    flex: 0 0 32%;
    max-width: 32%;
    padding-right: 48px;
    box-sizing: border-box;
}

.ft-desc {
    margin-top: 18px;
    font-size: .79rem;
    color: rgba(255,255,255,.32);
    line-height: 1.88;
    max-width: 230px;
}

.ft-addr {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .ft-addr a, .ft-addr span {
        font-size: .77rem;
        color: rgba(255,255,255,.38);
        display: flex;
        align-items: flex-start;
        gap: 7px;
        transition: color .16s;
        font-style: normal;
        line-height: 1.5;
    }

        .ft-addr a:hover {
            color: rgba(255,255,255,.82);
        }

.ft-col {
    flex: 0 0 22.67%;
    max-width: 22.67%;
    display: block;
    box-sizing: border-box;
    padding-right: 24px;
}

    .ft-col:last-child {
        padding-right: 0;
    }

.ft-col-head {
    display: block;
    width: 100%;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin: 0 0 0;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    line-height: 1;
}

.ft-col ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
}

    .ft-col ul li {
        margin: 0;
        padding: 0;
    }

        .ft-col ul li a {
            font-size: .8rem;
            color: rgba(255,255,255,.46);
            transition: color .16s;
            display: block;
            line-height: 1.5;
        }

            .ft-col ul li a:hover {
                color: rgba(255,255,255,.92);
            }

.ft-soc-wrap {
    margin-top: 28px;
    width: 100%;
    padding-bottom: 4px;
}

.ft-soc-head {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 14px;
    line-height: 1;
}

.ft-soc {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

    .ft-soc a {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 7px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.1);
        display: grid;
        place-items: center;
        color: rgba(255,255,255,.5);
        transition: all .18s;
        text-decoration: none;
        flex-shrink: 0;
    }

        .ft-soc a:hover {
            background: var(--blue);
            border-color: var(--blue);
            color: #fff;
        }

        .ft-soc a svg {
            width: 15px;
            height: 15px;
            fill: currentColor;
            display: block;
        }

.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0;
}

.ft-copy {
    font-size: .71rem;
    color: rgba(255,255,255,.2);
    line-height: 1.6;
}

    .ft-copy a {
        color: rgba(255,255,255,.34);
        transition: color .16s;
    }

        .ft-copy a:hover {
            color: rgba(255,255,255,.68);
        }

/* Footer responsive */
@media(max-width:900px) {
    .ft-main {
        flex-wrap: wrap;
    }

    .ft-brand {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.07);
        padding-bottom: 26px;
        margin-bottom: 26px;
    }

    .ft-col {
        flex: 0 0 calc(33.33% - 14px);
    }
}

@media(max-width:580px) {
    .ft-col {
        flex: 0 0 100%;
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ══════════════════════════════════════════════════════════ */


/* ── RESPONSIVE ────────────────────────────────────────────────────── */

@media(max-width:960px) {
    .nl, .nav-ph, .desk-cta {
        display: none;
    }

    .ham {
        display: flex;
    }

    .nl.open {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        border-top: 1px solid var(--line);
        overflow-y: auto;
        padding: 12px 0;
        z-index: 400;
    }

        .nl.open > li > a {
            padding: 13px 5%;
            font-size: .92rem;
            border-radius: 0;
            border-bottom: 1px solid var(--bg2);
        }

        .nl.open .dd {
            position: static;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: none;
            box-shadow: none;
            border: none;
            border-radius: 0;
            background: var(--bg);
            padding: 4px 0 4px 24px;
            display: none;
        }

        .nl.open li.mob-open .dd {
            display: block;
        }

        .nl.open .dd a {
            padding: 10px 5%;
            border-radius: 0;
            font-size: .85rem;
        }

        .nl.open .chev {
            margin-left: auto;
        }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .store-wrap {
        display: none;
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline::before {
        left: 22px;
    }

    .tl-item {
        grid-template-columns: 56px 1fr;
    }

        .tl-item:nth-child(odd) .tl-card:last-child, .tl-item:nth-child(even) .tl-card:first-child {
            display: none;
        }

        .tl-item:nth-child(even) .tl-card:last-child {
            display: block;
            background: var(--bg);
            border-color: var(--line);
        }

    .tech-inner {
        grid-template-columns: 1fr 1fr;
    }

    .ov-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-pull {
        position: static;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

        .testi-grid .tc2:last-child {
            display: none;
        }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .cta-r {
        align-items: flex-start;
    }
}

@media(max-width:600px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }

    .tech-inner {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

        .testi-grid .tc2:last-child {
            display: block;
        }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── INLINE TEXT LINK ─────────────────────────────────────────────────────── */
.lk {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-color: rgba(26,86,219,.3);
    text-underline-offset: 3px;
}

    .lk:hover {
        text-decoration-color: var(--blue);
    }

/* ── DESK CTA SIZING ─────────────────────────────────────────────────────── */
.desk-cta {
    font-size: .8rem;
    padding: 9px 18px;
}

/* ── SKIP TO MAIN CONTENT ──────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    background: var(--blue);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 0 0 8px 0;
    text-decoration: none;
}

    .skip-link:focus {
        left: 0;
        top: 0;
        width: auto;
        height: auto;
        overflow: visible;
        outline: 3px solid var(--blue);
        outline-offset: 2px;
    }

/* ── FOCUS VISIBLE (keyboard accessibility) ────────────────────────────────── */
:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── SR-ONLY UTILITY ────────────────────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── VISUALLY HIDDEN (alias) ────────────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── ADDRESS NORMALISE ──────────────────────────────────────────────── */
address {
    font-style: normal;
}

/* ── INLINE LINK STYLES ─────────────────────────────────────────────── */
p a, .faq-a a {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-color: rgba(26,86,219,.3);
    text-underline-offset: 3px;
}

    p a:hover, .faq-a a:hover {
        text-decoration-color: var(--blue);
    }

/* ── ACTIVE NAV DROPDOWN ITEM ───────────────────────────────────────── */
.dd-current {
    color: var(--blue) !important;
    background: var(--blue-lt) !important;
}

/* ── FOOTER LOGO LINK SPACING ───────────────────────────────────────── */
.ft-logo-link {
    margin-bottom: 14px;
}

/* ── STATS BAND (replaces inline styles) ─────────────────────────────── */
.stats-band {
    background: var(--navy);
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,.07);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 12px 20px;
    border-right: 1px solid rgba(255,255,255,.1);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-n {
    font-family: var(--hh);
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
    line-height: 1;
}

.stat-l {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-top: 5px;
}

@media(max-width:580px) {
    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid rgba(255,255,255,.1);
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.1);
        border-right: none;
    }
}

/* ── SIDEBAR CTA GROUP (replaces inline flex container) ─────────────── */
.sidebar-cta-group {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── E-E-A-T AUTHOR BLOCK (replaces inline styles) ──────────────────── */
.eat-sec {
    background: var(--bg2);
    padding: 48px 0;
}

.eat-inner {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.eat-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eat-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.eat-body {
    font-size: .88rem;
    color: var(--body);
    line-height: 1.85;
}

.eat-updated {
    font-size: .74rem;
    color: var(--muted);
    margin-top: 10px;
}

@media(max-width:600px) {
    .eat-inner {
        flex-direction: column;
        padding: 24px 20px;
    }
}

/* ── CONTENT VISIBILITY (performance) ──────────────────────────────── */
.testi-sec,
.tech-sec,
.faq-sec {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

/* ── PRINT STYLES ───────────────────────────────────────────────────── */
@media print {
    .topbar,
    header,
    .wa-float,
    .btt-btn,
    .hero-btns,
    .cta-band,
    .sr, .sl, .sr-r {
        display: none !important;
    }

    body {
        font-size: 11pt;
        color: #000;
        background: #fff;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: .7em;
        color: #555;
    }

    .pg-hero {
        background: #f0f4f8;
        padding: 24pt 0;
    }

    footer {
        background: #f0f4f8;
        color: #000;
    }
}

/* ── REDUCED MOTION ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .sr, .sl, .sr-r {
        opacity: 1;
        transform: none;
    }
}

/* ── FORCED COLOURS (Windows High Contrast) ──────────────────────────── */
@media (forced-colors: active) {
    .btn,
    .feat-card,
    .ef-box,
    .plat-card,
    .tc2,
    .faq-item {
        border: 2px solid ButtonText;
    }

    .btn-blue {
        background: Highlight;
        color: HighlightText;
        border-color: Highlight;
    }

    .wa-float {
        background: Highlight;
    }

    .tl-dot {
        background: Highlight;
        color: HighlightText;
    }
}
