/* =========================================================
   AIDENTIVE.AI — Teal / Navy Theme
   ========================================================= */
:root {
    --primary: #14B8AA;
    --primary-dark: #0d9488;
    --primary-light: #f0fdfa;
    --dark: #0F172A;
    --body: #475569;
    --heading: #0F172A;
    --radius: 14px;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--body);
    background-color: #F8FAFC;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--heading);
    font-weight: 700;
}

a { text-decoration: none; transition: all .3s ease; }

.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary-dark);
    --bs-btn-hover-border-color: var(--primary-dark);
    --bs-btn-active-bg: var(--primary-dark);
    --bs-btn-active-border-color: var(--primary-dark);
}

/* button shine sweep */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-20deg);
    transition: left .55s ease;
}
.btn-shine:hover::after { left: 130%; }
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }

/* ---------- Badge pill ---------- */
.badge-pill {
    display: inline-block;
    padding: .35rem 1.1rem;
    border-radius: 50rem;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .4px;
}
.badge-pill.light { background: rgba(255,255,255,.15); color: #fff; }

/* ---------- Navbar ---------- */
.main-nav {
    background: #fff;
    
    transition: box-shadow .3s ease, padding .3s ease;
}
.main-nav.scrolled { box-shadow: 0 .5rem 1.5rem rgba(15,23,42,.08); padding: .5rem 0; }
.brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}
.brand-tag {
    display: block;
    font-size: .6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--body);
    font-weight: 600;
    margin-top: -2px;
}
.main-nav .nav-link {
    font-weight: 600;
    color: var(--heading);
    margin: 0 .55rem;
    position: relative;
}
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: all .3s ease;
    transform: translateX(-50%);
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { width: 100%; }
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--primary); }
.btn-nav {
    font-weight: 600;
    font-size: .9rem;
    padding: .45rem 1.2rem;
}

/* small circular icon button — keeps the icon perfectly centred */
.icon-circle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0 !important;
    border-radius: 50%;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary), #06B6DA, #38bdf8);
    z-index: 2000;
    transition: width .08s linear;
}

