:root {
    --tech-purple: #8b5cf6;
    --tech-purple-dk: #6d28d9;
    --tech-teal: #14b8a6;
    --tech-cyan: #06b6d4;
    --tech-cyan-dk: #0891b2;
    --tech-dark: #06070f;
    --tech-muted: #06070f;
    --tech-border: rgba(139, 92, 246, 0.12);
    --tech-white: #fff;
    --tech-light: #f8fafc;



    --purple: #8b5cf6;
    --purple-dark: #6d28d9;
    --orange: #f97316;
    --teal: #14b8a6;
    --dark: #06070f;
    --text-muted: #475569;

    --purple-lt: #ede9fe;

    --teal-lt: #ccfbf1;
    --ink: #0f172a;
    --ink-mid: #475569;
    --ink-light: #06070f;
    --bg: #f8f9fc;
    --white: #ffffff;
    --border: #e8eaf0;
}

.section-radius {
    margin: 24px;
    border-radius: 16px;
}

/* ── SECTION ── */
.tech-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 72px 0 0;
    margin: 12px 28px 32px;
    border-radius: 22px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 24px rgba(0, 0, 0, 0.06);
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(167, 139, 250, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 55% 90% at 100% 50%, rgba(20, 184, 166, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(139, 92, 246, 0.06) 0%, transparent 55%),
        #ffffff;
}



.tech-dotgrid {
    position: absolute;
    top: 8%;
    left: 4%;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(rgba(139, 92, 246, 0.18) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: .45;
}





.tech-scroll-line {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, var(--tech-purple), transparent);
    border-radius: 1px;
}

.tech-scroll-arr {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 92, 246, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--tech-purple);
    transition: all .3s;
    text-decoration: none;
}

.tech-scroll-arr:hover {
    background: var(--tech-purple);
    color: #fff;
    border-color: var(--tech-purple);
}

/* container */
.tech-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tech-content-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* chip */
.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(266deg, rgba(255, 102, 51, 0.10) -1%, rgba(109, 44, 249, 0.07) 96%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.14);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tech-cyan-dk);
    margin-bottom: 22px;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.08);
    width: fit-content;
}

.tech-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tech-cyan-dk);
    animation: tech-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes tech-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .32;
        transform: scale(1.65)
    }
}

/* headline */
.tech-headline {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 800;
    color: var(--tech-dark);
    letter-spacing: -3px;
    line-height: 1.08;
    margin-bottom: 0;
}

.tech-headline-plain {
    display: block;
}

.tech-headline-grad {
    display: inline;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-curly {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    color: var(--tech-purple);
    pointer-events: none;
}

/* tagline */
p.tech-tagline {
    max-width: 560px;
    margin: 20px auto 32px;
    font-size: 15px;
    color: #000;
    line-height: 1.72;
}

/* content-bottom */
.tech-content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

/* cta */
.tech-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 32px;
    background: var(--tech-dark);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -.2px;
    border-radius: 100px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all .32s ease;
    box-shadow: 0 14px 36px rgba(6, 7, 15, 0.18);
    border: 5px solid #fff;
    margin-bottom: -28px;
    z-index: 6;
}

.tech-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    opacity: 0;
    transition: opacity .35s;
}

.tech-cta:hover::before {
    opacity: 1;
}

.tech-cta:hover {
    color: #fff;
    box-shadow: 0 20px 48px rgba(139, 92, 246, 0.30);
    transform: translateY(-3px);
}

.tech-cta-txt {
    position: relative;
    z-index: 1;
}

.tech-cta-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    position: relative;
    z-index: 1;
    transition: transform .3s;
}

.tech-cta:hover .tech-cta-circle {
    transform: translateX(5px);
}

/* image box */
.tech-img-box {
    position: relative;
    z-index: 5;
    margin-bottom: 30px;
}

.tech-img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.10);
}






/* ══════════════════════════════════════
             SECTION — refined about
          ══════════════════════════════════════ */
.tech-about {
    position: relative;
    padding: 0 0;
    background: #ffffff;
    overflow: hidden;
    margin: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    margin: 0px 25px;
    border-radius: 22px;
}

