.first-fold {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* ── TOKENS ── */
:root {
    --bg: #000;
    --surface: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --border-hi: rgba(255, 255, 255, 0.14);
    --text: #FFFFFF;
    --text-2: rgba(255, 255, 255, 0.50);
    --text-3: rgba(255, 255, 255, 0.28);
    --accent: #7C6FFF;
    --accent-2: #ffb916;
    --accent-bg: rgba(124, 111, 255, 0.12);
}

/* 
  html,
  body {
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  } */

/* ── NOISE ── */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ── GLOW ORBS ── */
/* UNUSED: .orb-wrap, .orb, .orb-1, .orb-2, .orb-3 — HTML is commented out in homedemo.php
.orb-wrap {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.orb-1 {
    width: 700px;
    height: 500px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(124, 111, 255, 0.18) 0%, transparent 70%);
}

.orb-2 {
    width: 400px;
    height: 400px;
    top: 30%;
    right: -80px;
    background: radial-gradient(ellipse, rgba(167, 139, 250, 0.10) 0%, transparent 70%);
}

.orb-3 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -60px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.09) 0%, transparent 70%);
}
*/

/* ══════════════════════════════
     HERO
  ══════════════════════════════ */
.hero {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(72px, 8vh, 100px) clamp(18px, 3.5vw, 60px) 0;
    text-align: center;
    color: var(--text);
}

.first-fold {
    position: relative;
    z-index: 10;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0 !important;
}

.first-fold .hero {
    flex: 1;
    justify-content: center;
    padding-top: clamp(52px, 6.5vh, 86px);
    padding-bottom: 0;
    margin-bottom: 0;
}

.first-fold .social-proof {
    margin-bottom: 0;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border-hi);
    border-radius: 100px;
    padding: 7px 16px 7px 8px;
    margin-bottom: clamp(16px, 2.8vh, 44px);
    cursor: default;
}

.badge-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-bg);
    border: 1px solid rgba(124, 111, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-dot-inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

.badge-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: var(--text-2);
}

.badge-text b {
    color: #fff;
    font-weight: 600;
}

/* Top row — badge + a condensed rating chip, seen in the first couple seconds */
.hero-top-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: clamp(16px, 2.8vh, 44px);
}

.hero-top-row .badge {
    margin-bottom: 0;
}

.hero-rating-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--border-hi);
    border-radius: 100px;
    padding: 7px 14px;
    cursor: default;
    margin-bottom: clamp(16px, 2.8vh, 44px);
}

/* Headline */
.headline {
    font-size: clamp(48px, 5vw, 88px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -3.5px;
    max-width: 900px;
    margin-bottom: clamp(12px, 2vh, 28px);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hl-1 {
    display: block;
    color: #fff;
}

.hl-2 {
    display: block;
    color: #ffcc54;
}

@keyframes shimmer {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

/* Subheadline */
.subhead {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-2);
    max-width: 520px;
    margin-bottom: clamp(18px, 2.8vh, 44px);
    letter-spacing: -0.1px;
}

.subhead strong {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

/* CTA buttons */
.cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(20px, 4vh, 72px);
}

.btn-primary-dark {
    background: #000;
    color: #fff;
    -webkit-text-fill-color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity .2s, transform .15s;
    letter-spacing: -0.2px;
    text-decoration: none;
}

.btn-primary-dark:hover {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity .2s, transform .15s;
    letter-spacing: -0.2px;
}

.btn-primary:hover,
.btn-primary-dark:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn-primary svg,
.btn-primary-dark svg {
    transition: transform .2s;
}

.btn-primary:hover svg,
.btn-primary-dark:hover svg {
    transform: translateX(3px);
}

.btn-outline {

    background: #ffb916;
    color: #000;
    border: 1px solid #ffb916;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .18s, border-color .18s, background .18s, box-shadow .18s;
    letter-spacing: -0.2px;
}

.btn-outline:hover {
    background: #ffb916;
    border-color: #ffb916;
    color: #000;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

/* Hero CTA — single dominant action + a demoted text link */
.hero-cta-primary {
    background: linear-gradient(120deg, #AA2121 0%, #D64545 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.2px;
    box-shadow: 0 6px 20px rgba(170, 33, 33, 0.28);
    transition: transform .18s, box-shadow .18s;
}

.hero-cta-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(170, 33, 33, 0.45);
}

.hero-cta-primary svg {
    transition: transform .2s;
}

.hero-cta-primary:hover svg {
    transform: translateX(3px);
}

.hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    text-decoration: none;
    padding: 8px 4px;
    transition: color .18s;
}

.hero-text-link:hover {
    color: var(--text);
}

/* Social proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: clamp(16px, 3.2vh, 80px);
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}

.avatar:first-child {
    margin-left: 0;
}

.av-1 {
    background: linear-gradient(135deg, #7C6FFF, #A78BFA);
}

.av-2 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.av-3 {
    background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}

.av-4 {
    background: linear-gradient(135deg, #a78bfa, #ddd6fe);
}

.sp-text {
    font-size: 13px;
    color: var(--text-2);
    font-weight: 400;
}

.sp-text b {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.sp-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

.stars-row {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 13px;
    height: 13px;
    fill: #F59E0B;
}

.rating {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-left: 5px;
}

.rating-sub {
    font-size: 12px;
    color: var(--text-3);
    margin-left: 6px;
}

/* Hero entrance — staggered fade/slide-up on load */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-top-row,
.hero .headline,
.hero .subhead,
.hero .cta-row,
.hero .hero-rating-chip,
.hero .social-proof {
    animation: heroFadeUp .7s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-top-row {
    animation-delay: 0ms;
}

.hero .headline {
    animation-delay: 80ms;
}

.hero .subhead {
    animation-delay: 160ms;
}

.hero .cta-row {
    animation-delay: 240ms;
}

.hero .hero-rating-chip {
    animation-delay: 300ms;
}

.hero .social-proof {
    animation-delay: 320ms;
}

@media (prefers-reduced-motion: reduce) {

    .hero-top-row,
    .hero .headline,
    .hero .subhead,
    .hero .cta-row,
    .hero .hero-rating-chip,
    .hero .social-proof {
        animation: none;
    }
}

/* ══════════════════════════════
     MARQUEE
  ══════════════════════════════ */
.marquee-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: clamp(10px, 1.8vh, 20px) 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
}

.mq-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}


.mq-fade-l {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent);
}

.mq-fade-r {
    right: 0;
    background: linear-gradient(-90deg, #fff, transparent);
}

.mq-track {
    display: flex;
    width: max-content;
    animation: marquee 80s linear infinite;
}

.mq-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.mq-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
}

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

.mq-item.logo-item {
    padding: 0 24px;
}

.mq-logo-wrap {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mq-logo {
    display: block;
    height: 60px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: grayscale(0.08) saturate(1.05);
}

.mq-icon {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mq-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--accent-2);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mq-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.1px;
}

@media (max-height: 900px) {
    .headline {
        font-size: clamp(42px, 4.7vw, 72px);
    }

    .subhead {
        max-width: 620px;
        font-size: 15px;
        line-height: 1.58;
    }

    .btn-primary,
    .btn-outline {
        min-height: 44px;
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .social-proof {
        gap: 18px;
    }

    .mq-item {
        padding: 0 24px;
    }
}

@media (max-height: 760px) {
    .hero {
        padding-top: 66px;
    }

    .headline {
        letter-spacing: -2.2px;
        margin-bottom: 10px;
    }

    .subhead {
        margin-bottom: 14px;
        max-width: 700px;
    }

    .cta-row {
        margin-bottom: 14px;
    }

    .social-proof {
        margin-bottom: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .marquee-wrap {
        padding: 8px 0;
    }

    .mq-fade {
        width: 76px;
    }
}

/* ══════════════════════════════
     HERO VIDEO BG
  ══════════════════════════════ */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    /* Darkest behind the centered text stack, lighter toward the edges —
       keeps copy readable while letting more of the video show through. */
    background: radial-gradient(ellipse 75% 68% at 50% 42%, rgba(6, 6, 10, 0.8) 0%, rgba(6, 6, 10, 0.6) 55%, rgba(6, 6, 10, 0.4) 100%);
}

/* ══════════════════════════════
     STATS BAR
  ══════════════════════════════ */
/* UNUSED: .stats-bar, .stat-cell, .stat-num, .stat-desc — not in homedemo.php
.stats-bar {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
}

.stat-cell {
    padding: 36px 40px;
    border-right: 1px solid var(--border);
    cursor: default;
    transition: background .2s;
}

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

.stat-cell:hover {
    background: rgba(255, 255, 255, 0.025);
}

.stat-num {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    color: var(--text);
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-num .accent {
    color: var(--accent-2);
}

.stat-desc {
    font-size: 13px;
    color: var(--text-2);
    font-weight: 400;
    line-height: 1.5;
    max-width: 160px;
}
*/

/* ══════════════════════════════
     SERVICES STRIP
  ══════════════════════════════ */
.services-strip {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: auto;
    border-top: 1px solid var(--border);
    /* Sits below the darkened center of the video overlay, so it needs its
       own contrast backing to stay legible against lighter footage. */
    background: rgba(6, 6, 10, 0.55);
}

.svc {
    padding: 24px 28px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background .2s;
}

.svc:last-child {
    border-right: none;
}

.svc:hover {
    background: rgba(255, 255, 255, 0.03);
}

.svc-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 9px;
    background: rgba(124, 111, 255, 0.10);
    border: 1px solid rgba(124, 111, 255, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background .2s, border-color .2s;
}

.svc:hover .svc-icon {
    background: rgba(124, 111, 255, 0.20);
    border-color: rgba(167, 139, 250, 0.40);
}

.svc-icon svg {
    width: 15px;
    height: 15px;
    stroke: var(--accent-2);
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 3px;
    letter-spacing: -0.1px;
    white-space: nowrap;
}

.svc-name-short {
    display: none;
}

.svc-tag {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-3);
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.svc-tag-short {
    display: none;
}

/* ══════════════════════════════
     SECTION TWO (WHITE BG)
  ══════════════════════════════ */
/* UNUSED: .section-two-proof and all descendant overrides — not in homedemo.php
.section-two-proof {
    position: relative;
    z-index: 10;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.section-two-proof .marquee-wrap {
    background: #ffffff;
    border-top: none;
    border-bottom: 1px solid #e5e7eb;
}

.section-two-proof .mq-fade-l {
    background: linear-gradient(90deg, #ffffff, transparent);
}

.section-two-proof .mq-fade-r {
    background: linear-gradient(-90deg, #ffffff, transparent);
}

.section-two-proof .mq-item {
    border-right: 1px solid #e5e7eb;
}

.section-two-proof .mq-icon {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.18);
}

.section-two-proof .mq-icon svg {
    stroke: #335ea8;
}

.section-two-proof .mq-name {
    color: #3f4b60;
}

.section-two-proof .stats-bar {
    border-bottom: none;
    background: #ffffff;
}

.section-two-proof .stat-cell {
    border-right: 1px solid #e5e7eb;
}

.section-two-proof .stat-cell:hover {
    background: #f8fafc;
}

.section-two-proof .stat-num {
    color: #111827;
}

.section-two-proof .stat-num .accent {
    color: #3361ad;
}

.section-two-proof .stat-desc {
    color: #5b6575;
}

@media (max-width: 992px) {
    .section-two-proof .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-two-proof .stat-cell:nth-child(2) {
        border-right: none;
    }

    .section-two-proof .stat-cell:nth-child(-n+2) {
        border-bottom: 1px solid #e5e7eb;
    }
}

@media (max-width: 575px) {
    .section-two-proof .stats-bar {
        grid-template-columns: 1fr;
    }

    .section-two-proof .stat-cell {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .section-two-proof .stat-cell:last-child {
        border-bottom: none;
    }
}
*/

@media (max-width: 1100px) {
    .services-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .svc:nth-child(3) {
        border-right: none;
    }

    .svc:nth-child(-n+3) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 700px) {
    /* Let the fold breathe instead of forcing everything (badge through
       services strip) to cram into exactly one screen height. */
    .first-fold {
        min-height: auto;
    }

    .first-fold .hero {
        justify-content: flex-start;
        padding-top: 92px;
        padding-bottom: 36px;
    }

    /* One card at a time, auto-scrolled via JS — see script after the
       .services-strip markup in homedemo.php. */
    .services-strip {
        display: flex;
        grid-template-columns: none;
        margin-top: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-strip::-webkit-scrollbar {
        display: none;
    }

    .svc {
        flex: 0 0 50%;
        scroll-snap-align: start;
        padding: 16px 14px 20px;
        border-right: none;
        border-bottom: none;
    }

    .svc:last-child {
        grid-column: unset;
    }

    .svc-name-full {
        display: none;
    }

    .svc-name-short {
        display: inline;
    }

    .svc-tag-full {
        display: none;
    }

    .svc-tag-short {
        display: inline;
    }
}

/* ══════════════════════════════
     TRUST / REVIEW STRIP — page-only override
     Everything here is scoped under #review-sec so it only
     affects this page; industry-common.css / style.css (shared
     by other templates) are left untouched.
  ══════════════════════════════ */
#review-sec {
    padding-bottom: clamp(48px, 6vw, 72px) !important;
}

#review-sec .custom-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #7a869a;
}

#review-sec .custom-heading::before,
#review-sec .custom-heading::after {
    border-bottom: 1px solid #dbe1ea !important;
}

#review-sec .sectionHeading {
    font-size: clamp(24px, 2.6vw, 32px);
    color: #0f172a;
    letter-spacing: -0.5px;
}

#review-sec .sectionSubDescription-loc {
    color: #5b667a;
    max-width: 620px;
}

#review-sec .sectionSubDescription-loc a {
    color: #AA2121;
    font-weight: 600;
    text-decoration: none;
}

/* Card treatment replaces the old thin-line dividers */
#review-sec .col-lg-2::after {
    display: none;
}

#review-sec .col-lg-2 {
    padding: 8px;
}

#review-sec .col-lg-2 .text-center {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 16px;
    padding: 20px 12px 16px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#review-sec .col-lg-2 .text-center:hover {
    transform: translateY(-4px);
    border-color: #f0d8d8;
    box-shadow: 0 14px 28px rgba(170, 33, 33, .1);
}

#review-sec .rating-icon-div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin-bottom: 4px;
}

#review-sec .star-rating {
    font-size: 15px;
    letter-spacing: 1px;
}

#review-sec .blueTxt {
    color: #0f172a;
    font-weight: 700;
}

@media (max-width: 767px) {
    #review-sec .col-lg-2 {
        padding: 6px;
    }

    #review-sec .col-lg-2 .text-center {
        padding: 14px 8px 12px;
    }
}

/* ══════════════════════════════
     ABOUT — LIGHT GRADIENT
  ══════════════════════════════ */
.about-sec {
    position: relative;
    z-index: 10;
    padding: clamp(48px, 7vw, 88px) 0;
    overflow: hidden;
}

.about-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(2, 53, 117, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 35% 40% at 10% 80%, rgba(2, 53, 117, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* ─── Col 1: Copy ─── */
.ab-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* UNUSED: .ab-eyebrow, .ab-eyebrow-dot, .ab-eyebrow-text — not in homedemo.php
.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 111, 255, 0.10);
    border: 1px solid rgba(124, 111, 255, 0.22);
    border-radius: 100px;
    padding: 5px 14px 5px 9px;
    margin-bottom: 22px;
    width: fit-content;
}

.ab-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(90deg, #A78BFA, #7C6FFF);
}