/* ---------- Hero ---------- */
.hero-section {
    background: linear-gradient(135deg, #0F172A 0%, #0d2535 60%, #134e4a 100%);
    background-size: 200% 200%;
    animation: heroGradient 12s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 7rem;
}
@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 45%),
                radial-gradient(circle at 10% 90%, rgba(255,255,255,.06), transparent 40%);
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 70% at 55% 40%, #000 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 75% 70% at 55% 40%, #000 25%, transparent 75%);
    pointer-events: none;
}
.text-grad-light {
    background: linear-gradient(120deg, #a5f3fc, #67e8f9, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* glass chips floating over hero image */
.glass-chip {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 .8rem 2rem rgba(0,0,0,.18);
    z-index: 3;
    animation: chipFloat 4s ease-in-out infinite;
}
.glass-chip .gc-ico {
    width: 34px; height: 34px; flex-shrink: 0;
    background: rgba(255,255,255,.9);
    border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.glass-chip .gc-t { font-size: .8rem; font-weight: 700; color: #fff; line-height: 1.2; }
.glass-chip .gc-s { font-size: .68rem; color: rgba(255,255,255,.75); }
.glass-chip.gc-1 { top: 14%; left: -10px; animation-delay: .6s; }
.glass-chip.gc-2 { bottom: 22%; right: -14px; animation-delay: 1.6s; }
.glass-chip.gc-3 { bottom: 4%; left: 6%; animation-delay: 2.4s; }
@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* hero scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 22px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 20px;
    z-index: 3;
}
.scroll-hint::before {
    content: '';
    position: absolute;
    top: 7px; left: 50%;
    width: 4px; height: 9px;
    margin-left: -2px;
    background: #fff;
    border-radius: 3px;
    animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    70% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 0; transform: translateY(0); }
}
.hero-section h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.5px;
}
.hero-h1-deco {
    width: 58px; height: 4px;
    background: linear-gradient(90deg, #14B8AA, #06B6DA);
    border-radius: 2px;
    margin-bottom: 1.4rem;
}
.hbadge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: .38rem 1.1rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50rem;
    color: rgba(255,255,255,.88);
    font-size: .8rem; font-weight: 600;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(6px);
}
.btn-hero-light {
    background: #fff; color: var(--primary);
    font-weight: 600; border-radius: 50rem;
    padding: .8rem 2rem; border: 2px solid #fff;
    display: inline-block;
}
.btn-hero-light:hover { background: transparent; color: #fff; }
.btn-hero-outline {
    background: transparent; color: #fff;
    font-weight: 600; border-radius: 50rem;
    padding: .8rem 2rem; border: 2px solid rgba(255,255,255,.6);
    display: inline-block;
}
.btn-hero-outline:hover { background: #fff; color: var(--primary); }

/* hero float animation */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* hero description */
.hero-desc { color: rgba(255,255,255,.82); max-width: 480px; line-height: 1.78; font-size: 1.05rem; }

/* trust bar */
.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-av {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, #14B8AA, #06B6DA);
    border: 2px solid rgba(255,255,255,.35);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .68rem; font-weight: 800; color: #fff;
    margin-left: -9px;
}
.trust-av:first-child { margin-left: 0; }
.trust-av.more { background: rgba(255,255,255,.15); font-size: .6rem; }
.trust-stars { font-size: .75rem; color: #fbbf24; letter-spacing: 1px; line-height: 1.2; }
.trust-note { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 1px; }

/* hero stats */
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; }
.hero-stats .sn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1;
}
.hero-stats .sl { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* live dot animation */
.live-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulseDots 2s infinite;
    flex-shrink: 0;
}

/* ---- Integration Hub ---- */
.hero-hub {
    position: relative;
    width: 100%; max-width: 420px;
    aspect-ratio: 1;
    margin: 0 auto;
}
.hub-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hub-core {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 84px; height: 84px; border-radius: 50%;
    background: linear-gradient(135deg, #14B8AA, #06B6DA);
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    box-shadow:
        0 0 0 14px rgba(20,184,170,.1),
        0 0 0 28px rgba(20,184,170,.06),
        0 0 50px rgba(20,184,170,.6),
        0 0 100px rgba(6,182,218,.28);
    animation: hubGlow 3s ease-in-out infinite;
}
@keyframes hubGlow {
    0%,100% { box-shadow: 0 0 0 14px rgba(20,184,170,.1), 0 0 0 28px rgba(20,184,170,.06), 0 0 50px rgba(20,184,170,.6), 0 0 100px rgba(6,182,218,.28); }
    50%      { box-shadow: 0 0 0 20px rgba(20,184,170,.14), 0 0 0 42px rgba(20,184,170,.07), 0 0 70px rgba(20,184,170,.7), 0 0 130px rgba(6,182,218,.35); }
}
.hub-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -1px;
}
.hub-app {
    position: absolute;
    width: 54px; height: 54px; border-radius: 15px;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    transform: translate(-50%,-50%);
    box-shadow: 0 4px 22px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.08);
    z-index: 3;
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: default;
}
.hub-app:hover { transform: translate(-50%,-50%) scale(1.15); box-shadow: 0 8px 30px rgba(0,0,0,.45), 0 0 20px rgba(20,184,170,.4); }
/* 10 icons — 36° intervals, 42% radius */
.ha-1  { left: 50%;    top: 8%;   }
.ha-2  { left: 74.7%;  top: 16%;  }
.ha-3  { left: 90%;    top: 37%;  }
.ha-4  { left: 90%;    top: 63%;  }
.ha-5  { left: 74.7%;  top: 84%;  }
.ha-6  { left: 50%;    top: 92%;  }
.ha-7  { left: 25.3%;  top: 84%;  }
.ha-8  { left: 10%;    top: 63%;  }
.ha-9  { left: 10%;    top: 37%;  }
.ha-10 { left: 25.3%;  top: 16%;  }

/* Feature strip under hub */
.hero-feat-strip {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 4px; margin-top: 1.2rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; padding: 10px 8px;
    backdrop-filter: blur(6px);
}
.hfs-item { display: flex; align-items: flex-start; gap: 6px; padding: 3px 4px; }
.hfs-item > i { color: #14B8AA; font-size: .95rem; flex-shrink: 0; margin-top: 2px; }
.hfs-t { font-size: .62rem; font-weight: 700; color: #fff; line-height: 1.3; }
.hfs-s { font-size: .56rem; color: rgba(255,255,255,.45); line-height: 1.3; }

/* ---- Right Stat Cards ---- */
.hstat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; padding: 1rem 1.1rem;
    backdrop-filter: blur(12px);
}
.hsc-lbl { font-size: .65rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; }
.hsc-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.1rem; font-weight: 900; color: #fff; line-height: 1.1;
}
.hsc-sub { font-size: .63rem; color: rgba(255,255,255,.42); }
.hsc-live-tag {
    font-size: .63rem; font-weight: 700; color: #4ade80;
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.22);
    padding: 3px 9px; border-radius: 20px; white-space: nowrap;
}
.hsc-spark { display: block; width: 100%; height: 44px; margin: .5rem 0 .35rem; }
.hsc-trend-up { font-size: .63rem; font-weight: 700; color: #4ade80; display: flex; align-items: center; gap: 2px; }
.hsc-accent {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem; font-weight: 900; color: #14B8AA; line-height: 1.1;
}
/* Pipeline */
.hsc-pipe {
    display: flex; align-items: center; gap: 9px;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hsc-pipe:last-child { border-bottom: 0; padding-bottom: 0; }
.hsc-pipe-ico {
    width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: .82rem;
}
.flex-1 { flex: 1; min-width: 0; }
.hsc-pipe-l { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.9); line-height: 1.2; }
.hsc-pipe-s { font-size: .58rem; color: rgba(255,255,255,.42); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hsc-pipe-ck { font-size: .9rem; flex-shrink: 0; }

/* floating decorative circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    background: rgba(255,255,255,.08);
    animation: drift 9s ease-in-out infinite;
    pointer-events: none;
}
.floating-circle.c1 { width: 160px; height: 160px; top: 12%; left: 4%; }
.floating-circle.c2 { width: 90px; height: 90px; top: 10%; right: 4%; animation-delay: 2.5s; }
@keyframes drift {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(14px, -22px) scale(1.07); }
}

/* ---------- Marquee ticker ---------- */
.marquee-strip {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}
.marquee-strip::before, .marquee-strip::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 90px; z-index: 2; pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.marquee-track {
    display: flex; gap: 14px;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.mq-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .78rem; font-weight: 600;
    color: var(--heading);
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    padding: .45rem 1.1rem;
    border-radius: 50rem;
    white-space: nowrap;
}
.mq-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.mq-item.tool { background: #fff; border-color: #e2e8f0; }
.mq-item.tool .te { font-size: 1rem; }

/* ---------- Sections ---------- */
.section-padding { padding: 5.5rem 0; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
.title-deco {
    position: relative;
    display: inline-block;
}
.title-deco::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 64px; height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary), #06B6DA);
}
.text-center .title-deco::after { left: 50%; transform: translateX(-50%); }

/* ---------- About ---------- */
.about-img-wrap { position: relative; }
.about-badge {
    position: absolute;
    left: -16px; bottom: 26px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 1rem 2.5rem rgba(15,23,42,.18);
    z-index: 2;
    animation: chipFloat 4.5s ease-in-out infinite;
}
.about-badge .ab-ico {
    width: 44px; height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.about-badge .ab-v {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem; font-weight: 800; color: var(--heading); line-height: 1.1;
}
.about-badge .ab-l { font-size: .72rem; color: var(--body); }
.about-img-wrap img {
    border-radius: var(--radius);
    box-shadow: 0 1.5rem 3rem rgba(15,23,42,.12);
    max-height: 420px;
    width: 100%;
    object-fit: cover;
}
.about-img-wrap::after {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    right: -18px; bottom: -18px;
    background: radial-gradient(circle, var(--primary) 3px, transparent 3.5px);
    background-size: 18px 18px;
    z-index: -1;
    animation: pulseDots 3s ease-in-out infinite;
}
@keyframes pulseDots { 0%,100% { opacity: .9; } 50% { opacity: .35; } }
.feature-check {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin-bottom: .8rem;
    font-weight: 600;
    color: var(--heading);
    text-align: left;
}
.feature-check i { color: var(--primary); font-size: 1.1rem; line-height: 1.4; flex-shrink: 0; }

/* ---------- Service cards ---------- */
.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    text-align: center;
    height: 100%;
    transition: transform .4s ease, box-shadow .4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #06B6DA);
    transform: scaleX(0);
    transition: transform .4s ease;
    transform-origin: left;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 1.5rem 3rem rgba(15,23,42,.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .sc-num {
    position: absolute;
    top: 10px; right: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #f0fdfa;
    line-height: 1;
    transition: color .4s ease;
    z-index: 0;
}
.service-card:hover .sc-num { color: #ccfbf1; }
.service-card > *:not(.sc-num) { position: relative; z-index: 1; }

/* ---------- Service cards v2 (What we build) ---------- */
.services-sec { position: relative; overflow: hidden; }
.services-sec::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(15,23,42,.04), transparent 65%);
    pointer-events: none;
}
.services-sec::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -160px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(15,23,42,.03), transparent 65%);
    pointer-events: none;
}
.service-card2 {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.9rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #06B6DA);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.service-card2:hover { transform: translateY(-9px); box-shadow: 0 1.4rem 3rem rgba(15,23,42,.12); border-color: #99f6e4; }
.service-card2:hover::before { transform: scaleX(1); }
.sc2-num {
    position: absolute;
    top: 16px; right: 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #f0fdfa;
    line-height: 1;
    transition: color .35s ease;
}
.service-card2:hover .sc2-num { color: #ccfbf1; }
.sc2-icon {
    width: 58px; height: 58px;
    border-radius: 15px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #0F172A, #14B8AA);
    box-shadow: 0 .6rem 1.4rem rgba(15,23,42,.28);
    transition: transform .35s ease;
    position: relative; z-index: 1;
}
.service-card2:hover .sc2-icon { transform: rotate(-8deg) scale(1.07); }
.service-card2:nth-child(6n+2) .sc2-icon, .col-sc:nth-child(6n+2) .sc2-icon { background: linear-gradient(135deg, #0891b2, #38bdf8); box-shadow: 0 .6rem 1.4rem rgba(6,182,218,.28); }
.col-sc:nth-child(6n+3) .sc2-icon { background: linear-gradient(135deg, #0891b2, #38bdf8); box-shadow: 0 .6rem 1.4rem rgba(8,145,178,.28); }
.col-sc:nth-child(6n+4) .sc2-icon { background: linear-gradient(135deg, #ea580c, #fbbf24); box-shadow: 0 .6rem 1.4rem rgba(234,88,12,.28); }
.col-sc:nth-child(6n+5) .sc2-icon { background: linear-gradient(135deg, #db2777, #f472b6); box-shadow: 0 .6rem 1.4rem rgba(219,39,119,.28); }
.col-sc:nth-child(6n) .sc2-icon { background: linear-gradient(135deg, #059669, #4ade80); box-shadow: 0 .6rem 1.4rem rgba(5,150,105,.28); }
.sc2-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: .6rem;
}
.sc2-desc { font-size: .85rem; color: var(--body); line-height: 1.65; margin-bottom: 1rem; }
.service-card2 .tags { justify-content: flex-start; margin-bottom: 1.1rem; }
.sc2-foot {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed #d1fae5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sc2-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sc2-link .arr {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--primary-light);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .72rem;
    transition: all .3s ease;
}
.service-card2:hover .sc2-link .arr { background: var(--primary); color: #fff; transform: translateX(5px); }
.service-icon {
    width: 72px; height: 72px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.9rem;
    margin: 0 auto 1.2rem;
    transition: all .4s ease;
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: rotateY(180deg); }
.link-more { color: var(--primary); font-weight: 600; }
.link-more i { transition: transform .3s ease; display: inline-block; }
.link-more:hover i { transform: translateX(6px); }

/* tag chips */
.tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-bottom: .9rem; }
.tags.start { justify-content: flex-start; }
.tag {
    font-size: .68rem;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid #ccfbf1;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* ---------- Why choose / process band ---------- */
.why-section {
    background: linear-gradient(135deg, #0F172A 0%, #0c2330 100%);
    color: rgba(255,255,255,.85);
    position: relative;
    overflow: hidden;
}
.why-section .container { position: relative; z-index: 1; }
.why-section .section-title, .why-section h2 { color: #fff; }
.why-point { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; text-align: left; }
.why-point i {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: #fff; color: var(--primary);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .9rem;
    margin-top: .1rem;
}
.counter-box {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    backdrop-filter: blur(4px);
    transition: transform .3s ease;
}
.counter-box:hover { transform: translateY(-6px); }
.counter-box .cicon { font-size: 1.9rem; line-height: 1; }
.counter-box .num { font-size: 1.7rem; font-weight: 800; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; }
.counter-box .label { color: rgba(255,255,255,.8); font-size: .85rem; }
.why-img { position: relative; }
.why-img img {
    border-radius: var(--radius);
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,.25);
    animation: heroFloat 6s ease-in-out infinite;
    max-height: 440px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 115%; height: 115%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255,255,255,.3);
    border-radius: 50%;
    animation: spin 30s linear infinite;
    pointer-events: none;
}
.orbit-ring .orb {
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 14px rgba(255,255,255,.8);
}
.orbit-ring .orb.o1 { top: -7px; left: 50%; }
.orbit-ring .orb.o2 { bottom: 8%; left: 4%; background: #67e8f9; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* 3D tilt target */
.tilt {
    transition: transform .25s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

/* ---------- Process steps (light) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 3rem; position: relative; }
.steps::before {
    content: ""; position: absolute; top: 26px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, #99f6e4, #99f6e4, transparent);
}
.step { text-align: center; padding: 0 10px; }
.step-n {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #0F172A, #134e4a);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .95rem; font-weight: 800; color: #fff;
    margin: 0 auto 1.1rem; position: relative; z-index: 1;
    box-shadow: 0 .5rem 1.2rem rgba(15,23,42,.3);
}
.step-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: .5rem; }
.step-d { font-size: .85rem; color: var(--body); line-height: 1.6; }

/* ---------- Industries grid (light) ---------- */
.igrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 2.6rem; }
.ic {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 12px; padding: 24px; text-align: center;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ic:hover { border-color: #99f6e4; transform: translateY(-5px); box-shadow: 0 1rem 2rem rgba(15,23,42,.08); }
.ic-emoji { font-size: 28px; margin-bottom: 12px; }
.ic-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.ic-desc { font-size: .78rem; color: var(--body); line-height: 1.5; }

/* ---------- Integrations strip (legacy grid) ---------- */
.tgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 2rem; }
.ttile {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 10px; padding: 18px 12px; text-align: center;
    transition: border-color .25s, transform .25s;
}
.ttile:hover { border-color: #99f6e4; transform: translateY(-3px); }
.ttile .te { font-size: 24px; margin-bottom: 8px; }
.ttile .tn { font-size: .72rem; color: var(--body); font-weight: 600; }

/* ---------- Integrations — AI orbit section ---------- */
.integrations-sec {
    background: linear-gradient(135deg, #0F172A 0%, #0d2535 55%, #134e4a 100%);
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,.78);
}
.integrations-sec::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 78% 30%, rgba(20,184,170,.35), transparent 50%),
                radial-gradient(circle at 12% 85%, rgba(6,182,218,.22), transparent 45%);
    pointer-events: none;
}
.integrations-sec::after {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 70% 70% at 70% 45%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 45%, #000 20%, transparent 75%);
    pointer-events: none;
}
.integrations-sec .section-title { color: #fff; }
.int-stat {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: .7rem 1.1rem;
    backdrop-filter: blur(6px);
}
.int-stat .is-ico {
    width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
    background: linear-gradient(135deg, #14B8AA, #06B6DA);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: .85rem;
}
.int-stat .is-v { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.1; }
.int-stat .is-l { font-size: .7rem; color: rgba(255,255,255,.6); }

/* orbit visual */
.orbit-wrap {
    position: relative;
    width: min(460px, 92%);
    aspect-ratio: 1;
    margin: 0 auto;
}
.orbit-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 118px; height: 118px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14B8AA, #06B6DA);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #fff;
    z-index: 5;
    box-shadow: 0 0 60px rgba(20,184,170,.65), 0 0 120px rgba(6,182,218,.35);
}
.orbit-core i { font-size: 2rem; margin-bottom: 4px; }
.orbit-core .oc-l { font-size: .58rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; opacity: .85; }
.orbit-core::before, .orbit-core::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(20,184,170,.45);
    animation: ringPulse 2.6s ease-out infinite;
}
.orbit-core::after { animation-delay: 1.3s; }
@keyframes ringPulse {
    0% { transform: scale(.85); opacity: .9; }
    100% { transform: scale(1.7); opacity: 0; }
}
.orbit-ring-a, .orbit-ring-b {
    position: absolute;
    top: 50%; left: 50%;
    border: 1px dashed rgba(255,255,255,.22);
    border-radius: 50%;
}
.orbit-ring-a {
    width: 58%; height: 58%;
    margin: -29% 0 0 -29%;
    animation: orbitSpin 32s linear infinite;
}
.orbit-ring-b {
    width: 94%; height: 94%;
    margin: -47% 0 0 -47%;
    animation: orbitSpin 55s linear infinite reverse;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitSpinRev { to { transform: rotate(-360deg); } }
.orbit-node {
    position: absolute;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    box-shadow: 0 0 0 5px rgba(255,255,255,.1), 0 .6rem 1.6rem rgba(0,0,0,.35);
    transform: translate(-50%, -50%);
    transition: box-shadow .3s ease;
}
.orbit-ring-a .orbit-node { animation: orbitSpinRev 32s linear infinite; }
.orbit-ring-b .orbit-node { animation: orbitSpin 55s linear infinite; }
.orbit-node:hover { box-shadow: 0 0 0 6px rgba(20,184,170,.35), 0 .6rem 1.8rem rgba(0,0,0,.4); }
/* positions on ring A (3 nodes) */
.orbit-ring-a .on-1 { top: 0; left: 50%; }
.orbit-ring-a .on-2 { top: 75%; left: 93.3%; }
.orbit-ring-a .on-3 { top: 75%; left: 6.7%; }
/* positions on ring B (5 nodes) */
.orbit-ring-b .on-1 { top: 0; left: 50%; }
.orbit-ring-b .on-2 { top: 34.5%; left: 97.6%; }
.orbit-ring-b .on-3 { top: 90.5%; left: 79.4%; }
.orbit-ring-b .on-4 { top: 90.5%; left: 20.6%; }
.orbit-ring-b .on-5 { top: 34.5%; left: 2.4%; }

/* glass marquee chips inside dark section */
.integrations-sec .marquee-strip::before { background: linear-gradient(90deg, #0F172A, transparent); }
.integrations-sec .marquee-strip::after { background: linear-gradient(-90deg, #134e4a, transparent); }
.mq-item.glass {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.16);
    color: #fff;
    backdrop-filter: blur(6px);
}
.mq-item.glass i { color: #a5f3fc; }

/* ---------- Case study cards ---------- */
.frow { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2.2rem; }
.fbtn {
    font-size: .75rem; font-weight: 600; padding: 7px 18px; border-radius: 20px;
    cursor: pointer; transition: all .2s; letter-spacing: .3px;
    border: 1px solid #cbd5e1; background: #fff; color: var(--body);
}
.fbtn.on, .fbtn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.cs-card {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 1.8rem;
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.cs-card:hover { transform: translateY(-8px); box-shadow: 0 1.5rem 3rem rgba(15,23,42,.12); border-color: #99f6e4; }
.cs-card { position: relative; }
.cs-card .cs-arrow {
    position: absolute;
    top: 1.4rem; right: 1.4rem;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .85rem;
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: all .35s ease;
}
.cs-card:hover .cs-arrow { opacity: 1; transform: translate(0, 0); background: var(--primary); color: #fff; }
.cs-cat {
    font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--primary); font-weight: 700; margin-bottom: .7rem;
}
.cs-title { font-size: 1.15rem; font-weight: 700; color: var(--heading); line-height: 1.35; margin-bottom: .7rem; }
.cs-desc { font-size: .85rem; color: var(--body); line-height: 1.65; margin-bottom: 1.2rem; }
.cs-metrics { display: flex; gap: 2rem; }
.cs-mv {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1.1;
}
.cs-ml { font-size: .72rem; color: var(--body); margin-top: 3px; }
.cs-mv-lg { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.cs-mv-sm { font-size: 1.2rem; }
.cs-title-sm { font-size: 1rem; }

/* ---------- FAQ accordion ---------- */
.faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--heading);
    background: #fff;
    box-shadow: none;
    padding: 1.1rem 1.3rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}
.faq-accordion .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }

/* ---------- Team cards ---------- */
.team-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: transform .4s ease, box-shadow .4s ease;
    height: 100%;
}
.team-card:hover { transform: translateY(-10px); box-shadow: 0 1.5rem 3rem rgba(15,23,42,.12); }
.team-photo {
    width: 150px; height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 2rem auto 1rem;
    border: 5px solid var(--primary-light);
    transition: border-color .4s ease;
    display: block;
}
.team-card:hover .team-photo { border-color: var(--primary); }
.team-socials { padding-bottom: 1.6rem; }
.team-socials a {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    margin: 0 3px;
    font-size: .85rem;
}
.team-socials a:hover { background: var(--primary); color: #fff; transform: translateY(-4px); }

/* ---------- Custom build block ---------- */
.cb-wrap {
    background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius);
    padding: 2.8rem; box-shadow: 0 .8rem 2rem rgba(15,23,42,.05);
}
.cb-item {
    display: flex; align-items: center; gap: 12px; padding: 15px;
    background: #f0fdfa; border: 1px solid #e2e8f0; border-radius: 10px;
    margin-bottom: .7rem;
}
.cb-t { font-size: .88rem; font-weight: 700; color: var(--heading); margin-bottom: 2px; }
.cb-d { font-size: .78rem; color: var(--body); }

/* ---------- Newsletter / CTA band ---------- */
.newsletter-section {
    background: linear-gradient(135deg, var(--dark) 0%, #134e4a 100%);
    padding: 5rem 0;
}
.newsletter-img { max-height: 280px; width: 100%; object-fit: cover; }
.newsletter-form {
    display: flex; align-items: center; gap: .6rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50rem;
    padding: .45rem .45rem .45rem 1.4rem;
    max-width: 480px;
}
.newsletter-form .form-control {
    background: transparent; border: 0; color: #fff; box-shadow: none;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form .btn { width: 46px; height: 46px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }

/* ---------- Footer ---------- */
.main-footer { background: var(--dark); }
.footer-link { display: block; color: rgba(255,255,255,.55); margin-bottom: .65rem; }
.footer-link:hover { color: #fff; padding-left: 6px; }
.footer-contact { color: rgba(255,255,255,.55); display: flex; gap: .6rem; align-items: center; }
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: #fff; }
.footer-contact i { color: var(--primary); }
.footer-socials a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    margin-right: 6px;
}
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }

/* ---------- Page header ---------- */
.page-header {
    background: linear-gradient(135deg, #0F172A 0%, #134e4a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-header h1 { color: #fff; font-weight: 800; }
.page-header p { color: rgba(255,255,255,.8); max-width: 600px; margin: .8rem auto 0; }
.page-header .breadcrumb { justify-content: center; margin: 0; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,.75); }
.page-header .breadcrumb-item.active { color: #fff; }

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    right: 1.4rem; bottom: 1.4rem;
    width: 44px; height: 44px;
    background: var(--primary); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all .4s ease;
    z-index: 99;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--dark); color: #fff; }

/* ---------- Contact ---------- */
.contact-info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 1.8rem;
    text-align: center;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}
.contact-info-card:hover { transform: translateY(-8px); box-shadow: 0 1rem 2.5rem rgba(15,23,42,.1); }
.contact-info-card .ce {
    width: 60px; height: 60px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(20,184,170,.12);
}
.why-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1rem; }
.why-ico {
    width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
    background: var(--primary-light);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.why-t { font-size: .95rem; font-weight: 700; color: var(--heading); margin-bottom: 2px; }
.why-d { font-size: .85rem; color: var(--body); }

/* ---------- Misc ---------- */
.bg-light-blue { background: #f0fdfa; }
.content-prose p { margin-bottom: 1.1rem; line-height: 1.85; }
.content-prose { word-break: break-word; overflow-wrap: break-word; }
.side-link {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 16px; margin-bottom: 8px;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
    color: var(--heading); font-size: .9rem; font-weight: 600;
}
.side-link:hover { border-color: var(--primary); color: var(--primary); }

/* AOS overflow fix — prevents horizontal scroll caused by fade-left/fade-right
   initial translate states before they animate into position */
section, .section-padding, .hero-section, .why-section,
.newsletter-section, .integrations-sec, .services-sec {
    overflow-x: hidden;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

/* ---- 992–1199px (small laptops / large tablets) ---- */
@media (max-width: 1199px) {
    .orbit-wrap { width: min(400px, 100%); }
    .glass-chip.gc-1 { left: 5px; }
    .glass-chip.gc-2 { right: 5px; }
}

/* ---- ≤ 991px  (Bootstrap lg breakpoint — tablets & below) ---- */
@media (max-width: 991px) {
    /* Navbar collapsed state */
    .navbar-collapse {
        border-top: 1px solid #e2e8f0;
        padding: 1rem 0 .5rem;
        margin-top: .5rem;
    }
    .navbar-collapse .nav-link {
        margin: 0 !important;
        padding: .7rem 0 !important;
        border-bottom: 1px solid #f0fdfa;
    }
    .navbar-collapse .nav-link::after { display: none; }
    .navbar-collapse .nav-item:last-child > .nav-link { border-bottom: 0; }
    .navbar-collapse .dropdown-menu {
        border: 0;
        padding: 0 0 .25rem 1rem;
        box-shadow: none;
        background: transparent;
    }
    .navbar-collapse .dropdown-item { padding: .5rem .75rem; font-size: .9rem; }
    .navbar-collapse .ms-lg-3 { margin: .85rem 0 0 !important; }
    .navbar-collapse .btn-nav { display: block; text-align: center; width: 100%; }

    /* Hero */
    .hero-section { min-height: auto; padding: 5rem 0 3rem; display: block; }
    .hero-dashboard { animation: none; }
    .dash-bottom-row { grid-template-columns: 1fr; }
    .dash-score-box { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }

    /* General layout */
    .section-padding { padding: 4rem 0; }

    /* About */
    .about-badge { left: 0; }
    .about-img-wrap::after { display: none; }

    /* Why-choose */
    .why-img .orbit-ring { display: none; }
    .why-img img { max-height: 360px; width: 100%; object-fit: cover; }

    /* Project detail metrics */
    .cs-metrics { flex-wrap: wrap; }

    /* Steps and content grids */
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .igrid { grid-template-columns: 1fr 1fr; }
    .tgrid { grid-template-columns: repeat(4, 1fr); }

    /* Newsletter */
    .newsletter-section { padding: 3.5rem 0; }

    /* Custom-build block */
    .cb-wrap { padding: 2rem; }

    /* Orbit visual */
    .orbit-wrap { margin-top: 2rem; }
}

/* ---- ≤ 767px  (Bootstrap md breakpoint — large phones / landscape) ---- */
@media (max-width: 767px) {
    .section-padding { padding: 3.5rem 0; }
    .page-header { padding: 3rem 0; }

    /* Hero */
    .hero-stats { gap: 1.2rem; }
    .dash-metrics { grid-template-columns: repeat(3,1fr); }
    .dm-value { font-size: 1.1rem; }
    .dm-trend { display: none; }

    /* About badge — centered below image on single-column layout */
    .about-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        min-width: 210px;
        justify-content: center;
    }
    .about-img-wrap { padding-bottom: 50px; overflow: visible; }

    /* Why image */
    .why-img img { max-height: 300px; }

    /* Content grids */
    .tgrid { grid-template-columns: repeat(3, 1fr); }

    /* Counter boxes */
    .counter-box { padding: 1rem; }
    .counter-box .num { font-size: 1.4rem; }

    /* Case-study metrics */
    .cs-metrics { gap: 1rem; }

    /* Orbit */
    .orbit-wrap { width: min(340px, 88%); }

    /* Custom-build block */
    .cb-wrap { padding: 1.8rem; }

    /* Newsletter form */
    .newsletter-form { max-width: 100%; }

    /* Contact info cards */
    .contact-info-card { padding: 1.4rem; }

    /* Service detail sidebar padding */
    .bg-light-blue.rounded-4 { padding: 1.4rem !important; }
}

/* ---- ≤ 575px  (Bootstrap sm breakpoint — small portrait phones) ---- */
@media (max-width: 575px) {
    .section-padding { padding: 3rem 0; }
    .page-header { padding: 2.5rem 0; }
    .page-header h1 { font-size: clamp(1.4rem, 6vw, 1.9rem); }

    /* Navbar brand */
    .brand-text { font-size: 1.25rem; }

    /* Hero */
    .hero-stats { gap: 1rem; flex-wrap: wrap; }
    .hero-stats .sn { font-size: 1.45rem; }
    .scroll-hint { display: none; }
    .btn-hero-light,
    .btn-hero-outline { padding: .65rem 1.4rem; font-size: .9rem; }
    .hero-dashboard { border-radius: 12px; }
    .dash-activity { display: none; }
    .dash-bottom-row { grid-template-columns: 1fr; }
    .dash-score-box { border-right: 0; }

    /* Steps — single column */
    .steps { grid-template-columns: 1fr; gap: 40px; padding: 0 1rem; }
    .step { padding: 0 1rem 1rem; }
    .step-d { word-break: break-word; }

    /* Content grids */
    .igrid { grid-template-columns: 1fr; }
    .tgrid { grid-template-columns: repeat(2, 1fr); }

    /* Why image */
    .why-img img { max-height: 240px; }

    /* Counter boxes */
    .counter-box { padding: .9rem 1rem; gap: .7rem; }
    .counter-box .num { font-size: 1.2rem; }
    .counter-box .cicon { font-size: 1.5rem; }

    /* Case-study metrics — override inline font-size on project detail page */
    .cs-metrics { gap: .8rem; flex-wrap: wrap; }
    .cs-mv { font-size: 1.3rem !important; }

    /* Filter buttons — wrap tightly */
    .frow { gap: 6px; }
    .fbtn { padding: 6px 14px; }

    /* Newsletter form — stack vertically */
    .newsletter-form {
        flex-direction: column;
        border-radius: 1rem;
        padding: .8rem;
        align-items: stretch;
        gap: .5rem;
    }
    .newsletter-form .form-control {
        padding: .5rem .75rem;
        text-align: center;
    }
    .newsletter-form .btn {
        width: 100% !important;
        border-radius: .5rem !important;
        height: 46px;
    }

    /* Custom-build block */
    .cb-wrap { padding: 1.4rem; }

    /* Integrations orbit */
    .orbit-wrap { width: min(260px, 88%); }

    /* Contact page */
    .contact-info-card { padding: 1.2rem; }
    .why-row { gap: 10px; }

    /* Back-to-top */
    .back-to-top { right: 1rem; bottom: 1rem; width: 40px; height: 40px; }

    /* Footer */
    .footer-bottom .container { flex-direction: column; gap: .3rem; text-align: center; }
    .footer-contact { font-size: .88rem; }
}

/* ---- ≤ 400px  (very small phones e.g. iPhone SE) ---- */
@media (max-width: 400px) {
    .tgrid { grid-template-columns: 1fr; }
    .hero-stats { gap: .8rem; }
    .hero-stats .sn { font-size: 1.3rem; }
    .dash-chart-wrap { display: none; }
    .dash-metrics { grid-template-columns: 1fr 1fr; }
    .dash-metric:last-child { display: none; }
    .orbit-wrap { width: min(220px, 88%); }
    .btn-hero-light,
    .btn-hero-outline { display: block; width: 100%; text-align: center; }
}

/* ---- AOS zoom override — library default ends at scale(1.23), reset to 1 ---- */
[data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1.22);
}

/* ---- Reduced-motion accessibility ---- */
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .hero-section { animation: none; }
    .hero-dashboard,
    .why-img img,
    .floating-circle,
    .orbit-ring,
    .orbit-ring-a,
    .orbit-ring-b,
    .orbit-node,
    .about-badge { animation: none; }
}

/* ---------- Features (4 cards) ---------- */
.feat-card {
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    height: 100%;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0F172A, #14B8AA, #38bdf8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.feat-card::after {
    content: '';
    position: absolute;
    width: 140px; height: 140px;
    right: -50px; top: -50px;
    background: radial-gradient(circle, rgba(20,184,170,.16), transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}
.feat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 2rem 3.5rem rgba(15,23,42,.14);
    border-color: #99f6e4;
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-card:hover::after { opacity: 1; }
.feat-ico {
    position: relative;
    z-index: 1;
    width: 56px; height: 56px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0F172A, #14B8AA);
    color: #fff;
    box-shadow: 0 .6rem 1.4rem rgba(15,23,42,.28);
    font-size: 1.5rem; font-weight: 700; margin-bottom: 1.2rem;
    transition: transform .35s ease;
}
.feat-card:hover .feat-ico { transform: rotate(-8deg) scale(1.08); }
[class*="col"]:nth-of-type(6n+2) .feat-ico { background: linear-gradient(135deg, #0891b2, #38bdf8); box-shadow: 0 .6rem 1.4rem rgba(6,182,218,.28); }
[class*="col"]:nth-of-type(6n+3) .feat-ico { background: linear-gradient(135deg, #ea580c, #fbbf24); box-shadow: 0 .6rem 1.4rem rgba(234,88,12,.28); }
[class*="col"]:nth-of-type(6n+4) .feat-ico { background: linear-gradient(135deg, #db2777, #f472b6); box-shadow: 0 .6rem 1.4rem rgba(219,39,119,.28); }
[class*="col"]:nth-of-type(6n+5) .feat-ico { background: linear-gradient(135deg, #059669, #4ade80); box-shadow: 0 .6rem 1.4rem rgba(5,150,105,.28); }
[class*="col"]:nth-of-type(6n+6) .feat-ico { background: linear-gradient(135deg, #7c3aed, #a78bfa); box-shadow: 0 .6rem 1.4rem rgba(124,58,237,.28); }
.feat-title { position: relative; z-index: 1; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.08rem; font-weight: 800; letter-spacing: -.2px; color: var(--heading); margin-bottom: .6rem; }
.feat-desc { position: relative; z-index: 1; font-size: .88rem; color: var(--body); line-height: 1.7; }

/* ---------- Process steps (ring) ---------- */
.steps-ring { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; }
.steps-ring .step { text-align: center; padding: 0 10px; }
.step-ring {
    width: 84px; height: 84px; border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    border: 1px solid #99f6e4;
    background: var(--primary-light);
}
.step-ring-ico { font-size: 1.6rem; }
.step-ring-n {
    position: absolute; top: -6px; right: -6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .7rem; font-weight: 800; color: #94a3b8;
}
.step-badge {
    font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--primary); margin-bottom: .5rem;
}
.process-sec .step-h { color: var(--heading); }
.process-sec .step-d { color: var(--body); max-width: 320px; margin: 0 auto; }

/* ---------- Built for India / Healthcare proof cards ---------- */
.proof-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 2.4rem;
    box-shadow: 0 .8rem 2rem rgba(15,23,42,.05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.proof-card:hover { transform: translateY(-6px); box-shadow: 0 1.5rem 3rem rgba(15,23,42,.1); border-color: #99f6e4; }
.proof-ico {
    width: 52px; height: 52px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    font-size: 1.6rem; margin-bottom: 1rem;
}
.proof-title { font-size: 1.3rem; font-weight: 800; color: var(--heading); margin-bottom: .8rem; line-height: 1.35; }
.proof-card p { color: var(--body); }
.proof-tag {
    display: inline-block;
    padding: .4rem 1rem;
    border-radius: 50rem;
    border: 1px solid #e2e8f0;
    background: #f0fdfa;
    color: var(--primary-dark);
    font-size: .78rem; font-weight: 600; letter-spacing: .3px;
}

@media (max-width: 767.98px) {
    .steps-ring { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Service detail page ---------- */
.svc-head {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.svc-icon-lg {
    flex-shrink: 0;
    width: 76px; height: 76px;
    border-radius: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, #0F172A, #14B8AA);
    box-shadow: 0 .8rem 1.8rem rgba(15,23,42,.3);
    position: relative;
}
.svc-icon-lg::before, .svc-icon-lg::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 1px solid rgba(20,184,170,.5);
    animation: ringPulse 2.6s ease-out infinite;
}
.svc-icon-lg::after { animation-delay: 1.3s; }
.content-prose h3 { color: var(--heading); font-weight: 800; }

.svc-cta-band {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    padding: 2.2rem 2.4rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #0F172A 0%, #0c2330 100%);
    color: rgba(255,255,255,.9);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.svc-cta-band h4 { color: #fff; }
.svc-cta-band p { color: rgba(255,255,255,.75); margin: 0; }
.svc-cta-inner { display: flex; align-items: center; gap: 1.1rem; position: relative; z-index: 1; }
.svc-cta-band .btn-hero-light { position: relative; z-index: 1; flex-shrink: 0; }
.svc-cta-ico {
    flex-shrink: 0;
    width: 54px; height: 54px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.12);
    color: #5eead4;
    font-size: 1.3rem;
}

.svc-sidebar { position: sticky; top: 100px; }
.svc-side-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 1.6rem;
}
.svc-contact-row {
    display: flex; align-items: center; gap: .9rem;
    padding: .7rem 0;
    color: var(--heading);
    border-bottom: 1px dashed #e2e8f0;
    transition: transform .25s ease, color .25s ease;
}
.svc-contact-row:last-of-type { border-bottom: 0; }
.svc-contact-row:hover { transform: translateX(4px); color: var(--primary); }
.svc-contact-ico {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
}
.svc-contact-l { font-size: .72rem; color: var(--body); text-transform: uppercase; letter-spacing: .4px; }
.svc-contact-v { font-size: .92rem; font-weight: 700; }
.svc-side-ico {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    font-size: .8rem;
}
.side-link .arr { transition: transform .25s ease; }
.side-link:hover .arr { transform: translateX(4px); }

@media (max-width: 991.98px) {
    .svc-sidebar { position: static; margin-top: 3rem; }
}
@media (max-width: 575.98px) {
    .svc-head { flex-direction: column; }
    .svc-cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
}