.tech-about-wrap {
    /* max-width: 1320px; */
    margin: 0 auto;
    padding: 0 24px 0 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: stretch;
}

/* decoration ornament */
.tech-about-decor {
    position: absolute;
    top: 15%;
    right: 150px;
    width: 40px;
    height: 20px;
    background: #80ffe1;
    border-radius: 0 0 40px 40px;
    transform: rotate(-30deg);
    opacity: 0.8;
}

/* ══════════════════════════════════════
             LEFT — Large Image
          ══════════════════════════════════════ */
.tech-about-img-wrap {
    width: 100%;
}

.tech-about-img-main {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ══════════════════════════════════════
             RIGHT — Content
          ══════════════════════════════════════ */
.tech-about-content {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 24px;
}

/* ── HEADER SYNCED FROM CAMPAIGN PAGE ── */
.pk-header {
    text-align: left;
    max-width: 660px;
    margin-bottom: 25px;
}

.pk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(20, 184, 166, 0.06));
    border: 1.5px solid rgba(139, 92, 246, 0.16);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tech-purple);
    margin-bottom: 24px;
}

.pk-dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    animation: tech-pulse 2s infinite;
    flex-shrink: 0;
}

.pk-title {
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 900;
    color: var(--tech-dark);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.pk-title-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pk-subtitle {
    font-size: 15px;
    color: var(--tech-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.pk-title-bar {
    width: 56px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--tech-purple), var(--tech-teal));
    margin: 0;
}

/* BOTTOM GRID */
.tech-about-bottom {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

/* THUMBS */
.tech-thumb-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-thumb {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
}

.tech-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FEATURES */
.tech-feat-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tech-feat-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.tech-feat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-feat-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.tech-feat-desc {
    font-size: 13px;
    color: #000;
    line-height: 1.6;
}



/****** SERVICE SECTION CSS **********/
.service-area {
    padding-top: 72px;
    padding-bottom: 72px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;

    border-radius: 22px;
}

.service-area .title-area {
    margin-bottom: 60px;
    text-align: center;
}

.service-area .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tech-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.service-area .sub-title:before {
    content: "";
    width: 12px;
    height: 12px;
    background: #80ffe1;
    border-radius: 3px;
    display: inline-block;
}

.service-area .sub-title:after {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--tech-purple);
    border-radius: 3px;
    display: inline-block;
}

.service-area .sec-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.service-area .sec-title img {
    width: 35px;
    vertical-align: middle;
    margin-left: 10px;
}

.service-card12 {
    border-radius: 20px;
    background: #f8fafc;
    border-style: solid;
    border-color: #e2e8f0;
    border-width: 1.5px 3px 3px 1px;
    padding: 45px 35px;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card12:hover {
    border-color: var(--tech-purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.service-card12 .box-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.service-card12 .box-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.service-card12 .box-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.service-card12 .box-title span {
    display: block;
}

.service-card12 .box-text {
    font-size: 15px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 35px;
    flex-grow: 1;
}

.service-card12 .link-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--tech-purple);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-card12 .link-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}



.service-card12:hover .box-icon {
    background: var(--tech-purple);
    border-color: var(--tech-purple);
}

.service-card12:hover .box-icon img {
    filter: brightness(0) invert(1);
}

.service-card12:hover .link-btn i {
    transform: translate(3px, -3px);
}

.service_header .pk-header {
    width: 100%;
    max-width: 100%;
    text-align: center;
}


/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.va-devices-section {
    position: relative;
    padding: 72px 0;
    background: #ffffff;
    overflow: hidden;
    margin: 0px 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 22px;
}

/* Subtle mesh background */
.va-devices-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 50%, rgba(139, 92, 246, 0.045) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 90% 30%, rgba(20, 184, 166, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.va-devices-container {
    /* max-width: 1320px; */
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* ══════════════════════════════════════
   LEFT — CONTENT
══════════════════════════════════════ */
.va-devices-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Eyebrow */
.va-devices-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(20, 184, 166, 0.06));
    border: 1.5px solid rgba(139, 92, 246, 0.18);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tech-purple);
    margin-bottom: 26px;
    width: fit-content;
}

.va-devices-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    animation: va-pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes va-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

/* Title */
.va-devices-title {
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 900;
    color: var(--tech-dark);
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0 0 20px;
}

.va-devices-title-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider bar */
.va-devices-bar {
    width: 56px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--tech-purple), var(--tech-teal));
    margin-bottom: 28px;
}