.ab-eyebrow-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: linear-gradient(90deg, #A78BFA 0%, #7C6FFF 40%, #A78BFA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
*/

.ab-headline {
    font-size: clamp(28px, 2.5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 16px;
}

.ab-headline em {
    font-style: normal;
    /* background: linear-gradient(90deg, #A78BFA 0%, #7C6FFF 40%, #A78BFA 100%); */
    background: linear-gradient(90deg, #023575 0%, #9e0101 40%, #023575 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

.ab-body {
    line-height: 1.78;
    margin-bottom: 24px;
}

.ab-body strong {
    color: #111827;
    font-weight: 600;
}

.ab-eyebrow-new {
    display: block;
    margin-bottom: 10px;
}

.ab-founded {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffb916;
    border: 1px solid #ffb916;
    border-radius: 7px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    background-size: 200% auto;
    margin-bottom: 15px;
    width: fit-content;
}

.ab-footer {
    flex-wrap: wrap;
}

/* UNUSED: .ab-btn — not in homedemo.php (page uses .btn-primary-dark and .ab-link instead)
.ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    background: #7C6FFF;
    border: none;
    border-radius: 10px;
    padding: 11px 22px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(124, 111, 255, 0.32);
    transition: background .2s, transform .15s, box-shadow .2s;
}

.ab-btn svg {
    flex-shrink: 0;
    transition: transform .2s;
}

.ab-btn:hover {
    background: #6B5FE8;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(124, 111, 255, 0.38);
}

.ab-btn:hover svg {
    transform: translateX(3px);
}
*/

.ab-link {
    background: linear-gradient(90deg, #023575 0%, #9e0101 40%, #023575 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color .18s;
}

.ab-link:hover {
    background: linear-gradient(90deg, #023575 0%, #000000 40%, #023575 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ─── Col 2: Stats grid (2×2) + fill image ─── */
.ab-stats-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.ab-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ab-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .22s;
}

.ab-stat-card:hover {
    border-color: rgba(15, 23, 42, 0.22);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}

/* Top accent bar */
.ab-stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, #0f172a 0%, #475569 100%);
    opacity: 0;
    transition: opacity .22s;
}

.ab-stat-card:hover::before {
    opacity: 1;
}

/* Subtle bg glow per card */
.ab-stat-card::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(rgba(15, 23, 42, 0.05), transparent 70%);
    pointer-events: none;
}

.ab-num {
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 900;
    line-height: 1;
    color: #0f172a;
    display: flex;
    align-items: baseline;
    gap: 1px;
    font-variant-numeric: tabular-nums;
    margin-bottom: 8px;
}

.ab-sfx {
    font-size: 0.55em;
    letter-spacing: -1px;
    font-weight: 800;
    flex-shrink: 0;
}

.ab-label {
    letter-spacing: -0.2px;
    margin-bottom: 3px;
    font-size: 14px;
}

.ab-desc {
    line-height: 1.4;
    font-size: 12.5px;
}

/* Decorative growth sparkline, bottom-right of each card */
.ab-spark {
    position: absolute;
    right: 14px;
    bottom: 12px;
    width: 46px;
    height: 18px;
    color: #0f172a;
    opacity: 0.16;
    transition: opacity .22s;
}

.ab-stat-card:hover .ab-spark {
    opacity: 0.32;
}

/* Fill image — matches the height of the photo column beside it */
.ab-stats-fill {
    flex: 1;
    min-height: 90px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.ab-stats-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 480px) {
    .ab-stat-card {
        padding: 14px;
    }

    .ab-num {
        font-size: 22px;
    }
}

/* ─── Col 3: Vertical image ─── */
.ab-img-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    background: linear-gradient(165deg, #e8f0fb 0%, #c8d8ee 50%, #93aed8 100%);
    border: 1px solid #b8cee8;
    box-shadow: 0 24px 44px -18px rgba(2, 53, 117, 0.35);
}

.ab-img-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Floating credential chip — echoes the stat cards beside it */
.ab-img-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
}

.ab-img-badge-num {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: #AA2121;
}

.ab-img-badge-label {
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.25;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Subtle bottom fade over image */
/* .ab-img-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(237, 233, 254, 0.6), transparent);
    pointer-events: none;
  } */

/* ─── Responsive ─── */
@media (max-width: 640px) {
    .ab-img-col {
        min-height: 240px;
    }

    .ab-img-badge {
        padding: 8px 11px;
        gap: 6px;
    }

    .ab-img-badge-num {
        font-size: 19px;
    }

    .ab-img-badge-label {
        font-size: 9.5px;
    }

}

/* ══════════════════════════════
     PORTFOLIO — dark auto-scroll marquee
  ══════════════════════════════ */
.pf-sec {
    position: relative;
    background: linear-gradient(160deg, #0d1530 0%, #141f45 45%, #0a1128 100%);
    padding: clamp(36px, 5vw, 56px) 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Pre-blurred via gradient falloff instead of filter:blur() — a blurred
   circle needs an expensive separate GPU blur pass on every paint; a
   soft-edged gradient of the same size is composited directly, which is
   what was causing this section to visibly "finish rendering" a beat
   late when it scrolled into view. */
.pf-sec::before,
.pf-sec::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.pf-sec::before {
    width: 780px;
    height: 780px;
    background: radial-gradient(circle, rgba(170, 33, 33, 0.16) 0%, rgba(170, 33, 33, 0.08) 35%, transparent 70%);
    top: -290px;
    right: -270px;
}

.pf-sec::after {
    width: 660px;
    height: 660px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.11) 0%, rgba(59, 130, 246, 0.05) 35%, transparent 70%);
    bottom: -260px;
    left: -240px;
}

.pf-sec .container,
.pf-sec .pf-marquee-wrap,
.pf-sec .pf-footer-cta {
    position: relative;
    z-index: 1;
}

.pf-head {
    margin-bottom: clamp(14px, 2vw, 20px);
}

.pf-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}

.pf-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.pf-title {
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.5px;
    margin: 0;
    flex: 1 1 380px;
}

.pf-sub {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    max-width: 380px;
    flex: 1 1 300px;
    padding-top: 4px;
}

.pf-head-rule {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-top: clamp(10px, 1.5vw, 16px);
}

.pf-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: clamp(10px, 1.5vw, 16px) 0 clamp(14px, 2vw, 20px);
}

.pf-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.pf-stat-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.pf-stat-val {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    color: #fff;
}

/* Auto-scrolling card track — continuous marquee loop (same pattern as the
   healthcare hub's case-studies section: tripled card list + transform
   animation looping through exactly one copy), but the wrap itself stays a
   real overflow-x:auto touch target so mobile can swipe through it, not
   just watch it — touching/scrolling pauses the auto-loop (see the script
   below) instead of fighting it. */
.pf-marquee-wrap {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pf-marquee-wrap::-webkit-scrollbar {
    display: none;
}

.pf-marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.pf-marquee-fade-l {
    left: 0;
    background: linear-gradient(90deg, #0a1128, transparent);
}

.pf-marquee-fade-r {
    right: 0;
    background: linear-gradient(-90deg, #0a1128, transparent);
}

.pf-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    padding: 4px clamp(20px, 5vw, 40px) 10px;
    animation: none;
}

.pf-marquee-wrap.is-active .pf-track {
    animation: pfMarquee 42s linear infinite;
}

.pf-marquee-wrap:hover .pf-track,
.pf-marquee-wrap.is-touching .pf-track {
    animation-play-state: paused;
}

@keyframes pfMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.3334%);
    }
}

.pf-mcard {
    position: relative;
    flex: 0 0 auto;
    width: 270px;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background: #111a35;
    scroll-snap-align: start;
}

.pf-mcard img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pf-mcard:hover img {
    transform: scale(1.07);
}

.pf-mcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 6, 18, .92) 0%, rgba(3, 6, 18, .15) 45%, rgba(3, 6, 18, .35) 100%);
}

.pf-mcard-top {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .2px;
    color: #fff;
}

.pf-mcard-bottom {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
}

.pf-mcard-stat {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.pf-mcard-quote {
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pf-mcard-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .22s ease, transform .22s ease;
}

.pf-mcard:hover .pf-mcard-link {
    opacity: 1;
    transform: none;
}

.pf-footer-cta {
    text-align: center;
    margin-top: clamp(32px, 5vw, 48px);
    padding: 0 clamp(20px, 5vw, 40px);
}

.pf-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0a1128;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.pf-view-all:hover {
    color: #fff;
    background: #AA2121;
    transform: translateY(-1px);
}

.pf-view-all svg {
    transition: transform .2s ease;
}

.pf-view-all:hover svg {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .pf-sub {
        padding-top: 0;
    }

    .pf-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
    }

    .pf-stat {
        padding-right: 16px;
    }

    .pf-stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .pf-stat:nth-child(even) {
        border-right: none;
        padding-right: 0;
    }

    .pf-mcard {
        width: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* !important: must beat .pf-marquee-wrap.is-active .pf-track's higher
       specificity, otherwise this accessibility override loses once the
       marquee has started. */
    .pf-track {
        animation: none !important;
    }
}

/* ══════════════════════════════
     INDUSTRIES — interactive hover-expand panels
  ══════════════════════════════ */
.ind-sec {
    background: #fff;
    padding: clamp(56px, 8vw, 56px) 0;
}

.ind-head {
    max-width: 640px;
    margin: 0 auto clamp(32px, 5vw, 48px);
    text-align: center;
}

.ind-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #AA2121;
    margin-bottom: 10px;
}

.ind-title {
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.ind-title em {
    font-style: normal;
    background: linear-gradient(90deg, #023575 0%, #9e0101 40%, #023575 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

.ind-sub {
    font-size: 15.5px;
    line-height: 1.6;
    color: #5b667a;
}

/* Editorial spotlight: pinned photo panel + hover/scroll-scrub row list.
   The panel's position/top/left/width are set entirely via inline styles
   from JS (document-coordinate scrollY vs. section offsetTop/offsetHeight
   math) — the same proven technique already working on the
   website-maintenance-services page's "Common Website Problems" section —
   rather than CSS position:sticky, which a site-wide
   body{overflow-x:hidden} rule breaks in this layout. */
.ind-spotlight {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
}

.ind-spotlight-visual {
    position: absolute;
    top: 100px;
    z-index: 5;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 20px 50px -18px rgba(15, 23, 42, .35);
}

.ind-spotlight-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .45s ease, transform .45s ease;
}

.ind-spotlight-visual.is-swapping img {
    opacity: .35;
    transform: scale(1.02);
}

.ind-spotlight-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 6, 12, .88) 0%, rgba(4, 6, 12, .05) 55%);
}

.ind-spotlight-content {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    z-index: 2;
}

.ind-spotlight-index {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #ffb916;
    margin-bottom: 10px;
}

.ind-spotlight-name {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.ind-spotlight-line {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    max-width: 380px;
}

.ind-spotlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 10px 16px;
    border-radius: 9px;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.ind-spotlight-cta:hover {
    color: #fff;
    background: #AA2121;
    border-color: #AA2121;
    transform: translateX(2px);
}

.ind-spotlight-rows {
    position: relative;
    width: 54%;
    display: flex;
    flex-direction: column;
}

.ind-row {
    position: relative;
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #e9edf5;
    padding: 22px 20px 25px;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    border-radius: 10px;
}

.ind-row-loader {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 2px;
    background: rgba(15, 23, 42, .08);
    border-radius: 2px;
    overflow: hidden;
}

.ind-row-loader-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: #AA2121;
    border-radius: 2px;
    transition: width .12s linear;
}

.ind-row.is-active .ind-row-loader-fill {
    background: #0e2f66;
}

.ind-row:first-child {
    border-top: 1px solid #e9edf5;
}

.ind-row-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0;
    transition: opacity .35s ease;
}

.ind-row.is-active .ind-row-bg {
    opacity: .16;
}

.ind-row::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background .35s ease;
}

.ind-row.is-active::after {
    background: rgba(255, 255, 255, .74);
}

.ind-row-content {
    position: relative;
    z-index: 1;
    display: block;
}

.ind-row-name {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #384153;
    letter-spacing: -0.2px;
    margin-bottom: 4px;
    transition: color .25s ease;
}

.ind-row-line {
    display: block;
    font-size: 13.5px;
    line-height: 1.5;
    color: #7a869c;
    max-width: 440px;
    margin-top: 4px;
}

.ind-row:hover .ind-row-name {
    color: #AA2121;
}

.ind-row.is-active .ind-row-name {
    color: #0e2f66;
}

@media (max-width: 899.98px) {
    .ind-spotlight-visual {
        position: static;
        width: 100%;
        height: 320px;
        margin-bottom: 24px;
    }

    .ind-spotlight-rows {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ind-spotlight-visual {
        height: 260px;
    }

    .ind-spotlight-name {
        font-size: 24px;
    }

    .ind-row {
        padding: 16px 12px;
    }

    .ind-row-name {
        font-size: 15px;
    }
}

/* ══════════════════════════════
     INDUSTRIES v2 — contained card, internal scroll list + static visual.
     No viewport-scroll position tracking at all: the list scrolls WITHIN
     its own fixed-height box (internal overflow-y), and the visual panel
     is a normal, statically-positioned sibling — nothing needs to switch
     between position:absolute/fixed on window scroll, which is what made
     the previous version fragile.
  ══════════════════════════════ */
.ind-card {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 24px;
    box-shadow: 0 24px 60px -24px rgba(15, 23, 42, .18);
    overflow: hidden;
}

.ind-card-list {
    flex: 0 0 42%;
    max-height: 560px;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #d7dbe3 transparent;
}

.ind-card-list::-webkit-scrollbar {
    width: 6px;
}

.ind-card-list::-webkit-scrollbar-thumb {
    background: #d7dbe3;
    border-radius: 6px;
}

.ind-card-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #eef1f6;
    padding: 16px 22px;
    cursor: pointer;
    text-align: left;
    transition: background .2s ease;
}

.ind-card-item:hover {
    background: #f7f9fc;
}

.ind-card-item.is-active {
    background: #f5f7fc;
}

.ind-card-item-icon {
    flex-shrink: 0;
    color: #9aa5b8;
    transition: color .2s ease;
}

.ind-card-item.is-active .ind-card-item-icon {
    color: #AA2121;
}

.ind-card-item-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ind-card-item-name {
    font-size: 15.5px;
    font-weight: 700;
    color: #384153;
    letter-spacing: -0.2px;
    transition: color .2s ease;
}

.ind-card-item.is-active .ind-card-item-name {
    color: #0e2f66;
}

.ind-card-item-line {
    font-size: 12.5px;
    line-height: 1.45;
    color: #8792a3;
    margin-top: 2px;
}

.ind-card-item-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: transparent;
}

.ind-card-item-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: #AA2121;
}

.ind-card-visual {
    position: relative;
    flex: 1;
    min-height: 560px;
    background: #111827;
    overflow: hidden;
}

.ind-card-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease, transform .4s ease;
}

.ind-card-visual.is-swapping img {
    opacity: .3;
    transform: scale(1.02);
}

.ind-card-visual-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 4, 9, .96) 0%, rgba(2, 4, 9, .78) 40%, rgba(2, 4, 9, .25) 75%, rgba(2, 4, 9, .05) 100%);
}

.ind-card-visual-content {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 32px;
    z-index: 2;
    transition: opacity .3s ease;
}

.ind-card-visual.is-swapping .ind-card-visual-content {
    opacity: 0;
}

.ind-card-visual-name {
    display: block;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.ind-card-visual-stat {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(4, 6, 12, .78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 13px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.ind-card-visual-stat svg {
    flex-shrink: 0;
    color: #ffb916;
}

.ind-card-visual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    max-width: 420px;
}

.ind-card-visual-tag {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 4px 11px;
    border-radius: 100px;
}

.ind-card-visual-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 16px;
    margin: 0 0 16px;
    padding: 0;
    max-width: 420px;
}

.ind-card-visual-points li {
    position: relative;
    list-style: none;
    font-size: 12.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
    padding-left: 17px;
}

.ind-card-visual-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 11px;
    height: 11px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23ffb916' fill-opacity='0.22'/%3E%3Cpath d='M7 12.3l3 3 7-7' stroke='%23ffb916' stroke-width='2.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 11px 11px;
    background-repeat: no-repeat;
}

.ind-card-visual-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    transition: color .18s ease, text-decoration-color .18s ease, transform .18s ease;
}

.ind-card-visual-cta:hover {
    color: #ffb916;
    text-decoration-color: currentColor;
    transform: translateX(2px);
}

@media (max-width: 899.98px) {
    .ind-card {
        flex-direction: column;
        border-radius: 18px;
    }

    .ind-card-visual {
        min-height: 460px;
        order: -1;
    }

    .ind-card-list {
        max-height: 420px;
        flex: none;
    }
}

@media (max-width: 480px) {
    .ind-card-visual {
        min-height: 420px;
    }

    .ind-card-visual-name {
        font-size: 22px;
    }

    .ind-card-item {
        padding: 13px 16px;
    }

    .ind-card-item-name {
        font-size: 14px;
    }
}

/* ══════════════════════════════
     FREE AUDIT STRIP
  ══════════════════════════════ */
.aus-sec {
    position: relative;
    overflow: hidden;
    background-color: #12071a;
    background-image:
        linear-gradient(rgba(4, 3, 8, .82), rgba(4, 3, 8, .86)),
        url('https://static.janbaskdigitaldesign.com/1784721625_engineer-data-center-managing-optimizing-large-scale-it-infrastructure-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 40px);
}

/* Gradient falloff instead of filter:blur() — see .pf-sec note above */
.aus-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.aus-glow-1 {
    width: 740px;
    height: 740px;
    background: radial-gradient(circle, rgba(170, 33, 33, 0.24) 0%, rgba(170, 33, 33, 0.1) 35%, transparent 70%);
    top: -310px;
    left: -240px;
}

.aus-glow-2 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(255, 185, 22, 0.11) 0%, rgba(255, 185, 22, 0.04) 35%, transparent 70%);
    bottom: -280px;
    right: -220px;
}

.aus-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.aus-eyebrow.jdd-eyebrow-inverse {
    margin-bottom: 8px;
}

.aus-title.jdd-h2 {
    font-size: clamp(22px, 2.9vw, 28px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .aus-title {
        white-space: nowrap;
    }
}

.aus-sub.jdd-sub-inverse {
    margin-bottom: 18px;
}

.aus-form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto 14px;
}

.aus-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 0 16px;
    height: 46px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.aus-field:focus-within {
    border-color: #ffb916;
    box-shadow: 0 0 0 3px rgba(255, 185, 22, 0.16);
}

.aus-field svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

.aus-field input {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14.5px;
    font-weight: 500;
}

.aus-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.aus-submit {
    flex-shrink: 0;
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, #AA2121 0%, #D64545 100%);
    color: #fff;
    border: none;
    padding: 0 24px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(170, 33, 33, 0.3);
    transition: transform .18s ease, box-shadow .18s ease;
}

.aus-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(170, 33, 33, 0.42);
}

.aus-submit svg {
    transition: transform .2s ease;
}

.aus-submit:hover svg {
    transform: translateX(3px);
}

.aus-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aus-trust li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.aus-trust svg {
    flex-shrink: 0;
    color: #ffb916;
}

@media (max-width: 560px) {
    .aus-form {
        flex-direction: column;
    }

    .aus-field {
        flex: none;
        width: 100%;
    }

    .aus-submit {
        width: 100%;
        justify-content: center;
    }
}

.svc-sec {
    background: #06060A;
    padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 80px);
    position: relative;
    overflow: hidden;
}

.svc-sec::before,
.svc-sec::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.svc-sec::before {
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(124, 111, 255, 0.13) 0%, transparent 70%);
    top: -180px;
    right: -200px;
}

.svc-sec::after {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.10) 0%, transparent 70%);
    bottom: -140px;
    left: -140px;
}

.svc-inner {
    max-width: 1380px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Header ── */
.svc-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: clamp(40px, 5vw, 64px);
    padding-bottom: clamp(32px, 4vw, 48px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.svc-top-left {
    flex: 1;
    max-width: 680px;
}

.svc-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.svc-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A78BFA, #7C6FFF);
    flex-shrink: 0;
}

.svc-eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #A78BFA 0%, #7C6FFF 40%, #A78BFA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.svc-headline {
    font-size: clamp(34px, 3.6vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #fff;
    margin: 0;
}

.svc-headline em {
    font-style: normal;
    background: linear-gradient(90deg, #A78BFA 0%, #7C6FFF 40%, #A78BFA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.svc-subhead {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    margin: 16px 0 0;
    max-width: 480px;
}

.svc-top-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
    -webkit-text-fill-color: initial;
}

.svc-top-cta:hover {
    background: rgba(124, 111, 255, 0.12);
    border-color: rgba(124, 111, 255, 0.4);
    color: #A78BFA;
    text-decoration: none;
}

.svc-top-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.svc-top-cta:hover svg {
    transform: translateX(3px);
}

/* ── Filter strip ── */
.svc-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: clamp(28px, 3.5vw, 44px);
    flex-wrap: wrap;
}

.svc-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s;
    white-space: nowrap;
    -webkit-text-fill-color: initial;
}

.svc-filter-count {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.22s;
}

.svc-filter-btn:hover {
    background: rgba(124, 111, 255, 0.10);
    border-color: rgba(124, 111, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.svc-filter-btn.active {
    background: linear-gradient(135deg, rgba(124, 111, 255, 0.22), rgba(167, 139, 250, 0.14));
    border-color: rgba(124, 111, 255, 0.5);
    color: #fff;
}

.svc-filter-btn.active .svc-filter-count {
    background: rgba(124, 111, 255, 0.3);
    color: #c4b5fd;
}

/* ── Cards grid ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
}

.svc-card {
    background: rgba(255, 255, 255, 0.026);
    padding: clamp(22px, 2.4vw, 32px);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.25s;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 111, 255, 0.08) 0%, rgba(167, 139, 250, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.25s;
}

.svc-card:hover {
    background: rgba(255, 255, 255, 0.048);
    text-decoration: none;
}

.svc-card:hover::before {
    opacity: 1;
}

/* large faded index */
.svc-card-idx {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    color: rgba(255, 255, 255, 0.032);
    pointer-events: none;
    user-select: none;
    font-variant-numeric: tabular-nums;
    transition: color 0.25s;
}

.svc-card:hover .svc-card-idx {
    color: rgba(124, 111, 255, 0.07);
}

/* icon badge */
.svc-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(124, 111, 255, 0.13);
    border: 1px solid rgba(124, 111, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s, border-color 0.25s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.svc-card:hover .svc-card-icon {
    background: rgba(124, 111, 255, 0.22);
    border-color: rgba(124, 111, 255, 0.4);
}

.svc-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: #A78BFA;
}

/* card content */
.svc-card-name {
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.2px;
    margin: 0 0 9px;
    position: relative;
    z-index: 1;
}

.svc-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.42);
    margin: 0 0 16px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.svc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 0 18px;
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.svc-card-tags li {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(167, 139, 250, 0.72);
    background: rgba(124, 111, 255, 0.09);
    border: 1px solid rgba(124, 111, 255, 0.17);
    border-radius: 100px;
    padding: 2px 9px;
}

.svc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.36);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
    -webkit-text-fill-color: initial;
    position: relative;
    z-index: 1;
}

.svc-card:hover .svc-card-link {
    color: #A78BFA;
    gap: 10px;
}

.svc-card-link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}

.svc-card:hover .svc-card-link svg {
    transform: translateX(3px);
}

/* hidden cards */
.svc-card.svc-hidden {
    display: none;
}

/* bottom CTA */
.svc-all-row {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(124, 111, 255, 0.18), rgba(167, 139, 250, 0.10));
    border: 1px solid rgba(124, 111, 255, 0.35);
    color: #c4b5fd;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s;
    -webkit-text-fill-color: initial;
}

.svc-all-link:hover {
    background: linear-gradient(135deg, rgba(124, 111, 255, 0.28), rgba(167, 139, 250, 0.18));
    border-color: rgba(124, 111, 255, 0.6);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.svc-all-link svg {
    width: 15px;
    height: 15px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .svc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .svc-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

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

    .svc-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .svc-filter::-webkit-scrollbar {
        display: none;
    }
}

.svc2-sec {
    padding: clamp(40px, 5vw, 60px) 0;
    position: relative;
    overflow: hidden;

}

.svc2-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% -10%, rgba(124, 111, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.svc2-inner {
    position: relative;
    z-index: 1;
}

/* ── Section header ── */
.svc2-head {
    margin-bottom: clamp(24px, 3vw, 36px);
}

.svc2-head-left {
    text-align: center;
}

.svc2-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(124, 111, 255, 0.3);
    border-radius: 100px;
    background: rgba(124, 111, 255, 0.09);
    margin-bottom: 18px;
}

.svc2-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A78BFA, #7C6FFF);
    animation: svc2pulse 2s ease-in-out infinite;
}

@keyframes svc2pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85)
    }
}

.svc2-pill-txt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #A78BFA 0%, #7C6FFF 40%, #A78BFA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.svc2-headline {
    font-size: clamp(34px, 3.8vw, 54px);
    font-weight: 800;
    line-height: 1.09;
    letter-spacing: -1.8px;
    color: #fff;
    margin: 0;
}

.svc2-headline em {
    font-style: normal;
    background: linear-gradient(90deg, #A78BFA 0%, #7C6FFF 40%, #A78BFA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.svc2-head-sub.jdd-sub {
    font-size: 15px;
    line-height: 1.7;
    margin: 14px auto 0;
    max-width: 720px;
    text-wrap: balance;
}

.svc2-head-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.svc2-auto-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
}

.svc2-nav {
    display: flex;
    gap: 8px;
}

.svc2-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.svc2-nav-btn:hover {
    background: rgba(2, 53, 117, 0.18);
    border-color: rgba(2, 53, 117, 0.4);
    color: #93c5fd;
}

.svc2-nav-btn svg {
    width: 14px;
    height: 14px;
}

/* ── Layout ── */


/* ── Tab list ── */
.svc2-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc2-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.22s;
    border-radius: 0;
    width: 100%;
}

.svc2-tabs {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.svc2-tab:last-child {
    border-bottom: none;
}

.svc2-tab:hover {
    background: rgba(255, 255, 255, 0.03);
}

.svc2-tab.active {
    background: rgba(2, 53, 117, 0.12);
}

/* Progress bar */
.svc2-tab-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #023575, #1a56db);
    opacity: 0;
    transition: opacity 0.2s;
}

.svc2-tab.active .svc2-tab-bar {
    opacity: 1;
}

/* Auto-progress line at top of active tab */
.svc2-tab-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.svc2-tab-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #023575, #1a56db);
    transform-origin: left;
}

.svc2-tab.active .svc2-tab-progress-fill {
    animation: svc2prog var(--svc2-dur, 5000ms) linear forwards;
}

@keyframes svc2prog {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

.svc2-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.22s;
}

.svc2-tab-icon svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.svc2-tab-num {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    transition: color 0.22s;
}

.svc2-tab.active .svc2-tab-num {
    color: rgba(2, 53, 117, 0.9);
}

.svc2-tab.active .svc2-tab-icon {
    color: #023575;
}

.svc2-tab-info {
    flex: 1;
    min-width: 0;
}

.svc2-tab-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: -0.2px;
    transition: color 0.22s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.svc2-tab.active .svc2-tab-name {
    color: #fff;
}

.svc2-tab-sub {
    display: block;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.28);
    margin-top: 3px;
    transition: color 0.22s;
}

.svc2-tab.active .svc2-tab-sub {
    color: rgba(2, 53, 117, 0.7);
}

.svc2-tab-count {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.22s;
}

.svc2-tab.active .svc2-tab-count {
    background: rgba(2, 53, 117, 0.18);
    border-color: rgba(2, 53, 117, 0.3);
    color: #93c5fd;
}

/* ── Panels ── */
.svc2-panels {
    position: relative;
}

.svc2-panel {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.026);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.svc2-panel.active {
    display: block;
    animation: svc2panelIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Visuals (right column) ── */
.svc2-visuals {
    position: relative;
    display: flex;
    flex-direction: column;
}

.svc2-visual {
    display: none;
    flex: 1;
    flex-direction: column;
    min-height: 0;
}

.svc2-visual.active {
    display: flex;
    flex-direction: column;
    flex: 1;
    animation: svc2panelIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes svc2panelIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Panel left — text content */
.svc2-panel-content {
    padding: clamp(28px, 3vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 992px) {
    .svc2-panel-content {
        min-height: 520px;
    }
}

.svc2-panel-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(2, 53, 117, 0.18);
    border: 1px solid rgba(2, 53, 117, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.svc2-panel-icon-wrap:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.svc2-panel-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: #93c5fd;
    transition: transform 0.3s ease;
}

/* ── Icon movement animations ── */
@keyframes svc2-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes svc2-jitter {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

@keyframes svc2-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-7px);
    }

    70% {
        transform: translateY(-3px);
    }
}

@keyframes svc2-rise {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-6px) scale(1.1);
    }
}

@keyframes svc2-pulse-icon {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.75;
    }
}

.svc2-panel[data-idx="0"] .svc2-panel-icon-wrap:hover svg {
    animation: svc2-spin 1.4s linear infinite;
}

.svc2-panel[data-idx="1"] .svc2-panel-icon-wrap:hover svg {
    animation: svc2-jitter 0.45s ease infinite;
}

.svc2-panel[data-idx="2"] .svc2-panel-icon-wrap:hover svg {
    animation: svc2-bounce 0.6s ease infinite;
}

.svc2-panel[data-idx="3"] .svc2-panel-icon-wrap:hover svg {
    animation: svc2-rise 0.7s ease infinite;
}

.svc2-panel[data-idx="4"] .svc2-panel-icon-wrap:hover svg {
    animation: svc2-pulse-icon 0.9s ease infinite;
}

.svc2-panel-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #A78BFA 0%, #7C6FFF 40%, #A78BFA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    margin-bottom: 10px;
    display: block;
}

.svc2-panel-name.jdd-h2-sm {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
}

.svc2-panel-desc.jdd-sub {
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.svc2-panel-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.svc2-panel-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.svc2-panel-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(124, 111, 255, 0.18);
    border: 1px solid rgba(124, 111, 255, 0.35);
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%23A78BFA' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.svc2-panel-services {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.svc2-panel-services a {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(147, 197, 253, 0.85);
    background: rgba(2, 53, 117, 0.1);
    border: 1px solid rgba(2, 53, 117, 0.2);
    border-radius: 100px;
    padding: 4px 10px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.18s;
    -webkit-text-fill-color: initial;
}

.svc2-panel-services a:hover {
    background: rgba(2, 53, 117, 0.22);
    border-color: rgba(2, 53, 117, 0.4);
    color: #93c5fd;
    text-decoration: none;
}

/* svc2-panel-cta: visual styling comes from btn-primary-dark global class */
.svc2-panel-cta {
    align-self: flex-start;
    width: fit-content;
    margin-top: 0;
    text-decoration: none;
    -webkit-text-fill-color: initial;
}