/* Description */
.va-devices-desc {
    font-size: 15px;
    color: var(--tech-dark);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

/* Stats row */
.va-devices-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.va-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.va-stat-number {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(120deg, var(--tech-purple), var(--tech-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.va-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--tech-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button */
.va-devices-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.28);
    letter-spacing: 0.3px;
}

.va-devices-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(139, 92, 246, 0.38);
}

.va-devices-cta svg {
    transition: transform 0.25s;
}

.va-devices-cta:hover svg {
    transform: translateX(4px);
}

/* ══════════════════════════════════════
   RIGHT — 4 DEVICE BOXES GRID
══════════════════════════════════════ */
.va-devices-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.va-device-card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid rgba(139, 92, 246, 0.28);
    border-radius: 20px;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s cubic-bezier(.22, .68, 0, 1.2),
        box-shadow 0.3s ease,
        border-color 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.va-device-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04), rgba(20, 184, 166, 0.03));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}

.va-device-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.28);
}

.va-device-card:hover::before {
    opacity: 1;
}

/* Top accent line per card */
.va-device-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--tech-purple), var(--tech-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.va-device-card:hover::after {
    transform: scaleX(1);
}

/* Card — image box */
.va-device-img-wrap {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.va-device-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.va-device-card:hover .va-device-img-wrap img {
    transform: scale(1.06);
}

/* Fallback icon (SVG inline) when no img */
.va-device-icon-fallback {
    width: 64px;
    height: 64px;
    color: var(--tech-purple);
    opacity: 0.7;
}

/* Card badge */
.va-device-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
}

/* Card content */
.va-device-body {
    position: relative;
    z-index: 1;
    width: 100%;
}

.va-device-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--tech-dark);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.va-device-desc {
    font-size: 12.5px;
    color: var(--tech-dark);
    line-height: 1.65;
}

/* Card icon chip */
.va-device-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(20, 184, 166, 0.06));
    border: 1px solid var(--tech-border);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--tech-purple);
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.va-device-chip svg {
    width: 12px;
    height: 12px;
}



/* ══════════════════════════
   SECTION
══════════════════════════ */
.va-tabs-section {
    position: relative;
    padding: 70px 0 70px;
    background: #f8fafc;
    overflow: hidden;
    margin: 25px;
    border-radius: 22px;
}

/* Mesh BG */
.va-tabs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 60% at 50% 0%, rgba(139, 92, 246, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 85% 80%, rgba(20, 184, 166, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative floating orbs */
.va-tabs-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.va-tabs-orb-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
}

.va-tabs-orb-2 {
    width: 220px;
    height: 220px;
    bottom: -60px;
    right: -40px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08), transparent 70%);
}

.va-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ══════════════════════════
   HEADER
══════════════════════════ */
.va-tabs-header {
    text-align: center;
    margin-bottom: 52px;
}

.va-tabs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.09), rgba(20, 184, 166, 0.07));
    border: 1.5px solid rgba(139, 92, 246, 0.18);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tech-purple);
    margin-bottom: 22px;
}

.va-tabs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    animation: tp-pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes tp-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.55;
    }
}