/* ── Visual panels (right side) ── */
.svc2-visual-wrap {
    padding: clamp(16px, 2vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #05091e;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
}

/* Brand board float */
@keyframes svc2-board-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* Swatch reveal on activation */
@keyframes svc2-swatch-in {
    from {
        transform: scaleX(0);
        opacity: 0;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Aa letter breathe */
@keyframes svc2-aa-breathe {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.65;
        transform: scale(0.94);
    }
}

.svc2-brand-board {
    position: relative;
    z-index: 1;
    animation: svc2-board-float 4.5s ease-in-out infinite;
}

.svc2-bmark svg {
    animation: svc2-spin 14s linear infinite;
}

.svc2-visual.active .svc2-swatch {
    transform-origin: left center;
    animation: svc2-swatch-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.svc2-visual.active .svc2-swatch:nth-child(1) {
    animation-delay: 0.05s;
}

.svc2-visual.active .svc2-swatch:nth-child(2) {
    animation-delay: 0.18s;
}

.svc2-visual.active .svc2-swatch:nth-child(3) {
    animation-delay: 0.31s;
}

.svc2-visual.active .svc2-swatch:nth-child(4) {
    animation-delay: 0.44s;
}

.svc2-baa {
    display: inline-block;
    animation: svc2-aa-breathe 3.5s ease-in-out infinite;
}

/* --- Brand Visual --- */
.svc2-brand-board {
    width: 100%;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svc2-bmark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7C6FFF, #A78BFA);
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc2-bmark svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
}

.svc2-bname {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.svc2-btagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 2px;
}

.svc2-bpalette {
    display: flex;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.svc2-swatch {
    flex: 1;
    height: 28px;
    border-radius: 8px;
}

.svc2-btypeline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.svc2-baa {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.svc2-bfont-nm {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* "Display · 800 / 400" typing effect */
.svc2-bfont-sub {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
}

@keyframes svc2-type-19 {
    from {
        width: 0;
    }

    to {
        width: 19ch;
    }
}

.svc2-visual.active .svc2-bfont-sub {
    animation: svc2-type-19 0.55s steps(19, end) 0s both;
}

.svc2-visual.active .svc2-bfont-sub .svc2-tcur {
    animation: svc2-cur-blink 0.45s step-end 0s 3, svc2-cur-fade 0.15s ease 1.35s forwards;
}

/* Typography creation preview */
.svc2-btypo-demo {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* UNUSED: .svc2-btypo-line, .svc2-btypo-xl, .svc2-btypo-md, .svc2-btypo-sm — corresponding HTML is commented out in homedemo.php
.svc2-btypo-line {
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

.svc2-btypo-xl {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.svc2-btypo-md {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.svc2-btypo-sm {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
}
*/

/* Blinking cursor bar */
.svc2-tcur {
    display: inline-block;
    width: 1.5px;
    height: 0.8em;
    background: rgba(255, 255, 255, 0.75);
    vertical-align: text-bottom;
    margin-left: 2px;
}

/* Typing animations — triggered when panel is active */
@keyframes svc2-type-11 {
    from {
        width: 0;
    }

    to {
        width: 11ch;
    }
}

@keyframes svc2-type-14 {
    from {
        width: 0;
    }

    to {
        width: 14ch;
    }
}

@keyframes svc2-type-20 {
    from {
        width: 0;
    }

    to {
        width: 20ch;
    }
}

@keyframes svc2-cur-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes svc2-cur-fade {
    to {
        opacity: 0;
    }
}

@keyframes svc2-weights-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Line 1: "Brand Voice" — 11 chars, starts at 0.3s */
.svc2-visual.active .svc2-btypo-xl {
    animation: svc2-type-11 0.7s steps(11, end) 0.3s both;
}

.svc2-visual.active .svc2-btypo-xl .svc2-tcur {
    animation: svc2-cur-blink 0.45s step-end 0.3s 2, svc2-cur-fade 0.15s ease 1.4s forwards;
}

/* Line 2: "Headline & Sub" — 14 chars, starts at 1.2s */
.svc2-visual.active .svc2-btypo-md {
    animation: svc2-type-14 0.85s steps(14, end) 1.2s both;
}

.svc2-visual.active .svc2-btypo-md .svc2-tcur {
    animation: svc2-cur-blink 0.45s step-end 1.2s 2, svc2-cur-fade 0.15s ease 2.2s forwards;
}

/* Line 3: "Body · Regular · 400" — 20 chars, starts at 2.25s */
.svc2-visual.active .svc2-btypo-sm {
    animation: svc2-type-20 1.1s steps(20, end) 2.25s both;
}

.svc2-visual.active .svc2-btypo-sm .svc2-tcur {
    animation: svc2-cur-blink 0.45s step-end 2.25s 2, svc2-cur-fade 0.15s ease 3.5s forwards;
}

/* --- Logo creation card --- */
.svc2-logo-card {
    margin-top: 10px;
    opacity: 0;
}

.svc2-visual.active .svc2-logo-card {
    animation: svc2-weights-in 0.35s ease 1.06s both;
}

.svc2-lc-label {
    font-size: 8.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.svc2-lc-canvas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px 10px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
}

.svc2-lc-guide-h,
.svc2-lc-guide-v {
    position: absolute;
    background: rgba(96, 165, 250, 0.18);
    pointer-events: none;
}

.svc2-lc-guide-h {
    height: 1px;
    width: 0%;
    top: 50%;
    left: 0;
}

.svc2-lc-guide-v {
    width: 1px;
    height: 0%;
    left: 50%;
    top: 0;
}

.svc2-lc-svg {
    width: 62px;
    height: 62px;
}

.svc2-lc-dot-wrap {
    transform: scale(0);
    transform-box: fill-box;
    transform-origin: center;
}

.svc2-lc-wordmark {
    font-size: 11.5px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.06em;
    opacity: 0;
}

.svc2-lc-wordmark span {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.svc2-lc-variants {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.svc2-lc-variant {
    flex: 1;
    aspect-ratio: 1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    opacity: 0;
    transform: translateY(5px);
}

.svc2-lcv-dark {
    background: #05091e;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.svc2-lcv-light {
    background: #eef2ff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.svc2-lcv-mono {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.svc2-lc-variant svg {
    width: 100%;
    height: 100%;
}

/* Logo draw-in animations */
@keyframes svc2-guide-h-in {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes svc2-guide-v-in {
    from {
        height: 0%;
    }

    to {
        height: 100%;
    }
}

@keyframes svc2-lc-ring-draw {
    from {
        stroke-dashoffset: 126;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes svc2-lc-mark-draw {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes svc2-lc-dot-pop {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes svc2-lc-wm-in {
    from {
        opacity: 0;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes svc2-lc-var-in {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.svc2-visual[data-idx="0"].active .svc2-lc-guide-h {
    animation: svc2-guide-h-in 0.35s ease 3.48s both;
}

.svc2-visual[data-idx="0"].active .svc2-lc-guide-v {
    animation: svc2-guide-v-in 0.35s ease 3.48s both;
}

.svc2-visual[data-idx="0"].active .svc2-lc-ring {
    animation: svc2-lc-ring-draw 0.85s ease-out 3.72s both;
}

.svc2-visual[data-idx="0"].active .svc2-lc-jmark {
    animation: svc2-lc-mark-draw 0.50s ease-out 4.47s both;
}

.svc2-visual[data-idx="0"].active .svc2-lc-dot-wrap {
    animation: svc2-lc-dot-pop 0.30s cubic-bezier(0.34, 1.56, 0.64, 1) 4.87s both;
}

.svc2-visual[data-idx="0"].active .svc2-lc-wordmark {
    animation: svc2-lc-wm-in 0.35s ease 5.08s both;
}

.svc2-visual[data-idx="0"].active .svc2-lc-variant:nth-child(1) {
    animation: svc2-lc-var-in 0.28s ease 5.32s both;
}

.svc2-visual[data-idx="0"].active .svc2-lc-variant:nth-child(2) {
    animation: svc2-lc-var-in 0.28s ease 5.50s both;
}

.svc2-visual[data-idx="0"].active .svc2-lc-variant:nth-child(3) {
    animation: svc2-lc-var-in 0.28s ease 5.68s both;
}

/* --- Dev Visual (code window) --- */
.svc2-code-win {
    width: 100%;
    background: rgba(15, 14, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Fira Code', 'Cascadia Code', monospace;
}

.svc2-code-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.svc2-code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.svc2-code-filename {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.28);
    margin-left: 8px;
    letter-spacing: 0.02em;
}

.svc2-code-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.svc2-code-row {
    font-size: 10px;
    line-height: 1.65;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
}

/* Code cursor */
.svc2-code-cursor {
    font-size: 11px;
    color: rgba(99, 179, 253, 0.9);
    line-height: 1;
    animation: svc2-cur-blink 0.6s step-end infinite;
    display: inline-block;
}

@keyframes svc2-code-line-in {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered line-by-line reveal on panel activation */
.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(1) {
    animation: svc2-code-line-in 0.18s ease 0.3s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(2) {
    animation: svc2-code-line-in 0.18s ease 0.52s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(3) {
    animation: svc2-code-line-in 0.18s ease 0.74s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(4) {
    animation: svc2-code-line-in 0.18s ease 0.96s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(5) {
    animation: svc2-code-line-in 0.18s ease 1.18s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(6) {
    animation: svc2-code-line-in 0.18s ease 1.40s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(7) {
    animation: svc2-code-line-in 0.18s ease 1.62s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(8) {
    animation: svc2-code-line-in 0.18s ease 1.84s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(9) {
    animation: svc2-code-line-in 0.18s ease 2.06s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(10) {
    animation: svc2-code-line-in 0.18s ease 2.28s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(11) {
    animation: svc2-code-line-in 0.18s ease 2.50s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(12) {
    animation: svc2-code-line-in 0.18s ease 2.72s both;
}

.svc2-visual[data-idx="1"].active .svc2-code-row:nth-child(13) {
    animation: svc2-code-line-in 0.18s ease 2.94s both;
}

.c-kw {
    color: #7C6FFF;
}

.c-fn {
    color: #A78BFA;
}

.c-st {
    color: #86efac;
}

.c-tp {
    color: #67e8f9;
}

.c-cm {
    color: rgba(255, 255, 255, 0.28);
    font-style: italic;
}

.c-pt {
    color: rgba(255, 255, 255, 0.55);
}

.c-nm {
    color: #fde68a;
}

/* --- eCommerce Visual --- */
.svc2-product-card {
    width: 100%;
    max-width: 260px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.svc2-product-img-area {
    height: 150px;
    background: linear-gradient(160deg, #0a0618 0%, #100c2e 50%, #0e1428 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* CSS perfume bottle mockup */
.svc2-pm-scene {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.svc2-pm-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.svc2-pm-shadow {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 6px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    filter: blur(4px);
}

.svc2-pm-bottle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.svc2-pm-cap {
    width: 18px;
    height: 20px;
    background: linear-gradient(160deg, #e8d5a3, #b89a5a);
    border-radius: 3px 3px 0 0;
    position: relative;
    box-shadow: 0 -2px 6px rgba(184, 154, 90, 0.3);
}

.svc2-pm-cap-ring {
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
    height: 3px;
    background: linear-gradient(90deg, #c9a96e, #f0d87a, #c9a96e);
    border-radius: 1px;
}

.svc2-pm-neck {
    width: 12px;
    height: 10px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(80, 60, 140, 0.6));
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.svc2-pm-body {
    width: 48px;
    height: 78px;
    background: linear-gradient(160deg, rgba(110, 70, 200, 0.55) 0%, rgba(2, 20, 70, 0.85) 100%);
    border-radius: 3px 3px 4px 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset -2px 0 8px rgba(0, 0, 0, 0.3);
}

.svc2-pm-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 100%;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 40%, transparent 70%);
    border-radius: 3px 0 0 4px;
}

.svc2-pm-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.svc2-pm-brand {
    font-size: 17px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.12em;
    font-family: Georgia, serif;
    line-height: 1;
}

.svc2-pm-edition {
    font-size: 7px;
    font-weight: 600;
    color: rgba(184, 154, 90, 0.85);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    line-height: 1;
}

/* floating sparkles */
.svc2-pm-spark {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(200, 170, 255, 0.7);
    animation: svc2-spark-float 2.8s ease-in-out infinite;
}

.svc2-pm-s1 {
    top: 30%;
    left: 25%;
    animation-delay: 0s;
    width: 2px;
    height: 2px;
}

.svc2-pm-s2 {
    top: 20%;
    right: 28%;
    animation-delay: 0.9s;
    width: 3px;
    height: 3px;
    background: rgba(184, 154, 90, 0.7);
}

.svc2-pm-s3 {
    top: 50%;
    right: 20%;
    animation-delay: 1.7s;
    width: 2px;
    height: 2px;
}

@keyframes svc2-spark-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-8px) scale(1.4);
        opacity: 0.3;
    }
}

.svc2-product-body {
    padding: 16px;
}

.svc2-product-badge2 {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 700;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
    border-radius: 100px;
    padding: 2px 8px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.svc2-product-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.svc2-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.svc2-price-curr {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.svc2-price-orig2 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.svc2-atc {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #023575, #1a56db);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.svc2-atc-default {
    display: flex;
    align-items: center;
    gap: 6px;
}

.svc2-atc svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

.svc2-atc-done {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: #6ee7b7;
    letter-spacing: 0.01em;
}

/* Order confirmation overlay */
.svc2-order-confirm {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(2, 15, 50, 0.98) 0%, rgba(5, 9, 30, 0.96) 100%);
    border-radius: 0 0 16px 16px;
    padding: 14px 16px 16px;
    transform: translateY(100%);
    opacity: 0;
}

.svc2-oc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.svc2-oc-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.15);
    border: 1.5px solid rgba(52, 211, 153, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc2-oc-check svg {
    width: 15px;
    height: 15px;
}

.svc2-oc-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.svc2-oc-ref {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.svc2-oc-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-bottom: 7px;
    overflow: hidden;
}

.svc2-oc-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #34d399, #60a5fa);
    border-radius: 2px;
}

.svc2-oc-steps {
    display: flex;
    justify-content: space-between;
}

.svc2-oc-step {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
}

/* --- eCommerce click sequence --- */
@keyframes svc2-btn-click {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(0.93);
        box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.35);
    }

    65% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes svc2-atc-fade-out {
    to {
        opacity: 0;
    }
}

@keyframes svc2-atc-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes svc2-confirm-slide-in {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes svc2-bar-grow {
    from {
        width: 0;
    }

    to {
        width: 60%;
    }
}

@keyframes svc2-step-done {
    to {
        color: #34d399;
    }
}

@keyframes svc2-step-active {
    to {
        color: #60a5fa;
    }
}

.svc2-visual[data-idx="2"].active .svc2-atc {
    animation: svc2-btn-click 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}

.svc2-visual[data-idx="2"].active .svc2-atc-default {
    animation: svc2-atc-fade-out 0.18s ease 1.45s forwards;
}

.svc2-visual[data-idx="2"].active .svc2-atc-done {
    animation: svc2-atc-fade-in 0.18s ease 1.55s forwards;
}

.svc2-visual[data-idx="2"].active .svc2-order-confirm {
    animation: svc2-confirm-slide-in 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) 1.9s both;
}

.svc2-visual[data-idx="2"].active .svc2-oc-fill {
    animation: svc2-bar-grow 0.9s ease 2.4s both;
}

.svc2-visual[data-idx="2"].active .svc2-oc-step:nth-child(1) {
    animation: svc2-step-done 0.2s ease 2.38s forwards;
}

.svc2-visual[data-idx="2"].active .svc2-oc-step:nth-child(2) {
    animation: svc2-step-done 0.2s ease 2.60s forwards;
}

.svc2-visual[data-idx="2"].active .svc2-oc-step:nth-child(3) {
    animation: svc2-step-active 0.2s ease 2.82s forwards;
}

.svc2-product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Marketing Visual (bar chart) --- */
.svc2-analytics-card {
    width: 100%;
    max-width: 290px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 20px;
}

.svc2-analytics-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.svc2-analytics-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.svc2-analytics-badge {
    font-size: 11px;
    font-weight: 700;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #4ade80;
    border-radius: 100px;
    padding: 3px 9px;
}

.svc2-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    margin-bottom: 14px;
    padding-bottom: 24px;
    position: relative;
}

.svc2-chart-bars::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.07);
}

.svc2-chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(26, 86, 219, 0.28);
    height: var(--h, 40%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    transform: scaleY(0);
    transform-origin: bottom;
}

.svc2-chart-bar.hi {
    background: linear-gradient(180deg, #60a5fa, #1a56db);
}

.svc2-chart-bar span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.28);
    white-space: nowrap;
}

.svc2-metrics-row {
    display: flex;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.svc2-metric2 {
    flex: 1;
    text-align: center;
}

.svc2-metric2-val {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    display: block;
}

.svc2-metric2-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.32);
    display: block;
    margin-top: 2px;
}

/* Marketing stack (two-card layout) */
.svc2-mkt-wrap {
    align-items: stretch !important;
    padding: 16px !important;
}

.svc2-marketing-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.svc2-analytics-card {
    max-width: none !important;
}

/* Core Web Vitals card */
.svc2-cwv-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 12px 14px 14px;
}

.svc2-cwv-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.svc2-cwv-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.svc2-cwv-score-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 100px;
    padding: 2px 8px 2px 5px;
}

.svc2-cwv-score-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    animation: svc2-cwv-pulse 2s ease-in-out infinite;
}

@keyframes svc2-cwv-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(52, 211, 153, 0);
    }
}

.svc2-cwv-score-num {
    font-size: 11px;
    font-weight: 800;
    color: #34d399;
}

/* Performance bar */
.svc2-cwv-perf-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.svc2-cwv-perf-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #f97316 0%, #facc15 35%, #34d399 75%);
    border-radius: 3px;
}

/* Metrics grid */
.svc2-cwv-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.1fr;
    row-gap: 7px;
    align-items: center;
}

.svc2-cwv-gh {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.02em;
}

.svc2-cwv-metric {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
}

.svc2-cwv-val {
    font-size: 11px;
    font-weight: 800;
    opacity: 0;
}

.svc2-cwv-good {
    color: #34d399;
}

/* --- Bar grow + CWV animations (marketing panel active) --- */
@keyframes svc2-bar-grow-up {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes svc2-cwv-row-in {
    from {
        opacity: 0;
        transform: translateX(-4px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes svc2-cwv-fill {
    from {
        width: 0;
    }

    to {
        width: 98%;
    }
}

/* Bars stagger */
.svc2-visual[data-idx="3"].active .svc2-chart-bar:nth-child(1) {
    animation: svc2-bar-grow-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.svc2-visual[data-idx="3"].active .svc2-chart-bar:nth-child(2) {
    animation: svc2-bar-grow-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.48s both;
}

.svc2-visual[data-idx="3"].active .svc2-chart-bar:nth-child(3) {
    animation: svc2-bar-grow-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.66s both;
}

.svc2-visual[data-idx="3"].active .svc2-chart-bar:nth-child(4) {
    animation: svc2-bar-grow-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.84s both;
}

.svc2-visual[data-idx="3"].active .svc2-chart-bar:nth-child(5) {
    animation: svc2-bar-grow-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.02s both;
}

.svc2-visual[data-idx="3"].active .svc2-chart-bar:nth-child(6) {
    animation: svc2-bar-grow-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.20s both;
}

/* CWV performance bar fill */
.svc2-visual[data-idx="3"].active .svc2-cwv-perf-fill {
    animation: svc2-cwv-fill 1s ease 1.6s both;
}

/* CWV metric rows stagger (3 rows × 3 cols, animate col by col within each row) */
.svc2-visual[data-idx="3"].active .svc2-cwv-metric:nth-child(4),
.svc2-visual[data-idx="3"].active .svc2-cwv-val:nth-child(5),
.svc2-visual[data-idx="3"].active .svc2-cwv-val:nth-child(6) {
    animation: svc2-cwv-row-in 0.25s ease 1.8s both;
}

.svc2-visual[data-idx="3"].active .svc2-cwv-metric:nth-child(7),
.svc2-visual[data-idx="3"].active .svc2-cwv-val:nth-child(8),
.svc2-visual[data-idx="3"].active .svc2-cwv-val:nth-child(9) {
    animation: svc2-cwv-row-in 0.25s ease 2.05s both;
}

.svc2-visual[data-idx="3"].active .svc2-cwv-metric:nth-child(10),
.svc2-visual[data-idx="3"].active .svc2-cwv-val:nth-child(11),
.svc2-visual[data-idx="3"].active .svc2-cwv-val:nth-child(12) {
    animation: svc2-cwv-row-in 0.25s ease 2.30s both;
}

/* --- Maintenance visual: browser mockup scanning for issues, then resolving --- */
.svc2-maint-card {
    width: 100%;
    max-width: 300px;
    background: rgba(15, 14, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    overflow: hidden;
}

.svc2-maint-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.svc2-maint-url {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 8px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.svc2-maint-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.svc2-maint-issue {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 9px;
    opacity: 0;
}

.svc2-visual[data-idx="4"].active .svc2-maint-issue,
.svc2-visual[data-idx="4"].active .svc2-maint-resolved {
    animation-name: svc2-cwv-row-in;
    animation-duration: 0.4s;
    animation-timing-function: ease;
    animation-delay: var(--d, 0s);
    animation-fill-mode: both;
}

.svc2-maint-issue-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc2-maint-issue-icon.bad {
    background: rgba(239, 68, 68, 0.14);
    color: #f87171;
}

.svc2-maint-issue-icon.warn {
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
}

.svc2-maint-issue-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.svc2-maint-issue-title {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.svc2-maint-issue-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1px;
}

.svc2-maint-pill {
    flex-shrink: 0;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 2.5px 6px;
    border-radius: 100px;
    text-transform: uppercase;
    white-space: nowrap;
}

.svc2-maint-pill.critical {
    background: rgba(239, 68, 68, 0.16);
    color: #f87171;
    animation: svc2-maint-pulse 1.8s ease-in-out infinite;
}

@keyframes svc2-maint-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.35);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
    }
}

.svc2-maint-pill.warn {
    background: rgba(245, 158, 11, 0.16);
    color: #fbbf24;
}

.svc2-maint-resolved {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    padding: 9px 10px;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 9px;
    color: #34d399;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
}

/* --- AI Visual (chat) --- */
.svc2-chat-card {
    width: 100%;
    max-width: 290px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    overflow: hidden;
}

.svc2-chat-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(2, 53, 117, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* AI avatar spinning ring wrapper */
.svc2-ai-avatar-wrap {
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc2-ai-avatar-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #60a5fa 0deg 90deg, rgba(167, 139, 250, 0.6) 91deg 170deg, transparent 171deg 360deg);
    animation: svc2-ai-ring-spin 2.5s linear infinite;
}

@keyframes svc2-ai-ring-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.svc2-ai-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #023575, #1a56db);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.svc2-chat-agent-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.svc2-chat-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #4ade80;
    margin-top: 1px;
}

.svc2-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    animation: svc2pulse 1.5s ease-in-out infinite;
}

.svc2-chat-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc2-msg {
    max-width: 88%;
    font-size: 12px;
    line-height: 1.55;
    border-radius: 12px;
    padding: 9px 12px;
}

.svc2-msg.ai {
    background: rgba(2, 53, 117, 0.28);
    border: 1px solid rgba(26, 86, 219, 0.3);
    color: rgba(255, 255, 255, 0.85);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.svc2-msg.user {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.svc2-typing {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    vertical-align: middle;
}

.svc2-typing span {
    display: inline-block;
    color: #60a5fa;
    font-size: 10px;
    animation: svc2-dot-bounce 0.65s ease-in-out infinite;
    line-height: 1;
}

.svc2-typing span:nth-child(1) {
    animation-delay: 0s;
}

.svc2-typing span:nth-child(2) {
    animation-delay: 0.16s;
}

.svc2-typing span:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes svc2-dot-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }

    33% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

/* Chat message entrance */
.svc2-msg {
    opacity: 0;
    transform: translateY(8px);
}

.svc2-msg-result {
    background: rgba(52, 211, 153, 0.1) !important;
    border-color: rgba(52, 211, 153, 0.22) !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.svc2-msg-check {
    color: #34d399;
    font-weight: 800;
    margin-right: 3px;
}

@keyframes svc2-msg-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.svc2-visual[data-idx="4"].active .svc2-msg:nth-child(1) {
    animation: svc2-msg-in 0.32s ease 0.4s both;
}

.svc2-visual[data-idx="4"].active .svc2-msg:nth-child(2) {
    animation: svc2-msg-in 0.32s ease 1.3s both;
}

.svc2-visual[data-idx="4"].active .svc2-msg:nth-child(3) {
    animation: svc2-msg-in 0.32s ease 2.2s both;
}

.svc2-visual[data-idx="4"].active .svc2-msg:nth-child(4) {
    animation: svc2-msg-in 0.32s ease 3.5s both;
}

/* Fade typing dots out once result message appears */
.svc2-visual[data-idx="4"].active .svc2-msg-analyzing .svc2-typing {
    animation: svc2-atc-fade-out 0.25s ease 3.4s forwards;
}

/* ── Responsive ── */
@media (max-width:860px) {
    .svc2-panel-content {
        border-right: none;
    }

    .svc2-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .svc2-tab {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .svc2-tab-count {
        display: none;
    }

    .svc2-head-right {
        align-items: flex-start;
    }
}

@media (max-width:520px) {
    .svc2-tabs {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
    }

    .svc2-tab {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    /* Accordion mode: the shared panel column is replaced by the active
       panel getting moved inline right after its own tab — see the JS
       placePanel() logic in the svc2 script block. */
    .svc2-panels {
        display: none;
    }

    .svc2-panel {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        box-shadow: none !important;
    }
}

/* ─────────────────────────────────────────────
   svc2 WHITE THEME — overrides all dark values
───────────────────────────────────────────────*/
.svc2-sec {
    background: #ffffff !important;
    border-top-color: #eae6f6;
}

.svc2-sec::before {
    background: none;
}

.svc2-auto-label {
    color: #b0acc8;
}

.svc2-nav-btn {
    border-color: #e5e7eb;
    background: #f9f9fc;
    color: #9ca3af;
}

.svc2-nav-btn:hover {
    background: rgba(2, 53, 117, 0.06);
    border-color: rgba(2, 53, 117, 0.25);
    color: #023575;
}

/* ── Eyebrow pill & panel category — match heading gradient ── */
.svc2-pill {
    background: rgba(2, 53, 117, 0.06);
    border-color: rgba(2, 53, 117, 0.2);
}

.svc2-pill-dot {
    background: linear-gradient(135deg, #023575, #9e0101);
}

.svc2-pill-txt {
    background: linear-gradient(90deg, #023575 0%, #9e0101 40%, #023575 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.svc2-panel-cat {
    background: linear-gradient(90deg, #023575 0%, #9e0101 40%, #023575 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ── Tab list ── */
.svc2-tabs {
    border-color: #e5e7eb;
}

.svc2-tab {
    border-bottom-color: #f0f0f0;
}

.svc2-tab:hover {
    background: #f5f7fa;
}

.svc2-tab.active {
    background: rgba(2, 53, 117, 0.06);
}

.svc2-tab-num {
    color: #9ca3af;
}

.svc2-tab.active .svc2-tab-num {
    color: #023575;
}

.svc2-tab-icon {
    color: #9ca3af;
}

.svc2-tab.active .svc2-tab-icon {
    color: #023575;
}

.svc2-tab-name {
    color: #000000;
}

.svc2-tab.active .svc2-tab-name {
    color: #0f172a;
}

.svc2-tab-sub {
    color: #6b7280;
}

.svc2-tab.active .svc2-tab-sub {
    color: #023575;
}

.svc2-tab-count {
    background: #eef2f9;
    border-color: #c8d8ee;
    color: #023575;
}

.svc2-tab.active .svc2-tab-count {
    background: #dce8f7;
    border-color: #93aed8;
    color: #023575;
}

/* ── Panel ── */
.svc2-panel {
    background: #ffffff;
    border-color: #eae6f6;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.svc2-panel-content {
    border-right-color: #e5e7eb;
}

/* icon badge — dark backgrounds per panel with contrasting icon strokes */
.svc2-panel[data-idx="0"] .svc2-panel-icon-wrap {
    background: #0f172a;
    border-color: #1e3a5f;
}

.svc2-panel[data-idx="0"] .svc2-panel-icon-wrap svg {
    stroke: #60a5fa;
}

.svc2-panel[data-idx="1"] .svc2-panel-icon-wrap {
    background: #0c1a3d;
    border-color: #1e3a6e;
}

.svc2-panel[data-idx="1"] .svc2-panel-icon-wrap svg {
    stroke: #93c5fd;
}

.svc2-panel[data-idx="2"] .svc2-panel-icon-wrap {
    background: #052e16;
    border-color: #14532d;
}

.svc2-panel[data-idx="2"] .svc2-panel-icon-wrap svg {
    stroke: #4ade80;
}

.svc2-panel[data-idx="3"] .svc2-panel-icon-wrap {
    background: #450a0a;
    border-color: #7f1d1d;
}

.svc2-panel[data-idx="3"] .svc2-panel-icon-wrap svg {
    stroke: #fca5a5;
}

.svc2-panel[data-idx="4"] .svc2-panel-icon-wrap {
    background: #111827;
    border-color: #374151;
}

.svc2-panel[data-idx="4"] .svc2-panel-icon-wrap svg {
    stroke: #d1d5db;
}

/* text */
.svc2-panel-name {
    color: #0f172a;
}

.svc2-panel-desc {
    color: #000000;
}

.svc2-panel-features li {
    color: #374151;
}

.svc2-panel-features li::before {
    background-color: #e8f0fb;
    border-color: #b8cee8;
}

/* service tag pills */
.svc2-panel-services {
    border-top-color: #e5e7eb;
}

.svc2-panel-services a {
    color: #374151;
    background: #eef2f9;
    border-color: #c8d8ee;
}

.svc2-panel-services a:hover {
    background: #dce8f7;
    border-color: #93aed8;
    color: #0f172a;
    text-decoration: none;
}

/* visual column — keep dark bg so wave bg always shows */
.svc2-visual-wrap {
    background: #05091e;
    border-color: rgba(255, 255, 255, 0.09);
}

/* ── Visual cards — always dark (wrap is always #05091e) ── */
.svc2-brand-board {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.svc2-bname {
    color: #fff;
}

.svc2-btagline {
    color: rgba(255, 255, 255, 0.5);
}

.svc2-bpalette {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.svc2-btypeline {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.svc2-code-win {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.svc2-product-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.svc2-product-title {
    color: #fff;
}

.svc2-price-curr {
    color: #fff;
}

.svc2-price-orig2 {
    color: rgba(255, 255, 255, 0.35);
}

.svc2-analytics-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.svc2-chart-bar {
    background: rgba(2, 53, 117, 0.35);
}

.svc2-metrics-row {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.svc2-metric2-val {
    color: #fff;
}

.svc2-metric2-lbl {
    color: rgba(255, 255, 255, 0.5);
}

.svc2-chat-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.svc2-chat-head {
    background: rgba(255, 255, 255, 0.04);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.svc2-chat-agent-name {
    color: #fff;
}

.svc2-msg.ai {
    background: rgba(2, 53, 117, 0.25);
    border-color: rgba(2, 53, 117, 0.4);
    color: rgba(255, 255, 255, 0.85);
}

.svc2-msg.user {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

/* ── Portfolio Showcase v2 ── */
.port2-sec {
    background: #0a1628;
    position: relative;
    overflow: hidden;
    height: 90vh;
    min-height: 560px;
    max-height: 900px;
    padding-top: 50px;
    padding-bottom: 0px;
    border-top: none;
    display: flex;
    flex-direction: column;
}

.port2-sec>.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: clamp(24px, 3.5vh, 40px);
    padding-bottom: 20px;
}

/* Dynamic background layers — one per slide, crossfade on active */
.port2-bgs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.port2-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.75s ease;
}

.port2-bg.is-active {
    opacity: 1;
}

/* ── Each slide's unique photo background + directional overlay ──
   Overlay: dark left (text side) → lighter right (browser mockup side)  */

.port2-bg-health {
    background-image:
        linear-gradient(105deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0.3) 100%),
        url('https://www.janbask.com/case-studies/images/vbBanner-min.webp');
    background-size: cover;
    background-position: center;
}

.port2-bg-edu {
    background-image:
        linear-gradient(105deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0.3) 100%),
        url('https://www.janbask.com/case-studies/images/home-building-1-1-1.webp');
    background-size: cover;
    background-position: center;
}

.port2-bg-ecom {
    background-image:
        linear-gradient(105deg, rgba(60, 8, 8, 0.92) 0%, rgba(60, 8, 8, 0.82) 45%, rgba(60, 8, 8, 0.55) 100%),
        url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1600&q=75&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
}

.port2-bg-fin {
    background-image:
        linear-gradient(105deg, rgba(10, 10, 25, 0.93) 0%, rgba(10, 10, 25, 0.83) 45%, rgba(10, 10, 25, 0.58) 100%),
        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1600&q=75&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
}

.port2-bg-real {
    background-image:
        linear-gradient(105deg, rgba(5, 30, 15, 0.92) 0%, rgba(5, 30, 15, 0.82) 45%, rgba(5, 30, 15, 0.55) 100%),
        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=75&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
}

.port2-bg-saas {
    background-image:
        linear-gradient(105deg, rgba(2, 20, 50, 0.92) 0%, rgba(2, 20, 50, 0.82) 45%, rgba(2, 20, 50, 0.55) 100%),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1600&q=75&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
}

/* Auto-advance progress strip */
.port2-autobar {
    height: 3px;
    position: relative;
    overflow: hidden;
}

.port2-autobar-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
}

@keyframes port2-bar-run {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.port2-autobar-fill.running {
    animation: port2-bar-run 5s linear forwards;
}

/* Stage + track — stretch to fill remaining container height */
.port2-stage {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.port2-track {
    position: relative;
    flex: 1;
    min-height: 0;
}

/* Individual slide */
.port2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: clamp(10px, 2vh, 20px) 0;
    display: flex;
    align-items: center;
}

/* ── Info column — white text on dark photo bg ── */
.port2-slide-num {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.port2-itag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    backdrop-filter: blur(6px);
}

.port2-title {
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.port2-desc {
    font-size: clamp(12px, 1.1vw, 14px);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
    margin: 0 0 12px;
}

.port2-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}

.port2-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.80);
}

.port2-feat::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #60a5fa;
    flex-shrink: 0;
}

.port2-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.port2-tech span {
    padding: 3px 9px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.68);
    font-family: monospace;
    backdrop-filter: blur(4px);
}

/* Screen column */
.port2-screen-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.port2-glow {
    position: absolute;
    inset: -20px;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(96, 165, 250, 0.12), transparent 70%);
    filter: blur(28px);
}

/* 3D browser mockup */
.port2-browser-wrap {
    position: relative;
    z-index: 1;
    transition: transform .1s ease;
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.port2-browser {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.port2-browser-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 14px;
    background: #1e2235;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.port2-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.port2-url {
    flex: 1;
    margin-left: 8px;
    height: 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Website mockup canvases — responsive height */
.port2-site {
    height: clamp(220px, 52vh, 410px);
    overflow: hidden;
    position: relative;
}

/* Scroll shimmer effect */
.port2-site::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
    pointer-events: none;
    z-index: 2;
}

/* ── Healthcare ── */
.ps2-health {
    background: #fff;
}

.ps2-health .sn {
    background: #0f4c81;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ps2-health .sn-logo {
    width: 70px;
    height: 9px;
    background: #fff;
    border-radius: 2px;
}

.ps2-health .sn-links {
    display: flex;
    gap: 10px;
}

.ps2-health .sn-links span {
    width: 32px;
    height: 7px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 2px;
}

.ps2-health .sn-cta {
    width: 60px;
    height: 26px;
    background: #34d399;
    border-radius: 5px;
}

.ps2-health .hero {
    background: linear-gradient(135deg, #0d3d6b, #1a7abc);
    padding: 24px 16px 20px;
    position: relative;
    overflow: hidden;
}

.ps2-health .hero::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.ps2-health .h1 {
    width: 72%;
    height: 13px;
    background: #fff;
    border-radius: 3px;
    margin-bottom: 8px;
}

.ps2-health .h2 {
    width: 55%;
    height: 9px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    margin-bottom: 18px;
}

.ps2-health .hb {
    width: 80px;
    height: 28px;
    background: #34d399;
    border-radius: 6px;
    display: inline-block;
}

.ps2-health .hb2 {
    width: 90px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: inline-block;
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ps2-health .stats {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e2e8f0;
}

.ps2-health .stat {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

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

.ps2-health .sv {
    width: 40px;
    height: 11px;
    background: #0f4c81;
    border-radius: 3px;
    margin: 0 auto 4px;
}

.ps2-health .sl {
    width: 28px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 2px;
    margin: 0 auto;
}

.ps2-health .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 14px 16px;
}

.ps2-health .card {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 10px;
    border-top: 2px solid #0f4c81;
}

.ps2-health .ci {
    width: 20px;
    height: 20px;
    background: #0f4c81;
    border-radius: 50%;
    margin-bottom: 8px;
}

.ps2-health .ct {
    width: 80%;
    height: 6px;
    background: #cbd5e1;
    border-radius: 2px;
    margin-bottom: 4px;
}

.ps2-health .ct2 {
    width: 55%;
    height: 5px;
    background: #e2e8f0;
    border-radius: 2px;
}

/* ── Education ── */
.ps2-edu {
    background: #fff;
}

.ps2-edu .sn {
    background: #4c1d95;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ps2-edu .sn-logo {
    width: 70px;
    height: 9px;
    background: #fff;
    border-radius: 2px;
}

.ps2-edu .sn-links {
    display: flex;
    gap: 10px;
}

.ps2-edu .sn-links span {
    width: 32px;
    height: 7px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.ps2-edu .sn-cta {
    width: 60px;
    height: 26px;
    background: #f59e0b;
    border-radius: 5px;
}

.ps2-edu .hero {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
    padding: 24px 16px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ps2-edu .hero-t {
    flex: 1;
}

.ps2-edu .h1 {
    width: 80%;
    height: 12px;
    background: #fff;
    border-radius: 3px;
    margin-bottom: 8px;
}

.ps2-edu .h2 {
    width: 60%;
    height: 8px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    margin-bottom: 18px;
}

.ps2-edu .hb {
    width: 80px;
    height: 28px;
    background: #f59e0b;
    border-radius: 6px;
}

.ps2-edu .hero-img {
    width: 100px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.ps2-edu .hero-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(245, 158, 11, 0.3), transparent);
}

.ps2-edu .search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f3ff;
    padding: 10px 16px;
    border-bottom: 1px solid #ede9fe;
}

.ps2-edu .si {
    flex: 1;
    height: 32px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ddd6fe;
}

.ps2-edu .sb {
    width: 70px;
    height: 32px;
    background: #7c3aed;
    border-radius: 6px;
}

.ps2-edu .courses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 16px;
}

.ps2-edu .course {
    background: #faf5ff;
    border-radius: 8px;
    overflow: hidden;
}

.ps2-edu .cthumb {
    height: 40px;
    position: relative;
}

.ps2-edu .cthumb::before {
    content: '';
    position: absolute;
    inset: 0;
}

.ps2-edu .c1 .cthumb::before {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.ps2-edu .c2 .cthumb::before {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.ps2-edu .c3 .cthumb::before {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.ps2-edu .ci {
    padding: 7px 8px;
}

.ps2-edu .cn {
    width: 85%;
    height: 5px;
    background: #c4b5fd;
    border-radius: 2px;
    margin-bottom: 3px;
}

.ps2-edu .cp {
    width: 50%;
    height: 4px;
    background: #ddd6fe;
    border-radius: 2px;
    margin-bottom: 4px;
}

.ps2-edu .cpr {
    height: 4px;
    background: #e9d5ff;
    border-radius: 2px;
}

.ps2-edu .cpr-fill {
    height: 100%;
    border-radius: 2px;
    background: #7c3aed;
}

.ps2-edu .c1 .cpr-fill {
    width: 75%;
}

.ps2-edu .c2 .cpr-fill {
    width: 45%;
}

.ps2-edu .c3 .cpr-fill {
    width: 90%;
}

/* ── eCommerce ── */
.ps2-ecom {
    background: #fff;
}

.ps2-ecom .sn {
    background: #fff;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
}

.ps2-ecom .sn-logo {
    width: 70px;
    height: 10px;
    background: #dc2626;
    border-radius: 2px;
}

.ps2-ecom .sn-r {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ps2-ecom .sn-r span {
    width: 22px;
    height: 22px;
    background: #f8fafc;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
}

.ps2-ecom .banner {
    background: linear-gradient(135deg, #7f1d1d, #dc2626);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ps2-ecom .bt {
    flex: 1;
}

.ps2-ecom .badge {
    display: inline-block;
    width: 70px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 8px;
}

.ps2-ecom .h1 {
    width: 85%;
    height: 11px;
    background: #fff;
    border-radius: 3px;
    margin-bottom: 6px;
}

.ps2-ecom .h2 {
    width: 60%;
    height: 8px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    margin-bottom: 14px;
}

.ps2-ecom .hb {
    width: 80px;
    height: 28px;
    background: #fbbf24;
    border-radius: 6px;
    display: inline-block;
}

.ps2-ecom .bi {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    flex-shrink: 0;
}

.ps2-ecom .cats {
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    overflow: hidden;
}

.ps2-ecom .cat {
    padding: 5px 12px;
    background: #f8fafc;
    border-radius: 100px;
    font-size: 0;
    height: 22px;
    width: 55px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.ps2-ecom .cat.ca {
    background: #dc2626;
    border-color: #dc2626;
}

.ps2-ecom .prods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 8px 16px 16px;
}

.ps2-ecom .prod {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.ps2-ecom .pimg {
    height: 48px;
    position: relative;
}

.ps2-ecom .p1 .pimg {
    background: linear-gradient(135deg, #fee2e2, #fca5a5);
}

.ps2-ecom .p2 .pimg {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.ps2-ecom .p3 .pimg {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
}

.ps2-ecom .p4 .pimg {
    background: linear-gradient(135deg, #dcfce7, #86efac);
}

.ps2-ecom .pp {
    padding: 5px 6px;
}

.ps2-ecom .pn {
    width: 80%;
    height: 5px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-bottom: 3px;
}

.ps2-ecom .pr {
    width: 45%;
    height: 5px;
    background: #dc2626;
    border-radius: 2px;
}

/* ── Finance ── */
.ps2-fin {
    background: #0f172a;
}

.ps2-fin .sn {
    background: #0f172a;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ps2-fin .sn-logo {
    width: 70px;
    height: 9px;
    background: #ca8a04;
    border-radius: 2px;
}

.ps2-fin .sn-links {
    display: flex;
    gap: 10px;
}

.ps2-fin .sn-links span {
    width: 32px;
    height: 7px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.ps2-fin .sn-cta {
    width: 60px;
    height: 26px;
    background: #ca8a04;
    border-radius: 5px;
}

.ps2-fin .hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ps2-fin .ht {
    flex: 1;
}

.ps2-fin .h1 {
    width: 72%;
    height: 11px;
    background: #fff;
    border-radius: 3px;
    margin-bottom: 8px;
}

.ps2-fin .h2 {
    width: 50%;
    height: 7px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 3px;
    margin-bottom: 16px;
}

.ps2-fin .hb {
    width: 80px;
    height: 26px;
    background: #ca8a04;
    border-radius: 6px;
    display: inline-block;
}

.ps2-fin .hb2 {
    width: 90px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: inline-block;
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ps2-fin .hero-card {
    width: 110px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    flex-shrink: 0;
}

.ps2-fin .hcl {
    width: 60%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-bottom: 6px;
}

.ps2-fin .hcv {
    width: 80%;
    height: 9px;
    background: rgba(202, 138, 4, 0.7);
    border-radius: 3px;
    margin-bottom: 4px;
}

.ps2-fin .hcs {
    width: 50%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.ps2-fin .dash {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 16px;
}

.ps2-fin .widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px;
}

.ps2-fin .wl {
    width: 55%;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    margin-bottom: 6px;
}

.ps2-fin .wv {
    width: 75%;
    height: 8px;
    border-radius: 2px;
    margin-bottom: 6px;
}

.ps2-fin .w1 .wv {
    background: rgba(202, 138, 4, 0.6);
}

.ps2-fin .w2 .wv {
    background: rgba(52, 211, 153, 0.6);
}

.ps2-fin .w3 .wv {
    background: rgba(96, 165, 250, 0.6);
}

.ps2-fin .wbar {
    height: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.ps2-fin .wbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 86, 219, 0.2) 40%, rgba(26, 86, 219, 0.15) 70%, transparent);
    clip-path: polygon(0 100%, 8% 55%, 20% 70%, 35% 25%, 50% 45%, 65% 15%, 80% 30%, 92% 10%, 100% 20%, 100% 100%);
}

.ps2-fin .wbar2::after {
    clip-path: polygon(0 100%, 10% 70%, 22% 50%, 38% 65%, 52% 30%, 68% 45%, 80% 20%, 100% 35%, 100% 100%);
    background: linear-gradient(90deg, transparent, rgba(202, 138, 4, 0.25) 40%, rgba(202, 138, 4, 0.2) 70%, transparent);
}

/* ── Real Estate ── */
.ps2-real {
    background: #fff;
}

.ps2-real .sn {
    background: #fff;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.ps2-real .sn-logo {
    width: 70px;
    height: 9px;
    background: #166534;
    border-radius: 2px;
}

.ps2-real .sn-r {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ps2-real .sn-r span {
    width: 32px;
    height: 7px;
    background: #e2e8f0;
    border-radius: 2px;
}

.ps2-real .sn-cta {
    width: 60px;
    height: 26px;
    background: #166534;
    border-radius: 5px;
}

.ps2-real .search {
    background: linear-gradient(135deg, #166534, #15803d);
    padding: 20px 16px;
}

.ps2-real .sh {
    display: flex;
    gap: 6px;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
}

.ps2-real .shi {
    flex: 1;
    height: 32px;
    background: #f8fafc;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
}

.ps2-real .shi2 {
    width: 70px;
    height: 32px;
    background: #f8fafc;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.ps2-real .shb {
    width: 70px;
    height: 32px;
    background: #166534;
    border-radius: 5px;
    flex-shrink: 0;
}

.ps2-real .tags {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.ps2-real .tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    width: 55px;
    height: 20px;
}

.ps2-real .listings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 16px;
}

.ps2-real .listing {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.ps2-real .limg {
    height: 52px;
    position: relative;
}

.ps2-real .l1 .limg {
    background: linear-gradient(135deg, #bbf7d0, #4ade80);
}

.ps2-real .l2 .limg {
    background: linear-gradient(135deg, #bfdbfe, #60a5fa);
}

.ps2-real .l3 .limg {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
}

.ps2-real .ltag {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 30px;
    height: 10px;
    background: #166534;
    border-radius: 3px;
}

.ps2-real .lbed {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 24px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.ps2-real .lp {
    padding: 7px 8px;
}

.ps2-real .lpr {
    width: 55%;
    height: 6px;
    background: #166534;
    border-radius: 2px;
    margin-bottom: 3px;
}

.ps2-real .ll {
    width: 75%;
    height: 5px;
    background: #e2e8f0;
    border-radius: 2px;
}

/* ── SaaS ── */
.ps2-saas {
    background: #fff;
}

.ps2-saas .sn {
    background: #fff;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
}

.ps2-saas .sn-logo {
    width: 70px;
    height: 9px;
    background: #0369a1;
    border-radius: 2px;
}

.ps2-saas .sn-r {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ps2-saas .sn-r span {
    width: 32px;
    height: 7px;
    background: #e2e8f0;
    border-radius: 2px;
}

.ps2-saas .sn-cta {
    width: 60px;
    height: 26px;
    background: #0369a1;
    border-radius: 5px;
}

.ps2-saas .hero {
    background: linear-gradient(135deg, #0369a1, #0ea5e9);
    padding: 24px 16px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ps2-saas .hero::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.ps2-saas .hero::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.ps2-saas .h1 {
    width: 65%;
    height: 12px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto 8px;
}

.ps2-saas .h2 {
    width: 45%;
    height: 8px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    margin: 0 auto 18px;
}

.ps2-saas .hbs {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.ps2-saas .hb {
    width: 80px;
    height: 28px;
    background: #fff;
    border-radius: 6px;
}

.ps2-saas .hb2 {
    width: 90px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.ps2-saas .dbrow {
    display: flex;
    gap: 8px;
    padding: 12px 16px 8px;
}

.ps2-saas .dbw {
    flex: 1;
    background: #f0f9ff;
    border-radius: 8px;
    padding: 8px;
    border-left: 2px solid #0ea5e9;
}

.ps2-saas .dwl {
    width: 60%;
    height: 5px;
    background: #bae6fd;
    border-radius: 2px;
    margin-bottom: 5px;
}

.ps2-saas .dwv {
    width: 80%;
    height: 8px;
    background: #0369a1;
    border-radius: 2px;
    margin-bottom: 4px;
    opacity: 0.7;
}

.ps2-saas .dws {
    width: 45%;
    height: 4px;
    background: #e0f2fe;
    border-radius: 2px;
}

.ps2-saas .feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 0 16px 14px;
}

.ps2-saas .feat {
    background: #f8fafc;
    border-radius: 6px;
    padding: 8px 7px;
}

.ps2-saas .fi {
    width: 18px;
    height: 18px;
    background: #0369a1;
    border-radius: 4px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.ps2-saas .ft {
    width: 85%;
    height: 5px;
    background: #bae6fd;
    border-radius: 2px;
    margin-bottom: 3px;
}

.ps2-saas .ft2 {
    width: 60%;
    height: 4px;
    background: #e0f2fe;
    border-radius: 2px;
}

/* Navigation — white on dark */
.port2-dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .25s ease;
}

.port2-dot-btn.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.port2-arr {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    font-size: 16px;
    backdrop-filter: blur(6px);
}

.port2-arr:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
}

.port2-progress {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    letter-spacing: .05em;
}

.port2-progress strong {
    color: #fff;
}

/* Slides hidden by default; JS drives all transitions via inline styles */
.port2-slide {
    opacity: 0;
    pointer-events: none;
}

/* industry tags — semi-transparent on dark photo bg */
.p2t-health {
    background: rgba(96, 165, 250, 0.18);
    color: #bae6fd;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.p2t-edu {
    background: rgba(167, 139, 250, 0.18);
    color: #ddd6fe;
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.p2t-ecom {
    background: rgba(252, 165, 165, 0.18);
    color: #fecaca;
    border: 1px solid rgba(252, 165, 165, 0.3);
}

.p2t-fin {
    background: rgba(252, 211, 77, 0.18);
    color: #fde68a;
    border: 1px solid rgba(252, 211, 77, 0.3);
}

.p2t-real {
    background: rgba(74, 222, 128, 0.18);
    color: #bbf7d0;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.p2t-saas {
    background: rgba(56, 189, 248, 0.18);
    color: #bae6fd;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Section header on dark bg */
.port2-sec .ab-headline {
    color: #fff;
}

.port2-sec .ab-headline em {
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

.port2-sec .ab-body.text-muted,
.port2-sec p.text-muted {
    color: rgba(255, 255, 255, 0.55) !important;
}

.port2-sec .ab-founded {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* Auto-advance bar — white fill on dark bg */
.port2-autobar {
    background: rgba(255, 255, 255, 0.12);
}

.port2-autobar-fill {
    background: #fff;
}

/* btn-primary-dark override for dark bg */
.port2-sec .btn-primary-dark {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.port2-sec .btn-primary-dark:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    -webkit-text-fill-color: #fff;
    opacity: 1;
}

#s3-bottom {
    padding-top: 50px;
}

#s3-bottom .growth-card {
    background: transparent;

}

#s3-bottom .growth-card .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #032d60;
}

#s3-bottom .growth-card .icon img {
    width: 52px;
}

/* UNUSED: .sec-title — not in homedemo.php
.sec-title {
    background: linear-gradient(90deg, #ea1616 0%, #4b4a5c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
*/


/* UNUSED: .client-card — not in homedemo.php
.client-card {
    position: relative;
}

.client-card::after {
    content: "";
    position: absolute;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #e7e7e7;
}

.client-card::before {
    left: 0;
}

.client-card::after {
    right: 0;
}
*/

/* .main-icon-wrap {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background-color: #f9f9f9;
  } */

/* UNUSED: .growth-card, .highlight-card — not in homedemo.php
.growth-card .icon img {
    width: 39px;
    margin-right: 15px;
}

.growth-card {
    padding: 15px 20px;
    border-radius: 12px;
    transition: 1s ease;
    height: auto !important;
}

.growth-card:hover {
    position: relative;
    transform: translate3d(0, -8px, 0);
}

.growth-card .icon {
    font-size: 18px;
}

.highlight-card {
    background: #B12F2E;
    color: #fff;
    padding: 36px 30px;
}

.highlight-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.highlight-card .icon {
    font-size: 28px;
}
*/

span.sectionDescription-loc.mb-0 {
    top: 0px !important;
}

/* UNUSED: .link-btn-cstm, .highlight-text-blue — not in homedemo.php
.link-btn-cstm a {
    position: relative;
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.link-btn-cstm a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 2px;
    background-color: #5d5d5d;
    transform-origin: left;
    transition: transform 0.3s ease;
}

.link-btn-cstm a:hover::before {
    transform: scaleX(1);
}

.highlight-text-blue {
    position: relative;
    color: #0b58f7;
}

.highlight-text-blue::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: -20px;
    width: 100%;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 20 Q 100 10 195 20' stroke='%230b58f7' stroke-width='3' fill='none'/%3E%3Cpath d='M20 25 Q 100 15 180 25' stroke='%230b58f7' stroke-width='2' fill='none' opacity='0.7'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
}
*/



/* UNUSED: .head-badge-cont — not in homedemo.php
.head-badge-cont {
    position: relative;
    display: inline-block;
}

.head-badge-cont::before {
    content: "\F63B";
    font-family: "bootstrap-icons";
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.head-badge-cont::after {
    content: "\F63B";
    font-family: "bootstrap-icons";
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.head-badge-cont {
    font-size: 16px !important;
    font-weight: 600;
    padding: 5px 15px;
    border: 1px solid #e7e7e7;
    width: fit-content;
    margin: auto;
    border-radius: 25px;
    background: #f4f8fe;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.head-badge-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}
*/


/* UNUSED: .growth-card-edu, .highlight-card-edu — not in homedemo.php
.growth-card-edu .icon img {
    width: 100%;
}

.growth-card-edu:hover {
    position: relative;
    transform: translate3d(0, -8px, 0);
}

.growth-card-edu .icon {
    font-size: 26px;
}

.highlight-card-edu h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

img.img-fluid.form-img-two {
    position: absolute !important;
    right: 0 !important;
}

.highlight-card-edu .icon {
    font-size: 28px;
}

img.img-fluid.form-img-one {
    position: absolute;
    left: 27%;
    bottom: 33px;
}
*/

@media (max-width: 575.98px) {

    .cstm-clss-slide-new-slider1 {
        left: 10px !important;
    }

    .mob-view-edu {
        margin-bottom: 0px !important;
    }

    .growth-card-edu {
        padding-top: 0px !important;
    }

    .cstm-health-clss-ba-content-left h2.boxHeading.mt-5 {
        margin-top: 0px !important;
    }

    p.sectionDescription-loc.mb-0.text-center {
        padding: 0px 10px;
    }

    section.workBgPort {
        padding-bottom: 0px !important;
    }

    section#sec-second-edu {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

@media (min-width: 1500px) and (max-width: 1699px) {

    .cstm-health-clss-ba-overlay.row.align-items-center {
        gap: 60px;
    }

    img.img-fluid.form-img-one {
        position: absolute;
        left: 27%;
        bottom: 33px;
    }

    img.img-fluid.form-img-two {
        width: 20% !important;
        position: absolute !important;
        right: 0 !important;
    }

    .cstm-health-clss-ba-content-left h2.boxHeading.mt-5 {
        margin-top: 0px !important;
    }

    .growth-card-new span.sectionDescription-loc.mb-0 {
        font-size: 12px !important;
    }

}

@media (min-width: 1700px) and (max-width: 1899px) {
    .cstm-health-clss-ba-content-left h2.boxHeading.mt-5 {
        margin-top: 0px !important;
    }

    .cstm-health-clss-ba-overlay.row.align-items-center {
        gap: 60px;
    }

    img.img-fluid.form-img-one {
        position: absolute;
        left: 27%;
        bottom: 33px;
    }

    img.img-fluid.form-img-two {
        width: 18% !important;
        position: absolute !important;
        right: 0 !important;
    }

}

@media (min-width: 1900px) {

    img.img-fluid.form-img-one {
        position: absolute;
        left: 27%;
        bottom: 33px;
    }

    img.img-fluid.form-img-two {
        width: 16% !important;
        position: absolute !important;
        right: 0 !important;
    }

    .cstm-health-clss-ba-overlay.row.align-items-center {
        gap: 60px;
    }
}

.growth-card-new img {
    width: 30px;
}

#customModal .row {
    display: flex;
    align-items: stretch;
}

#customModal .row>div {
    display: flex;
    flex-direction: column;
}

#customModal .left-bg {
    background: url('https://static.janbaskdigitaldesign.com/1775196058_64675.webp') no-repeat center center;
    background-size: cover;
    height: 100%;
    min-height: 500px;
}

.modal-content {
    background: white;
}

#customModal button.btn.btn.btn-dark.mt-2 {
    border-radius: 5px;
}

#customModal {
    /* width: 100vw;
    height: 100vh; */
    background: rgba(55, 55, 55, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#customModal .modal-header.border-0 {
    flex-direction: column;
    align-items: flex-start;
}

#customModal .modal-content {
    border-bottom: 4px solid #3247bc;
    border-radius: 10px;
}

#customModal .modal-dialog {
    min-width: 350px;
    width: 45vw;
    max-width: 45vw;
    height: fit-content;
    /* height: 50vh; */
    margin: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    top: 50% !important;
    position: relative;
}

@media (min-width: 481px) and (max-width: 768px) {
    #customModal #modalDialog {
        top: 35% !important;
    }
}

.modal-content .row {
    position: relative;
}

.modal-header .sectionHeading {
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.3rem
}

#customModal .form-control {
    height: 45px;
    /* box-shadow: 0 8px 2px -6px rgb(0 0 0 / 14%); */
    border-radius: 0;
    border: 1px solid #dadada;
}

button.btn-close {
    position: absolute;
    z-index: 1;
    right: 12px !important;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    opacity: 1;
    color: #dd3535;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    top: 12px !important;
    padding: 4px 8px;
}

/* UNUSED: .consultation-form — not in homedemo.php
.consultation-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
*/

/* UNUSED: .cstm-health-clss-ba-* — not in homedemo.php
.cstm-health-clss-ba-hero {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    background: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cstm-health-clss-ba-hero ul.unordered__list {
    color: white;
    padding-left: 0;
    width: fit-content;
    margin: auto;
    text-align: left;
}

.cstm-health-clss-ba-hero li {
    list-style: none;
    position: relative;
    padding-left: 28px;
}

.cstm-health-clss-ba-hero li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-weight: bold;
}

.cstm-health-clss-ba-img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.cstm-health-clss-ba-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
}

.cstm-health-clss-ba-btn {
    background: #fff;
    color: #000;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 500;
    border: none;
    transition: 0.3s;
}

.cstm-health-clss-ba-btn:hover {
    background: #f1f1f1;
}

.cstm-health-clss-ba-subtext {
    color: #ffc107;
    font-size: 0.95rem;
    margin-top: 6px;
}

.cstm-health-clss-ba-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

@media (max-width: 992px) {
    .cstm-health-clss-ba-content-left { text-align: left; }
    .cstm-health-clss-ba-img { height: 450px; }
    .cstm-health-clss-ba-content h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .cstm-health-clss-ba-content-left { left: 2%; text-align: left; }
    .cstm-health-clss-ba-img { height: 380px; }
    .cstm-health-clss-ba-content h1 { font-size: 1.7rem; }
    .cstm-health-clss-ba-btn { padding: 10px 18px; font-size: 0.9rem; }
}

@media (max-width: 576px) {
    .cstm-health-clss-ba-container { padding-top: 0 !important; margin-top: 0 !important; }
    .cstm-health-clss-ba-overlay { flex-direction: column !important; align-items: center; justify-content: center; position: relative; padding: 10px 0px !important; }
    .cstm-health-clss-ba-hero { height: auto !important; width: 95%; padding-inline: 10px; }
    .cstm-health-clss-ba-content-left { text-align: left; }
    .cstm-health-clss-ba-img { height: 320px; }
    .cstm-health-clss-ba-content h1 { font-size: 1.4rem; }
    .cstm-health-clss-ba-subtext { font-size: 0.8rem; }
}

.container.py-4.cstm-health-clss-ba-container.mb-5 {
    padding-bottom: 0px !important;
    margin-bottom: 80px !important;
}
*/

/* UNUSED: .custom-heading3, .tab-content.active-tab, .growth-card-tab-three, .highlight-card-edu — not in homedemo.php
.custom-heading3 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d4d4d;
    text-transform: uppercase;
    font-size: 14px;
}

.custom-heading3::before,
.custom-heading3::after {
    content: "";
    width: 70px;
    border-bottom: 1px solid #4d4d4d !important;
    margin: 0 10px;
}

.tab-content.active-tab {
    display: flex;
}

.growth-card-tab-three .icon img {
    width: 100%;
}

#edusecfive .growth-card-tab-three {
    background: #ffffff;
    border-radius: 10px;
    transition: 1s ease;
    height: 400px !important;
}

.growth-card-tab-three:hover {
    position: relative;
    transform: translate3d(0, -8px, 0);
}

.growth-card-tab-three .icon {
    font-size: 26px;
}

#edusecfive .highlight-card-edu {
    color: #000000;
    padding-bottom: 10px !important;
}

.highlight-card-edu h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.highlight-card-edu .icon {
    font-size: 28px;
}
*/

@media (max-width: 575.98px) {

    #edusecfive .tab-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    #edusecfive .tab-scroll>* {
        flex: 0 0 auto;
    }

    .mobile-view-card {
        display: flex !important;
        gap: 10px;
        justify-content: flex-start !important;
    }

    .mobile-view-card .col-lg-4.col-md-6.col-6.mt-0 {
        border: none !important;
    }

    .link-btn-cstm.text-left.fw-600.pt-3 {
        font-size: 14px !important;
    }

    .mob-view-edu {
        margin-bottom: 0px !important;
        justify-content: left !important;
    }

    .growth-card-tab-three {
        padding-top: 0px !important;
    }

    #edusecfive .growth-card-tab-three {
        height: auto !important;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    section.workBgPort {
        padding-bottom: 0px !important;
    }

    section#sec-second-edu {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

@media (min-width: 1500px) and (max-width: 1699px) {
    #edusecfive .growth-card-tab-three {
        background: #ffffff;
        padding-bottom: 10px !important;
        border-radius: 10px;
        transition: 1s ease;
        height: auto !important;
    }
}

@media (min-width: 1700px) and (max-width: 1899px) {
    #edusecfive .growth-card-tab-three {
        background: #ffffff;
        padding-bottom: 10px !important;
        border-radius: 10px;
        transition: 1s ease;
        height: auto !important;
    }
}

@media (min-width: 1900px) {
    #edusecfive .growth-card-tab-three {
        background: #ffffff;
        padding-bottom: 10px !important;
        border-radius: 10px;
        transition: 1s ease;
        height: auto !important;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}

.cta2-sec {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 96px) 0;
    /* Dark gradient built from the actual logo colors (brand red +
       muted charcoal-slate) instead of an off-brand navy-blue. */
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.12) 0%, transparent 30%),
        radial-gradient(140% 70% at 10% -10%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(150deg, #1c1418 0%, #2a1315 45%, #0a0808 100%);
}

.cta2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: cta2-drift 12s ease-in-out infinite alternate;
}

.cta2-orb-1 {
    width: 480px;
    height: 480px;
    top: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(214, 69, 69, 0.24) 0%, transparent 70%);
}

.cta2-orb-2 {
    width: 360px;
    height: 360px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 185, 22, 0.14) 0%, transparent 70%);
    animation-name: cta2-drift2;
    animation-delay: -6s;
}

.cta2-orb-3 {
    width: 240px;
    height: 240px;
    top: 40%;
    right: 30%;
    background: radial-gradient(circle, rgba(140, 140, 155, 0.18) 0%, transparent 70%);
    animation-delay: -3s;
}

@keyframes cta2-drift {
    from {
        transform: translate(0, 0) scale(1)
    }

    to {
        transform: translate(30px, 20px) scale(1.08)
    }
}

@keyframes cta2-drift2 {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(-24px, -16px)
    }
}

.cta2-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.cta2-inner {
    position: relative;
    z-index: 2;
}

/* Dark glossy background — flip copy to light */
.cta2-sec .ab-headline {
    color: #fff;
}

.cta2-sec .ab-headline em {
    font-style: normal;
    color: #fff;
    background: none;
    -webkit-text-fill-color: initial;
    animation: none;
}

.cta2-sec .cta2-sub {
    color: rgba(255, 255, 255, 0.72);
}

.cta2-sec .cta2-eyebrow {
    color: #ffb916;
}

.cta2-sec .cta2-badge-dot {
    background: #ffb916;
}

.cta2-sec .cta2-proofs li {
    color: rgba(255, 255, 255, 0.85);
}

.cta2-sec .cta2-proofs li::before {
    background-color: rgba(255, 185, 22, 0.14);
    border-color: rgba(255, 185, 22, 0.35);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%23ffb916' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cta2-sec .cta2-ticker-list li {
    color: rgba(255, 255, 255, 0.65);
}

.cta2-sec .cta2-ticker-list li span {
    color: #ffb916;
}

/* Badge */
.cta2-eyebrow.jdd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta2-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #023575;
    animation: cta2-pulse 2s ease-in-out infinite;
}

@keyframes cta2-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .35;
        transform: scale(1.5)
    }
}

/* Heading — use global ab-headline class in HTML */
.cta2-sub {
    font-size: clamp(13px, 1.2vw, 16px);
    color: #000;
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 460px;
}

/* Proof list — checkmark style matching services panel */
.cta2-proofs {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta2-proofs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #000;
    line-height: 1.5;
}

.cta2-proofs li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background-color: rgba(2, 53, 117, 0.08);
    border: 1px solid rgba(2, 53, 117, 0.22);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%23023575' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Social proof */
.cta2-ticker {
    position: relative;
    height: 20px;
    max-width: 480px;
    overflow: hidden;
}

.cta2-ticker-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cta2-ticker-list li {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .5s ease, transform .5s ease;
}

.cta2-ticker-list li.active {
    opacity: 1;
    transform: translateY(0);
}

.cta2-ticker-stars {
    flex-shrink: 0;
    color: #fbbf24;
    font-size: 10px;
    letter-spacing: 1px;
}

.cta2-ticker-list li span {
    flex-shrink: 0;
    color: #023575;
    font-weight: 700;
}


/* Form card */
.cta2-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: clamp(28px, 4vw, 44px);
    box-shadow: 0 8px 40px rgba(2, 53, 117, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.cta2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #023575, transparent);
}

.cta2-card-title.jdd-h2-sm {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    color: #000;
    margin: 0 0 4px;
}

.cta2-card-sub {
    font-size: 13px;
    color: #666;
    margin: 0 0 24px;
}

/* Fields */
.cta2-field {
    position: relative;
    margin-bottom: 14px;
}

.cta2-field-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    pointer-events: none;
    line-height: 1;
    display: flex;
    align-items: center;
}

.cta2-field-icon svg {
    width: 15px;
    height: 15px;
    stroke: #94a3b8;
}

.cta2-input {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px 12px 42px;
    font-size: 14px;
    color: #000;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.cta2-input::placeholder {
    color: #94a3b8;
}

.cta2-input:focus {
    border-color: #023575;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(2, 53, 117, 0.08);
}

.cta2-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.cta2-select option {
    background: #fff;
    color: #000;
}

/* Submit button */
.cta2-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(120deg, #AA2121 0%, #D64545 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(170, 33, 33, 0.30);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.cta2-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform .5s ease;
}

.cta2-btn:hover::after {
    transform: translateX(100%);
}

.cta2-btn:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(170, 33, 33, 0.40);
}

.cta2-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    font-size: 14px;
    transition: transform .2s;
}

.cta2-btn:hover .cta2-btn-arrow {
    transform: translateX(4px);
}

/* Trust row */
.cta2-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.cta2-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: #666;
}

#cta2msg {
    font-size: 13px;
    margin-top: 8px;
    min-height: 18px;
    text-align: center;
    color: #16a34a;
}

@media(max-width:991px) {
    .cta2-sub {
        max-width: 100%;
    }

    .cta2-proofs {
        margin-bottom: 24px;
    }

    .cta2-card {
        margin-top: 32px;
    }
}

/* UNUSED: .growth-card-edu-new, .side-wrap — not in homedemo.php
.growth-card-edu-new {
    border: 2px solid white;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    padding: 15px;
}

.side-wrap {
    position: relative;
}

.side-wrap::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 5px;
    background-color: #020526;
    left: 10%;
    transform: translateX(-50%);
}

.side-wrap::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: grey;
    left: 25%;
    transform: translateX(-50%);
    bottom: -20% !important;
}

.side-wrap::before {
    top: 0;
}

.side-wrap::after {
    bottom: 0;
}
*/

li.list-item.box-heading {
    list-style: disc;
}

/* UNUSED: .boxHeading-loc, .techbox — not in homedemo.php
.boxHeading-loc {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4rem;
    text-transform: capitalize;
}

.techbox {
    display: flex;
    align-items: center;
    position: relative;
}
*/

li#card_2 {
    top: 172px;
}

li#card_3 {
    top: 244px;
}

li#card_4 {
    top: 324px;
}

/* UNUSED: .acco-img-wrap, .service-icon, .card_main_second, .card__content_new, .card__media, .card__text — not in homedemo.php
.acco-img-wrap {
    background: #eefaff;
}

.acco-img-wrap {
    padding: 5px 14px;
    border-radius: 3px;
    margin-right: 10px;
    width: 63px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon img {
    width: 40px;
}

.card_main_second {
    position: static !important;
    top: 100px;
    list-style: none;
    padding-bottom: 0px;
}

.right-wrap .card__content_new {
    padding: 0px 110px 0px 20px;
}

.card__content_new {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px 20px 0px 110px;
    background: #fff;
    overflow: visible;
    height: 170px;
}

.right-wrap .card__media {
    right: -10px;
    left: auto;
}

.card__media {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card__media img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.card__text {
    flex: 1;
}
*/

#cards {
    list-style: none;
    padding: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {

    /* Your styles here */
    .paypro-solutions-section .card__media {
        display: none;
    }

    .paypro-solutions-section .card__content_new {
        align-items: flex-start;
    }
}


/* Responsive Styles */
@media (max-width: 991.98px) {
    .paypro-solutions-section .col-lg-6 {
        position: static !important;
    }

    .card__content_new {
        flex-direction: column;
        padding: 16px;
        gap: 10px;
        text-align: left;
    }

    .card_main_second {
        position: static !important;
    }

    .mob-view-form {
        display: none;
    }

    .cstm-health-clss-ba-hero {
        height: 260px;
    }
}

@media (max-width: 767.98px) {

    .mob-view-sec {
        position: relative !important;
        top: 0px !important;
    }

    /* .mob-sec-btn {
      left: 65px !important;
    } */

    .paypro-solutions-section .col-lg-6,
    .paypro-solutions-section .col-12 {
        width: 100%;
        max-width: 100%;
    }

    .card__content_new {
        flex-direction: column;
        padding: 12px;
        gap: 8px;
        text-align: left;
        margin: 3px 15px;
    }

    .card_main_second {
        margin-bottom: 16px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon img {
        width: 32px;
    }
}

@media (max-width: 575.98px) {


    .mob-card {
        margin-bottom: 15px;
    }

    section.paypro-solutions-section.paypro-home-solutions-section {
        padding-top: 30px !important;
        padding-bottom: 50px !important;
    }

    div#left-side-mob-edu ul#cards {
        margin-bottom: 0px !important;
    }

    .paypro-solutions-section .row.justify-content-center.align-items-start {
        gap: 0px !important;
    }

    .paypro-solutions-section p.btnRed-bg.mb-0.mob-sec-btn {
        margin-top: 20px !important;
        margin: auto !important;
        margin-bottom: 20px !important;
    }

    .card__media {
        display: none;
    }

    .cstm-health-sec-four-btm-container {
        display: none;
    }

    .card__content_new {
        padding: 8px;
        gap: 6px;
        margin: 5px 15px;
    }

    .hero-button .work-btn {
        /* font-size: 1rem; */
        padding: 8px 16px;
    }
}

/* Only enable sticky on large screens */
@media (min-width: 992px) {
    .paypro-solutions-section .col-lg-6:first-child {
        position: sticky !important;
        top: 100px;
    }

    .card_main_second {
        position: static !important;
        top: 100px;
    }
}

section.paypro-solutions-section.paypro-home-solutions-section {
    padding-bottom: 0px;
}

@media (min-width: 1500px) {
    .paypro-solutions-section .container {
        max-width: 94%;
        width: 94%;
    }
}

/* UNUSED: .cstm-clss-slide-new-cta-btn, .tech-card, #sliderProt — not in homedemo.php
.cstm-clss-slide-new-cta-btn {
    background: #fff;
    color: #023575;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.tech-card {
    display: flex;
    align-items: center;
}

#sliderProt .slick-prev:before,
#sliderProt .slick-next:before {
    content: none;
}

#sliderProt .slick-prev:hover,
#sliderProt .slick-next:hover {
    opacity: 1;
}

#sliderProt .slick-prev {
    left: 8px;
    height: 44px;
    position: absolute;
    z-index: 1;
    background: #000000 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") no-repeat center;
    width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .6;
    background-size: 20px;
}

#sliderProt .slick-next {
    height: 44px;
    position: absolute;
    z-index: 1;
    background: #000000 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") no-repeat center;
    width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .6;
    background-size: 20px;
}
*/

/* UNUSED: .workBg, .PortfolioTxt, .cstm-clss-slide-new-card1, .project-cta-content — not in homedemo.php
.workBg .sectionHeading {
    font-size: 3.8rem;
    position: relative;
    z-index: 1;
}

.PortfolioTxt {
    font-size: 130px;
    opacity: .24;
    color: #585858;
    position: relative;
    z-index: 0;
    top: 30px;
}

section.workBg {
    height: 490px;
}

.cstm-clss-slide-new-card1 img {
    box-shadow: 0px 2px 18px -1px rgb(0 10 27 / 45%);
    position: relative;
    border-radius: 0px 0px 6px 6px;
    width: 100%;
}

.project-cta-content {
    background: #023575;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 0px 26px;
    text-align: center;
}

.cstm-clss-slide-new-card1.slick-slide {
    padding: 0px 0px;
}

#sliderProt .slick-slide {
    transform: scale(0.8) translateY(40px);
    transition: all 0.4s ease;
    opacity: 0.6;
}

#sliderProt .slick-list {
    overflow: hidden;
}

#sliderProt {
    padding: 40px 0;
}

section.workBg {
    height: auto;
    padding-bottom: 60px;
}

#sliderProt .slick-center {
    transform: scale(1.4) translateY(0);
    opacity: 1;
    z-index: 2;
    position: relative;
}

.slick-list.draggable {
    padding: 20px 0px !important;
}
*/

/* UNUSED: .workBg, .PortfolioTxt, #sliderProt responsive, .hard-bx, .colorLine, .growth-card-slider, .slider-mn-wrap, .top-slider, .brand-big — not in homedemo.php
@media (max-width: 768px) {
    .workBg .sectionHeading { font-size: 2rem !important; }
    .portRightCTA { padding: 35px 0; }
    #sliderProt .slick-next { right: 8px !important; }
    .PortfolioTxt { font-size: 90px; }
}

.hard-bx {
    width: 100%;
    float: left;
    position: relative;
    border: 1px solid #eee;
    text-align: center;
    background: #fff;
    height: initial;
    padding: 30px 43px;
    margin-bottom: 30px;
}

.hard-bx .boxHeading {
    min-height: 41px;
}

.colorLine {
    width: 119px;
    background: linear-gradient(45deg, #673ab7, #ff0505);
    height: 2.8px;
    display: inline-block;
}

.hard-bx .podt {
    font-size: 45px;
    line-height: 48px;
    font-weight: 800;
    color: #273792;
    margin: 0 auto;
    display: table;
}

.podt span {
    display: block;
    float: left;
}

.growth-card-slider {
    border: 1px solid grey;
    padding: 10px;
    border-radius: 10px;
}

.slider-mn-wrap {
    border: 1px solid white;
    border-radius: 15px;
}

.top-slider {
    border-bottom: 1px solid white;
}

.brand-big .slick-slide img {
    width: 108px;
}
*/

/* #homesec-2:after {
      position: absolute;
      content: '';
      top: 0;
      width: 44%;
      height: 610px;
      background: linear-gradient(rgb(0 0 0/81%) 100%, rgba(0, 0, 0, 0.7) 100%), url(https://static.janbaskdigitaldesign.com/1768564027_office-home.webp) top center no-repeat;
      background-size: cover;
   } */

/* UNUSED: .whybx, .middle-divider, .video-section2, .parent-slider4, .home-form-jdd, .Wishlist-form — not in homedemo.php
.whybx {
    position: relative;
    z-index: 1;
    padding-right: 10px;
}

.middle-divider {
    position: relative;
}

.middle-divider::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: grey;
}

.middle-divider::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: grey;
}

.video-section2 video {
    width: 338px;
    height: 100%;
    border-radius: 0 28px 0 0;
    position: relative;
    top: 4px;
}

.parent-slider4 img {
    width: 104px;
}

form.home-form-jdd .form-control {
    padding: 8px 10px;
    box-shadow: none;
    border: 1px solid #e8e8e8;
    border-radius: 0;
}

form.home-form-jdd textarea.form-control {
    height: 94px;
}

.Wishlist-form {
    padding: 25px 25px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
*/

/* UNUSED: .whybx1, .need-website, .need-feild, .why-choose-img-caption — not in homedemo.php
.whybx1 ul.ticklist {
    background: linear-gradient(rgb(0 3 18/61%) 100%, rgb(0 43 126) 100%);
    padding: 32px 16px;
    margin-bottom: 0;
}

.need-website .option-input:checked {
    background: #0040bb;
    top: 0px;
}

.need-website input[type=checkbox] {
    top: 0px;
    display: block;
}

.need-website .option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    transition: all .15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
}

.need-website .option-input:checked::before {
    height: 20px;
    width: 20px;
    position: absolute;
    content: '\2713';
    display: inline-block;
    font-size: 16px;
    text-align: center;
    line-height: 20px;
}

.need-website .option-input:checked::after {
    -webkit-animation: click-wave .65s;
    -moz-animation: click-wave .65s;
    animation: click-wave .65s;
    background: #0040bb;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}

.need-feild {
    padding: 8px 10px;
    border: 1px solid #e8e8e8;
    background: #fff;
}

.why-choose-img-caption {
    position: absolute;
    top: 0;
    right: -2px;
    -webkit-transform: rotate(90deg) translate(100%, 0);
    -ms-transform: rotate(90deg) translate(100%, 0);
    transform: rotate(90deg) translate(100%, 0);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 10;
    background: #edf0f5;
    padding: 6px 28px;
}

.why-choose-img-caption span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #031026;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
}
*/

.section9 a {
    text-decoration: none !important;
    font-weight: 500;
    color: #092032;
}

a {
    text-decoration: none !important;

    color: #092032;
}

/* UNUSED: .BigLogo, .tools-bx, .icon-bg, .icon-set, .work-card-set, .portfolio_bx — not in homedemo.php
.BigLogo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.tools-bx {
    position: relative;
    margin-left: 28px;
    background: #fff;
    border-radius: 50%;
}

.tools-bx img.img-fluid {
    padding: 4px;
    border-radius: 50%;
    width: 88px;
    height: 88px;
    border: 4px solid #e3e3e3;
}

.tools-bx:after {
    background: linear-gradient(to right, #0b59f0 30%, #673ab7);
    position: absolute;
    content: '';
    top: 50%;
    width: 33px;
    height: 4px;
    left: 88px;
    transform: translate(0, -50%);
}

.tools-bx1:after {
    content: none;
}

.tablinks span.text-white.sectionDescription {
    padding: 0px 8px;
    min-height: 44px;
}

#tabSection:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 24%;
    height: 100vh;
    background: url(https://static.janbaskdigitaldesign.com/1767695911_1767422792_tabBg-1.webp) top right no-repeat;
    background-size: contain;
    background-attachment: fixed;
}

#tabSection:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 34%;
    height: 100vh;
    background: linear-gradient(rgb(0 0 0/84%) 100%, rgba(0, 0, 0, 0.7) 100%), url(https://static.janbaskdigitaldesign.com/1768565674_tabbgimg.webp) top center no-repeat;
    background-size: cover;
}

.icon-set {
    width: 100%;
    text-align: center;
    padding: 14px 8px;
    flex: 0 1 calc(20% - 8px);
    margin: 0px 4px;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 0px 7px 0 rgb(0 0 0 / 8%);
    -moz-box-shadow: 0 0px 7px 0 rgb(0 0 0 / 8%);
    box-shadow: 0 0px 7px 0 rgb(0 0 0 / 8%);
    transition: 1s ease;
    background: #fff;
}

.icon-set:hover {
    position: relative;
    transform: translate3d(0, -8px, 0);
}

.work-card-set {
    display: flex;
    flex-flow: row wrap;
    position: relative;
}

.icon-bg img {
    width: 50px;
}

.portfolio_bx {
    position: relative;
    border: 1px solid #eee;
    padding: 8px;
}

section#homesec-7 div#gallery .portfolio_bx.slick-slide {
    margin: 0 6px;
}

</style><style type="text/css">

.redboxTxt {
    min-height: 189px;
}

div#gal-slide1 img.img-fluid {
    width: 84%;
}

#gal-slide1 ul.slick-dots {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translate(0, -50%);
    display: grid;
    align-content: center;
    justify-content: end;
}

#gal-slide1 ul.slick-dots li {
    cursor: pointer;
    list-style: none !important;
    width: 16px;
    height: 16px;
    margin-bottom: 10px;
    border: 3px solid #d33536;
    border-radius: 50%;
}

.enterpriseLevel-slider img {
    width: 328px;
}

#gal-slide1 ul.slick-dots li.slick-active {
    width: 16px;
    height: 16px;
    margin-bottom: 10px;
    border: 3px solid #000;
    border-radius: 50%;
    background-color: #000;
}

#gal-slide1 .slick-dots li button:before {
    color: transparent;
    padding: 0;
    margin: 0;
    line-height: 0;
    border: 0;
}

div#gallery-view {
    position: relative;
}
*/

.carousel-indicators {
    /* justify-content: left !important; */
    margin-bottom: 0 !important;
    /* padding-left: 60px; */
}

.carousel-indicators {
    margin-left: 0% !important;
    margin-right: 0% !important;
}

section#homesec-5 .small-cont {
    width: max-content;
    color: #fff !important;
    background: #ff9800;
    font-size: 10px;
    position: relative;
    top: 24px;
    left: -15px;
    padding-left: 31px;
    padding-right: 14px;
    border-radius: 0 10px 10px 0;
    line-height: 18px;
}

/* UNUSED: .blog_bg, .blog_hvrbox, .blog_bg2, .blog-featuredbx, .reviewBox, #testimonialFull, .clientName, .texttiImg — not in homedemo.php
.blog_bg {
    min-height: 215px;
}

.blog_hvrbox {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px 18px;
    height: 100%;
    background-size: contain;
    text-align: left;
}

.blog_hvrbox .blog_hvr {
    position: absolute;
    top: 38px;
}

.blog_bg2 {
    background: #0e1543 url(https://static.janbaskdigitaldesign.com/1768566637_blogimg89.webp) no-repeat bottom center;
    height: 476px;
    overflow: hidden;
    position: relative;
    background-size: contain;
}

.blog_bg2 .blog_hvrbox {
    top: 0;
    height: 100%;
    background: 0 0;
    position: relative;
}

.blog_bg2 .blog_hvr {
    position: initial;
    top: 6%;
}

.blog_bg2 .blog_hvrbox .blog_hvr .cont {
    font-size: 13px;
    line-height: 17px;
}

.blog-featuredbx:after {
    position: absolute;
    width: 92%;
    height: 2px;
    border-bottom: 1px dashed #565b79;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.blog-featuredbx {
    position: relative;
}

section#homesec-5 .carousel.slide {
    overflow: hidden;
    position: relative;
}

.reviewBox {
    height: 212px;
}

#testimonialFull .carousel-inner {
    padding: 40px 0px;
}

#testimonialFull .sectionDescription {
    font-size: 17px;
    line-height: 26px;
}

#testimonialFull .sectionDescription {
    position: relative;
}

#testimonialFull .sectionDescription quote {
    font-weight: 700;
    font-size: 70px;
    color: #324dd9;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: -58px;
}

#testimonialFull .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 6px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #2f2f2f;
}

.clientName:after {
    position: absolute;
    background: #d33536;
    width: 4px;
    content: "";
    height: 28px;
    top: 50%;
    left: 0px;
    transform: translate(0, -50%);
}

.clientName {
    position: relative;
    font-size: 16px;
    padding-left: 28px;
}

.texttiImg {
    position: absolute;
    width: 780px;
    top: 0px;
    left: -220px;
}

#testimonialFull .carousel-indicators {
    margin-bottom: -4px;
}
*/

@media screen and (max-width: 480px) {
    #homesec-2:after {
        width: 100%;
        height: 582px;
    }
}

@media screen and (min-width: 500px) and (max-width: 540px) {
    /* #homebannerDesktop .carousel-inner .carousel-item:nth-child(1) {
         background: url(https://static.janbaskdigitaldesign.com/1768566637_newJDD-mobBanner.webp) no-repeat bottom center !important;
         background-size: 100% !important;
      } */
}

@media screen and (min-width: 481px) and (max-width: 767px) {
    #homesec-2:after {
        width: 100%;
        height: 471px;
    }
}

@media screen and (max-width: 767px) {
    /* UNUSED: .hard-bx, .redboxTxt, .tools-bx, .video-section2, .blog_hvrbox, .reviewBox, .icon-set, .work-card-set, #tabSection, .whybx1, .brand-big, .need-feild, .colorLine — not in homedemo.php */
    /* .hard-bx .boxHeading { font-size: .9rem; } */
    /* .redboxTxt { min-height: 246px; } */
    /* .tools-bx:after { content: none; } */
    /* .tools-bx { margin: 5px 8px; } */
    /* .video-section2 video { width: 100%; border-radius: 0px; } */
    /* .blog_hvrbox { width: 98%; } */

    .testimonialBrand {
        flex-flow: column-reverse;
    }

    /* .reviewBox { height: auto; } */
    /* .icon-set .sectionSubDescription { font-size: 13px; line-height: 17px; } */
    /* .icon-bg img { width: 38px; } */
    /* .work-card-set { padding: 0px; } */
    /* .icon-set { width: 30%; padding: 14px 8px; flex: initial; } */

    div#serviceTab1 {
        margin-top: 70px;
    }

    /* #tabSection:after { content: none; } */
    /* #tabSection:before { width: 100%; height: 518px; } */
    /* .whybx1 ul.ticklist { padding: 24px 14px; } */
    /* .whybx1 ul.ticklist img.img-fluid { width: 36px; } */
    /* .brand-big .slick-slide img { width: 70px; } */
    /* .brand-big { } */
    /* .need-feild span { font-size: 14px; } */
    /* .need-feild .sub-cont_txt { font-weight: 500; } */
    /* .colorLine { width: 100%; height: 1.8px; } */
    /* .hard-bx .podt { font-size: 30px; line-height: 38px; } */
    /* .hard-bx { padding: 14px 10px; margin-bottom: 20px; } */

    .stripSection img.img-fluid {
        width: 98px;
    }

    div#homebannerDesktop span.carousel-control-prev-icon,
    div#homebannerDesktop span.carousel-control-next-icon {
        width: 34px;
        height: 34px;
    }

    .homebanner .carousel-indicators .active {
        top: 0px;
    }

    div#homebannerDesktop button.carousel-control-next {
        left: 18%;
        bottom: 140px;
    }

    div#homebannerDesktop button.carousel-control-prev {
        left: 5%;
        bottom: 140px;
    }

    div#carouselExampleIndicators .carousel-indicators {
        bottom: 12px;
        /* left: initial; */
        right: 0px;
        padding-left: 25px;
        /* margin-left: 24px !important; */
    }

    #homebannerDesktop .carousel-indicators button {
        width: auto;
        height: 58px;
        padding: 8px 8px;
    }

    /* div#homebannerDesktop .btn-container {
      flex-direction: column;
    } */
    .border-vertical {
        display: none;
    }

    div#homebannerDesktop .btn-tr-bg {
        width: fit-content;
        font-size: 11px;
    }

    /* .cstm-brdr::before {
      display: none !important;
    }

    .cstm-brdr-rt::before,
    .cstm-brdr-rt::after {
      display: none !important;
    } */

    div#homebannerDesktop div#carouselExampleIndicators .sectionDescription {
        line-height: 1rem;
        font-size: .72rem;
    }

    div#homebannerDesktop div#carouselExampleIndicators .boxHeading {
        font-size: .84rem;
        line-height: 1rem;
    }

    .choosetxt li {
        font-size: 15px;
    }

    .carousel-item img.img-fluid {
        display: none;
    }

    #homebannerDesktop .carousel-inner .carousel-item:nth-child(3) {
        background: url(https://static.janbaskdigitaldesign.com/1768566636_newJDD-mobBanner2.webp) no-repeat bottom center;
        height: 660px;
        background-size: 100%;
    }

    #homebannerDesktop .carousel-inner .carousel-item:nth-child(2) {
        background: url(https://static.janbaskdigitaldesign.com/1768492443_newJDD-mobBanner4.jpg) no-repeat bottom center;
        height: 660px;
        background-size: 100%;
    }

    /* #homebannerDesktop .carousel-inner .carousel-item:nth-child(1) {
         background: url(https://static.janbaskdigitaldesign.com/1768566637_newJDD-mobBanner.webp) no-repeat bottom center;
         height: 660px;
         background-size: 100%;
      } */

    #homebannerDesktop .carousel-caption {
        position: absolute;
        top: 40%;
        text-align: left;
        transform: translate(-50%, -50%);
        width: 100%;
        left: 50%;
        padding: 0 24px;
        height: 258px;
    }

    #homebannerDesktop {
        position: relative !important;
        /* overflow: visible !important; */
        height: 638px !important;
    }

    .carousel-item video#myVideo8 {
        width: 100%;
        background: #02082966;
    }

    span.fa.fa-star {
        font-size: 11px;
    }

    #homebannerDesktop .carousel-indicators {
        bottom: 0;
        right: 0;
        padding: 0;
        margin: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    /* UNUSED: .hard-bx, .Wishlist-form, .video-section2 — not in homedemo.php */
    /* .hard-bx .boxHeading { min-height: 88px; } */
    /* .Wishlist-form { margin-bottom: 20px; } */
    /* .video-section2 video { height: 484px; width: 100%; object-fit: cover; } */

    div#homebannerDesktop button.carousel-control-prev {
        left: -30px;
        bottom: 0px;
    }

    div#homebannerDesktop button.carousel-control-next {
        right: -30px;
        bottom: 0px;
        top: inherit !important;
        left: inherit;
    }

    div#homebannerDesktop span.carousel-control-prev-icon,
    div#homebannerDesktop span.carousel-control-next-icon {
        width: 36px;
        height: 36px;
        top: -82px;
    }

    .homebanner .carousel-indicators .active {
        height: 78px;
        top: 0px;
    }

    div#homebannerDesktop div#carouselExampleIndicators .boxHeading {
        font-size: 1.3rem;
        line-height: 1.9rem;
    }

    .homebanner .carousel-caption {
        width: 96%;
        right: initial;
        left: 26px;
        top: 43%;
    }

    div#carouselExampleIndicators .carousel-indicators {
        bottom: 0px;
        top: 54%;
        display: flex;
        height: fit-content;
        padding-left: 0px;
        overflow-x: scroll;
    }

    div#homebannerDesktop .side-icons {
        display: none !important;
    }

    div#carouselExampleIndicators .icon-wrap {
        width: 250px !important;
    }

    .homebanner .carousel-indicators button {
        width: 250px;
        height: 88px;
    }

    /* #testimonialFull .sectionDescription { font-size: 16px; line-height: 22px; } */
    /* #testimonialFull .carousel-inner { padding: 30px 0px; top: -40px; } */
    /* .redboxTxt { min-height: 140px; } */
    /* .icon-bg img { width: 40px; } */
    /* .activeimg { width: 38px; } */

    .tablinks span.text-white.sectionDescription {
        padding: 0px 0px;
        font-size: 14px;
    }

    .tablinks {
        padding: 10px 4px;
    }

    /* #tabSection:before { width: 42%; } */
    /* #tabSection:after { content: none; } */
    /* .brand-big { margin-top: 70px; } */

    #homesec-2:after {
        width: 100%;
        height: 368px;
    }

    /* .hard-bx .podt { font-size: 36px; line-height: 42px; } */
    /* .hard-bx { padding: 14px 10px; margin-bottom: 0px; } */

    .stripSection img.img-fluid {
        width: 118px;
        filter: brightness(0.2);
    }

    div#homebannerDesktop {
        height: 650px;
        overflow: hidden;
    }
}

@media screen and (min-width:1024px) and (max-width: 1199px) {
    /* UNUSED: .Wishlist-form, .blog_bg2 — not in homedemo.php */
    /* .Wishlist-form .sectionHeading2 { font-size: 22px; line-height: 25px; } */
    /* .blog_bg2 { height: 420px; } */

    div#homebannerDesktop {
        height: 660px;
        overflow: hidden;
    }

    div#homebannerDesktop button.carousel-control-prev {
        left: 0%;
        bottom: 28px;
        ;
    }

    div#homebannerDesktop button.carousel-control-next {
        left: 8%;
        bottom: 28px;
    }

    .homebanner .carousel-caption {
        width: 72%;
        right: initial;
        left: 74px;
        top: 40%;
    }

    div#carouselExampleIndicators .carousel-indicators {
        bottom: 0px;
        top: 47%;
        height: fit-content;
        padding-left: 10px;
        overflow-x: scroll;
    }

    div#carouselExampleIndicators .icon-wrap {
        width: 270px !important;
    }

    div#homebannerDesktop .side-icons {
        top: 10% !important
    }

    .homebanner .carousel-indicators button {
        width: 270px;
    }

    /* #testimonialFull .sectionDescription { font-size: 16px; line-height: 22px; } */
    /* #testimonialFull .carousel-inner { padding: 30px 0px; top: -40px; } */
    /* .redboxTxt { min-height: 140px; } */
    /* .icon-bg img { width: 40px; } */
    /* .activeimg { width: 38px; } */

    .tablinks span.text-white.sectionDescription {
        padding: 0px 0px;
        font-size: 14px;
    }

    .tablinks {
        padding: 10px 4px;
    }

    /* #tabSection:before { width: 35%; } */
    /* #tabSection:after { background-size: 680px; background-position: 400px 0px; } */

    #homesec-2:after {
        width: 44%;
        height: 538px;
    }

    /* .hard-bx .podt { font-size: 36px; line-height: 42px; } */
    /* .hard-bx { padding: 14px 10px; margin-bottom: 0px; } */

    .stripSection img.img-fluid {
        width: 118px;
        filter: brightness(0.2);
    }
}