.va-tabs-title {
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 900;
    color: var(--tech-dark);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.va-tabs-title-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.va-tabs-subtitle {
    font-size: 15px;
    color: var(--tech-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ══════════════════════════
   TAB PILLS NAV
══════════════════════════ */
.va-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.va-tab-btn {
    position: relative;
    background: #ffffff;
    border: 1.5px solid rgba(139, 92, 246, 0.14);
    border-radius: 50px;
    padding: 11px 26px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tech-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.va-tab-btn .tab-icon {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.va-tab-btn:hover {
    border-color: var(--tech-purple);
    color: var(--tech-purple);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.12);
}

.va-tab-btn:hover .tab-icon {
    opacity: 0.8;
}

.va-tab-btn.active {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.32);
    transform: translateY(-1px);
}

.va-tab-btn.active .tab-icon {
    opacity: 1;
    filter: brightness(10);
}

/* ══════════════════════════
   TAB PANEL CARD
══════════════════════════ */
.va-tabs-panel-wrap {
    position: relative;
}

.va-tab-panel {
    display: none;
    animation: tp-fadein 0.45s ease;
}

.va-tab-panel.active {
    display: block;
}

@keyframes tp-fadein {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.va-tab-card {
    background: #ffffff;
    border: 1.5px solid rgba(139, 92, 246, 0.10);
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 420px;
    position: relative;
}

/* Left gradient strip */
.va-tab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--tech-purple), var(--tech-teal));
    border-radius: 28px 0 0 28px;
}

/* ══ LEFT: Visual ══ */
.va-tab-visual {
    position: relative;
    background-image: url('../../images/tech-assistance/identify-device-problems-with-experts.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

/* Premium Gradient Overlay */
.va-tab-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.45) 0%, rgba(20, 184, 166, 0.25) 100%);
    z-index: 1;
}

/* Radial light effect on top of overlay */
.va-tab-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    z-index: 2;
}

/* Big illustration / number */
.va-tab-illus {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.va-tab-big-icon {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
    animation: tp-float 3s ease-in-out infinite;
}

@keyframes tp-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.va-tab-big-icon svg {
    width: 68px;
    height: 68px;
    color: #fff;
}


/* ══ RIGHT: Content ══ */
.va-tab-content {
    padding: 52px 52px 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.va-tab-content-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(20, 184, 166, 0.06));
    border: 1.5px solid rgba(139, 92, 246, 0.18);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--tech-purple);
    width: fit-content;
}

.va-tab-content-title {
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 900;
    color: var(--tech-dark);
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.va-tab-content-title span {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.va-tab-content-desc {
    font-size: 15px;
    color: var(--tech-muted);
    line-height: 1.8;
    max-width: 460px;
}

/* Bullet points */
.va-tab-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.va-tab-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.va-bullet-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.va-bullet-check svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

.va-bullet-text {
    font-size: 14px;
    color: #000;
    line-height: 1.65;
    font-weight: 500;
}

/* Divider */
.va-tab-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--tech-border), transparent);
}

/* CTA row */
.va-tab-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.va-tab-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.28);
    letter-spacing: 0.2px;
    border: none;
    cursor: pointer;
}

.va-tab-cta-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 14px 32px rgba(139, 92, 246, 0.38);
}

.va-tab-cta-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s;
}

.va-tab-cta-btn:hover svg {
    transform: translateX(4px);
}

.va-tab-cta-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--tech-purple);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.va-tab-cta-link:hover {
    gap: 10px;
}

.va-tab-cta-link svg {
    width: 14px;
    height: 14px;
}

/* ══════════════════════════
   BOTTOM STATS STRIP
══════════════════════════ */
.va-tabs-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 52px;
    background: #fff;
    border: 1.5px solid rgba(139, 92, 246, 0.10);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.va-stat-item {
    flex: 1;
    text-align: center;
    padding: 28px 20px;
    position: relative;
}

.va-stat-item+.va-stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(139, 92, 246, 0.12);
}

.va-stat-num {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(120deg, var(--tech-purple), var(--tech-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.va-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--tech-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}




/* ══════════════════════════════════════════════════════
       CTA BAND
     ══════════════════════════════════════════════════════ */
.cta-band {
    position: relative;
    padding: 100px 0 96px;
    background-image:
        linear-gradient(135deg, rgba(10, 6, 30, 0.82) 0%, rgba(12, 8, 35, 0.75) 50%, rgba(8, 20, 40, 0.80) 100%),
        url('../../images/tech-assistance/stop-struggling-with-device-problems.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 22px;
    margin: 25px;
}



/* ── grid-line overlay ── */
.ctab-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
    z-index: 1;
}

/* ── dashed rings ── */
.ctab-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(139, 92, 246, 0.18);
    pointer-events: none;
    z-index: 1;
}

.ctab-ring1 {
    width: 480px;
    height: 480px;
    top: -200px;
    right: 80px;
    animation: ctabRingSpin 18s linear infinite;
}

.ctab-ring2 {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: 120px;
    border-color: rgba(20, 184, 166, 0.14);
    animation: ctabRingSpin 24s linear infinite reverse;
}

@keyframes ctabRingSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── inner wrapper ── */
.ctab-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ── eyebrow ── */
.ctab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.30);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fb923c;
    margin-bottom: 28px;
}