@media (min-width: 1200px) and (max-width: 1299px) {
    /* UNUSED: .Wishlist-form, .need-feild, .video-section2, form.home-form-jdd, .tools-bx — not in homedemo.php */
    /* .Wishlist-form { padding: 8px 18px; } */
    /* .need-feild label span { font-size: .88rem; } */
    /* .need-feild .sub-cont_txt { margin-bottom: 15px !important; font-size: .91rem; font-weight: 500; } */
    /* .video-section2 video { width: 308px; } */
    /* form.home-form-jdd textarea.form-control { height: 58px; } */
    /* .tools-bx { margin-left: 26px; } */
}

@media (min-width: 1300px) and (max-width: 1399px) {
    /* UNUSED: .Wishlist-form, .need-feild, .video-section2, form.home-form-jdd, .tools-bx — not in homedemo.php */
    /* .Wishlist-form { padding: 8px 18px; } */
    /* .need-feild label span { font-size: .88rem; } */
    /* .need-feild .sub-cont_txt { margin-bottom: 15px !important; font-size: .94rem; font-weight: 500; } */
    /* .video-section2 video { width: 308px; } */
    /* form.home-form-jdd textarea.form-control { height: 58px; } */
    /* .tools-bx { margin-left: 26px; } */

    .homebanner:after {
        height: 123vh;
    }
}