.ctab-eyebrow i {
    font-size: 10px;
    animation: ctabBolt .9s alternate infinite;
}

@keyframes ctabBolt {
    to {
        opacity: .5;
        transform: scale(1.3);
    }
}

/* ── title ── */
.ctab-title {
    font-size: clamp(28px, 3.6vw, 52px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.12;
    margin-bottom: 20px;
}

.ctab-title-hi {
    background: linear-gradient(120deg, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ctab-title-accent {
    background: linear-gradient(120deg, #fb923c, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── subtitle ── */
.ctab-sub {
    font-size: 16px;
    color: #fff;
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 36px;
}

.ctab-sub strong {
    font-weight: 700;
}

/* ── social proof ── */
.ctab-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50px;
    padding: 10px 24px;
    backdrop-filter: blur(8px);
}

.ctab-av-row {
    display: flex;
}

.ctab-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    margin-right: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
}

.ca1 {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.ca2 {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.ca3 {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.ca4 {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.8);
}

.ctab-proof-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 14px;
}

.ctab-proof-stars i {
    font-size: 11px;
    color: #fbbf24;
}

.ctab-proof-stars span {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin-left: 5px;
}

.ctab-proof-txt {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.ctab-proof-txt i {
    color: #4285F4;
}

.ctab-proof-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

/* ── buttons ── */
.ctab-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

/* primary */
.ctab-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--tech-purple) 0%, var(--tech-purple-dk) 100%);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 36px rgba(139, 92, 246, 0.40), 0 0 0 0 rgba(139, 92, 246, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ctab-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--tech-teal) 0%, #0d9488 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ctab-btn-primary:hover::before {
    opacity: 1;
}

.ctab-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(139, 92, 246, 0.50);
    color: #fff;
    text-decoration: none;
}

.ctab-btn-primary span {
    position: relative;
    z-index: 1;
}

.ctab-btn-arr {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ctab-btn-primary:hover .ctab-btn-arr {
    transform: translateX(4px);
}

/* ghost */
.ctab-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ctab-btn-ghost i {
    font-size: 13px;
    color: var(--tech-teal);
}

.ctab-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── trust strip ── */
.ctab-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.ctab-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.ctab-trust i {
    color: var(--tech-teal);
    font-size: 12px;
}



/* ══════════════════════════════════
         TESTIMONIALS SECTION — Inner Layout
      ══════════════════════════════════ */

/* ══════════════════════════════════
         TESTIMONIALS SECTION — Inner Layout
      ══════════════════════════════════ */

/* Section container */
.testi-section {
    padding: 100px 0px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    margin: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

/* decorative top-left shape */
.testi-section .shape-23 {
    position: absolute;
    top: 0;
    left: 0;
    width: 520px;
    height: 520px;
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

/* TOP ROW */
.top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

/* eyebrow dots */
.testi-section .eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
}

.testi-section .eyebrow .dot2 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.testi-section .eyebrow .dot3 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e5e7eb;
}

/* main heading */
.main-title {
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
    line-height: 1.08;
}

.main-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* lets-talk right col */
.lets-talk-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 6px;
}

.arc-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -4px;
}

.arc-row svg {
    width: 68px;
    opacity: 0.40;
}

.lets-talk-line {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lets-talk-text {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    color: var(--purple);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lets-talk-text .handshake {
    font-style: normal;
    font-size: 26px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.contact-btn:hover {
    color: #fff;
    background: var(--purple);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.lets-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 320px;
    text-align: right;
}

/* MAIN GRID */
.testi-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 22px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Rating Card */
.rating-card {
    background: linear-gradient(160deg, #f3f0ff 0%, #ede9fe 100%);
    border-radius: 24px;
    padding: 40px 30px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(139, 92, 246, 0.10);
}

.rating-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-20.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 180px;
    opacity: 0.20;
    pointer-events: none;
}

.big-rating {
    font-size: 96px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -6px;
    line-height: 1;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.avatar-stack {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-right: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    z-index: 4;
}

.av2 {
    background: linear-gradient(135deg, #f97316, #fb923c);
    z-index: 3;
}

.av3 {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    z-index: 2;
}

.av4 {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    z-index: 1;
}

.client-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.client-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.rating-tagline {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.35s;
    box-shadow: 0 8px 22px rgba(139, 92, 246, 0.35);
    position: relative;
    z-index: 1;
}

.book-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), #fb923c);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

/* Right panel */
.testi-right {
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    border-radius: 24px;
    padding: 36px 32px 40px;
    position: relative;
    overflow: hidden;
}

/* swiper */
.testi-swiper {
    overflow: visible !important;
    position: relative;
    z-index: 2;
}

.swiper-slide {
    height: auto;
}

/* testi card */
.testi-card {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 26px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.80);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.16);
}

/* dot indicator */
.card-indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--purple);
    margin-bottom: 16px;
    position: relative;
}

.card-indicator::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 92, 246, 0.25);
}

.card-indicator.teal {
    background: var(--teal);
}

.card-indicator.teal::after {
    border-color: rgba(20, 184, 166, 0.25);
}

.card-indicator.orange {
    background: var(--orange);
}

.card-indicator.orange::after {
    border-color: rgba(249, 115, 22, 0.25);
}

/* card text */
.card-quote {
    font-size: 14px;
    line-height: 1.80;
    color: #374151;
    flex: 1;
    margin-bottom: 24px;
}

/* author */
.card-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.c-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2.5px solid rgba(139, 92, 246, 0.2);
}

.c-avatar-fb {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.card-author.right-author {
    flex-direction: row-reverse;
    text-align: right;
}

.card-author.right-author .author-info {
    text-align: right;
}

.c-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--purple);
    letter-spacing: -0.3px;
    margin-bottom: 2px;
}

.c-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* star rating */
.card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.r-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.stars {
    display: flex;
    gap: 3px;
}

.st {
    width: 16px;
    height: 16px;
    background: var(--orange);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.st.dim {
    background: rgba(249, 115, 22, 0.25);
}

/* nav buttons */
.nav-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark);
    border: none;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.nav-btn:hover {
    background: var(--purple);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.40);
    transform: scale(1.08);
}




/* --------------------------------------
         SECTION: FAQ
      -------------------------------------- */
.faq-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 22px;
    margin: 25px;
}

.faq-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.faq-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.05);
    top: -100px;
    left: -150px;
}

.faq-orb-2 {
    width: 450px;
    height: 450px;
    background: rgba(20, 184, 166, 0.04);
    bottom: -150px;
    right: -100px;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 24px;
}

.faq-dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
    position: relative;
}

.faq-dot-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.faq-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.faq-title-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--teal));
    border-radius: 2px;
    margin: auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #f0eeff;
    border-radius: 20px;
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.03);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.faq-item.active {
    border-color: var(--purple);
    background: linear-gradient(135deg, #ffffff, rgba(139, 92, 246, 0.02));
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s;
}

.faq-item.active .faq-question span {
    color: var(--purple);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f0ff;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--purple);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.faq-footer-cta {
    margin-top: 50px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-footer-cta p {
    margin: 0;
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

.faq-cta-link {
    color: var(--purple);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.faq-cta-link:hover {
    gap: 12px;
    color: var(--purple-dark);
}


/* =========================================
   NEW: TECH PLANS SECTION STYLES
========================================= */


.plans-section {
    padding: 70px 0 70px;
    background: var(--bg);
    position: relative;
    margin: 25px;
    border-radius: 22px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 22px;
    padding: 8px 18px;
    border-radius: 100px;
    background: var(--purple-lt);
}

.eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple);
}

.section-title {
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section-title .grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-bar {
    width: 48px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--purple), var(--teal));
    margin: 22px auto 0;
}

/* GRID */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* CARD */
.plan-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 52px 46px 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 72px rgba(124, 58, 237, 0.09);
    border-color: rgba(124, 58, 237, 0.22);
}