@media (min-width: 1200px) and (max-width: 1480px) {
    .tablinks .sectionDescription {
        line-height: 1.1rem;
        font-size: .9rem;
    }

    /* UNUSED: .blog_bg, .blog_bg2, #testimonialFull, .redboxTxt, .whybx1 — not in homedemo.php */
    /* .blog_bg { min-height: 190px; } */
    /* .blog_bg2 .blog_hvrbox .blog_hvr .cont { font-size: 14px; line-height: 18px; } */

    div#serviceTab1 .col-lg-8.col-md-12.px-lg-5 {
        padding: 0px 20px !important;
    }

    /* #testimonialFull .sectionDescription quote { left: -46px; } */
    /* .redboxTxt { min-height: 220px; } */
    /* .blog_bg2 { height: 424px; } */
    /* .whybx1 ul.ticklist { padding: 28px 16px; } */

    .stripSection img.img-fluid {
        width: 170px;
    }

    div#homebannerDesktop {
        height: 688px;
    }

    div#homebannerDesktop button.carousel-control-next {
        left: 5%;
        bottom: 138px;
    }

    div#homebannerDesktop button.carousel-control-prev {
        left: 0%;
        bottom: 138px;
    }

    .homebanner .carousel-caption {
        width: 728px;
        left: 6%;
        top: 42%;
    }

    div#homebannerDesktop .side-icons {
        top: 10% !important;
    }

    div#carouselExampleIndicators .carousel-indicators {
        bottom: 0px;
        top: 54%;
        height: fit-content;
        padding-left: 10px;
        overflow-x: scroll;
    }

    #homesec-2:after {
        width: 44%;
    }
}

@media screen and (min-width:1900px) {
    /* UNUSED: .redboxTxt, .Wishlist-form, .whybx1, .video-section2, .tools-bx, .texttiImg, .blog_bg, .blog_bg2 — not in homedemo.php */
    /* .redboxTxt { min-height: 260px; } */
    /* .Wishlist-form { padding: 30px 18px; } */
    /* .whybx1 ul.ticklist { padding: 14px 16px; } */
    /* .video-section2 video { width: 377px; } */
    /* .tools-bx img.img-fluid { width: 122px; height: 122px; } */
    /* .tools-bx:after { width: 64px; height: 4px; left: 122px; } */
    /* .texttiImg { width: 740px; } */
    /* .blog_bg { position: relative; min-height: 237px; } */
    /* .blog_bg2 .blog_hvrbox .blog_hvr .cont { font-size: 18px; line-height: 24px; } */
    /* .blog_bg2 { height: 530px; } */

    #homesec-2:after {
        width: 836px;
        height: 710px;
    }

    section#homesec-5 .small-cont {
        font-size: 15px;
        line-height: 24px;
    }

    .activeimg {
        width: 62px;
        /* border: 1px solid white; */
        /* padding: 10px; */
        /* border-radius: 40px; */
    }

    div#homebannerDesktop span.carousel-control-prev-icon,
    div#homebannerDesktop span.carousel-control-next-icon {
        width: 64px;
        height: 64px;
        border-radius: 58px;
    }

    div#carouselExampleIndicators .carousel-indicators {
        bottom: 0px;
        right: 0;
        width: 100%;
        /* margin-left: 60px !important; */
        /* border: 1px solid #424242; */
        /* border-radius: 10px; */
        background: transparent;
    }

    .homebanner .carousel-indicators .active {
        height: 158px;
    }

    .homebanner .carousel-indicators button {
        width: 600px;
    }

    div#homebannerDesktop div#carouselExampleIndicators .boxHeading {
        font-size: 2rem;
        line-height: 2.4rem;
    }

    div#homebannerDesktop div#carouselExampleIndicators .boxHeading {
        font-size: 1.88rem;
        line-height: 2.2rem;
    }
}

.btn-dark {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 8px;
}

/* ══════════════════════════════
     BLOG — magazine layout (4 main + featured sidebar)
  ══════════════════════════════ */
.hblog-sec {
    background: #ffffff;
    padding: clamp(32px, 4.5vw, 56px) clamp(20px, 5vw, 40px);
}

.hblog-head {
    max-width: 720px;
    margin: 0 auto clamp(32px, 5vw, 48px);
    text-align: center;
}

.hblog-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #AA2121;
    margin-bottom: 10px;
}

.hblog-title {
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 800;
    line-height: 1.25;
    color: #0e2f66;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
}

.hblog-title em {
    font-style: normal;
    background: linear-gradient(90deg, #023575 0%, #9e0101 40%, #023575 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

.hblog-sub {
    font-size: 15px;
    line-height: 1.6;
    color: #4e628b;
    margin: 0;
}

/* ── Four cards, single row on desktop ── */
.hblog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1320px;
    margin: 0 auto;
}

.hblog-mcard {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7edf6;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(14, 47, 102, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hblog-mcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px -10px rgba(14, 47, 102, .18);
    border-color: #cfdcf2;
}

/* Full image always visible — natural aspect ratio, never cropped/cut, no letterbox gaps */
.hblog-mcard-img {
    position: relative;
    background: #f3f6fb;
    line-height: 0;
}

.hblog-mcard-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s ease;
}

.hblog-mcard:hover .hblog-mcard-img img {
    transform: scale(1.04);
}

.hblog-mcard-body {
    padding: 18px 18px 20px;
}

.hblog-mcard-title {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.4;
    color: #0e2f66;
    margin: 0 0 10px;
    transition: color .18s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hblog-mcard:hover .hblog-mcard-title {
    color: #AA2121;
}

.hblog-mcard-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: #6b7c99;
}

.hblog-mcard-dot {
    opacity: .6;
}

.hblog-footer-cta {
    text-align: center;
    margin-top: clamp(28px, 4vw, 40px);
}

.hblog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, #AA2121 0%, #D64545 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease;
}

.hblog-view-all:hover {
    color: #fff;
    background: #AA2121;
    transform: translateY(-1px);
}

.hblog-view-all svg {
    transition: transform .2s ease;
}

.hblog-view-all:hover svg {
    transform: translateX(3px);
}

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

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