/* top accent strip on hover */
.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, var(--purple), var(--teal));
    opacity: 0;
    transition: opacity 0.3s;
}

.plan-card:hover::after,
.plan-card.featured::after {
    opacity: 1;
}

/* featured subtle tint */
.plan-card.featured {
    border-color: rgba(124, 58, 237, 0.2);
    background: linear-gradient(155deg, #fdfcff 0%, #f3f0ff 100%);
}

/* BADGE */
.badge {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
}

.badge-flex {
    background: #f1f5f9;
    color: var(--ink-mid);
    border: 1px solid var(--border);
}

.badge-pop {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
}

/* ICON */
.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 32px;
    flex-shrink: 0;
}

.icon-default {
    background: var(--purple-lt);
    color: var(--purple);
}

.icon-featured {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.22);
}

/* TEXT */
.plan-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.plan-tagline {
    font-size: 15px;
    color: var(--ink-light);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 400;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 30px;
}

/* FEATURES */
.features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 44px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid #f1f5f9;
}

.features li:last-child {
    border-bottom: none;
}

.check-wrap {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--teal-lt);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    flex-shrink: 0;
    font-weight: 700;
}

/* BUTTONS */
.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.btn-outline {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid #d1d5db;
}

.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
    background: var(--purple-lt);
}

.btn-fill {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 28px rgba(124, 58, 237, 0.25);
}

.btn-fill:hover {
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.38);
    color: #fff;
}




/* RESPONSIVE */
@media (max-width: 1440px) {
    .va-devices-container {
        padding: 0 150px;
    }
}

@media (max-width: 1280px) {
    .va-devices-container {
        padding: 0 100px;
    }
}

@media (max-width: 1100px) {
    .tech-about-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testi-grid {
        grid-template-columns: 240px 1fr;
    }

    .tech-about-img-main {
        height: 400px;
        border-radius: 20px 20px 0 0;
    }

    .tech-about-decor {
        display: none;
    }

    .va-devices-container {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 0 32px;
    }

    .va-devices-left {
        text-align: center;
        align-items: center;
    }

    .va-devices-desc {
        max-width: 100%;
    }

    .va-devices-stats {
        justify-content: center;
    }

    .va-devices-bar {
        margin: 0 auto 28px;
    }
}


@media (max-width:991px) {
    .tech-img-box {
        width: 100%;
    }

    .tech-hire-badge {
        right: 50px;
    }

    .tech-asterisk {
        left: 80px;
    }

    .tech-scroll-down {
        display: none;
    }

    .va-tab-card {
        grid-template-columns: 1fr;
    }

    .va-tab-visual {
        min-height: 280px;
        padding: 36px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .rating-card {
        min-height: auto;
    }

    .lets-talk-col {
        display: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }



    .tech-curly {
        display: none;
    }

    .tech-hero {
        padding: 10px 5px 20px;
        margin: 0px 5px 20px;
    }

    .tech-img-box {
        margin-bottom: 0px;
    }

    .tech-about {
        margin: 0px 5px;
    }

    .tech-about-img-main {
        display: none;
    }

    .tech-about-content {
        padding-top: 0px;
        padding-bottom: 20px;
        padding-right: 24px;
    }

    .tech-about-wrap {
        display: block;
        padding: 20px 40px;
    }

    .plans-section {
        padding: 10px;
    }

    .section-header {
        margin-bottom: 15px;
    }

    .service-area {
        padding: 10px;
    }

    .va-tabs-section {
        padding: 10px;
    }

    .va-tabs-header {
        margin-bottom: 20px;
    }

    .cta-band {
        padding: 20px;
    }

    .ctab-sub {
        margin-bottom: 10px;
    }

    .va-devices-section {
        padding: 10px;
        margin: 0px 5px;
    }

    .section-radius {
        margin: 5px;
    }

    .plans-section {
        margin: 5px;
    }

    .va-devices-stats {

        margin-bottom: 0px;
    }

    .va-devices-container {
        gap: 0px;
    }

    .va-tabs-section {
        margin: 5px;
    }

    .testi-section {
        margin: 5px;
        padding: 10px;
    }

    .testi-section .shape-23 {
        display: none;
    }

    .faq-section {
        padding: 10px;
    }
}


@media (max-width: 768px) {
    .va-tabs-container {
        padding: 0px;
    }

    .va-device-card {
        padding: 10px;
    }

    .va-devices-container {
        padding: 5px;
    }

    .va-devices-stats {
        display: none;
    }

    .plan-name {
        font-size: 22px;
    }

    .plan-tagline {
        font-size: 12px;
        margin-bottom: 10px;
    }



    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }

    .tech-about-wrap {
        padding: 20px;
    }

    .va-stat-num {
        font-size: 20px;
    }

    .va-stat-item {

        padding: 15px 4px;

    }

    .faq-header {
        margin-bottom: 10px;
    }
}

@media (max-width: 640px) {
    .plans-section {
        padding: 10px;
    }

    .pk-title {
        font-size: 22px;
    }

    .container {
        padding: 0 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .plan-card {
        padding: 40px 28px 36px;
    }

    .plan-name {
        font-size: 21px;
    }

    .badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }

    .tech-about-bottom {
        grid-template-columns: 1fr;
    }

    .tech-thumb-col {
        flex-direction: row;
    }

    .tech-thumb {
        height: 120px;
    }

    .cta-band {
        padding: 20px;
    }

    .ctab-title {
        letter-spacing: -1px;
    }

    .ctab-proof {
        flex-direction: column;
        gap: 10px;
        border-radius: 20px;
        padding: 16px 20px;
    }

    .ctab-proof-sep {
        display: none;
    }

    .ctab-btns {
        flex-direction: column;
        gap: 12px;
    }

    .ctab-btn-primary,
    .ctab-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .ctab-trust {
        gap: 14px;
    }

    .ctab-ring1,
    .ctab-ring2 {
        display: none;
    }

    .section-radius {
        margin: 12px;
    }

    .tech-about,
    .va-devices-section,
    .va-tabs-section,
    .cta-band,
    .testi-section,
    .faq-section,
    .plans-section {
        margin: 5px;
    }



    .tech-headline {
        font-size: clamp(30px, 8vw, 48px);
        letter-spacing: -1.5px;
    }

    .tech-tagline {
        font-size: 14px;
        padding: 0 10px;
        margin: 16px auto 24px;
    }

    .tech-img-box {
        width: 100%;
    }

    .tech-hire-badge,
    .tech-half-circle {
        display: none;
    }

    .va-devices-right {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .va-devices-stats {
        gap: 24px;
    }

    .va-tabs-nav {
        gap: 8px;
    }

    .va-tab-btn {
        padding: 9px 8px;
        gap: 5px;
        font-size: 10px;
    }

    .va-tab-content {
        padding: 24px 20px;
        gap: 20px;
    }

    .va-tab-content-title {
        font-size: 24px;
    }

    .va-tabs-stats {
        flex-wrap: wrap;
        border-radius: 16px;
    }

    .va-stat-item {
        flex: 0 0 50%;
        padding: 20px 10px;
    }

    .va-stat-item+.va-stat-item::before {
        display: none;
    }

    .va-tab-btn {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
    }

    .tech-chip {
        gap: 2px;
        letter-spacing: 0.5px;
        padding: 8px;
    }

    .tech-chip-dot {
        display: none;
    }

    .tech-cta {
        padding: 4px 16px;
        gap: 5px;
        font-size: 13px;
    }

    .tech-cta-circle {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

@media (max-width:576px) {
    .testi-section {
        padding: 70px 0 0;
    }

    .big-rating {
        font-size: 72px;
    }

    .main-title {
        letter-spacing: -1px;
    }
}

@media (max-width:480px) {
    .tech-headline {
        letter-spacing: -1.5px;
    }

    .tech-asterisk {
        display: none;
    }
}