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

:root {
    --purple: #7C3AED;
    --purple-bright: #8B5CF6;
    --purple-light: #A78BFA;
    --bg-dark: #08081A;
    --bg-card: #0F0F2A;
    --bg-nav: rgba(8, 8, 26, 0.85);
    --text-white: #FFFFFF;
    --text-muted: #9CA3AF;
    --border: rgba(124, 58, 237, 0.18);
    --glow: rgba(124, 58, 237, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Manrope', sans-serif; */
    font-family: 'Nunito', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}

.nav-logo-icon img {
    width: 100%;
    height: auto;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text span:first-child {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
}

.nav-logo-text span:last-child {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a.active {
    border-bottom: 2px solid var(--purple);
    padding-bottom: 2px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #6D28D9;
    transform: translateY(-1px);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
    overflow: hidden;
}

.hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 48px 0;
    position: relative;
    z-index: 1;
    gap: 48px;
    background-image: url(./images/hero--bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-left {
    flex: 1;
    max-width: 50%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--purple-light);
    margin-bottom: 28px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple-bright);
}

.hero-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 4px;
}

.hero-title .white,
.about-title .white {
    color: #fff;
}

.hero-title .purple,
.about-title .purple {
    color: var(--purple-bright);
}

.hero-desc {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
    /* max-width: 380px; */
    max-width: 450px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-outline:hover {
    border-color: var(--purple);
    background: rgba(124, 58, 237, 0.08);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 44px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.08);
}

.stat-icon svg {
    width: 18px;
    height: 18px;
    color: var(--purple-light);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.stat-text span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-right {
    flex: 1;
    position: relative;
    max-width: 50%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    height: auto;
}

.phone-frame {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 195px;
    background: #111126;
    border-radius: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
    z-index: 2;
}

.phone-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.phone-placeholder {
    width: 100%;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(160deg, #111126 0%, #0a0a1e 100%);
}

.laptop-frame {
    position: absolute;
    right: 0;
    top: 20px;
    width: 500px;
    background: #111126;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.laptop-topbar {
    height: 28px;
    background: #0c0c22;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-r {
    background: #FF5F57;
}

.dot-y {
    background: #FFBD2E;
}

.dot-g {
    background: #28C840;
}

.laptop-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.uptime-card {
    position: absolute;
    right: -10px;
    bottom: 20px;
    width: 190px;
    background: linear-gradient(135deg, #1a0a3d 0%, #1e1040 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    padding: 16px 18px;
    z-index: 3;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* ── PARTNERS BAR ── */
.partners {
    position: relative;
    z-index: 1;
    margin-top: auto;
    border-top: 1px solid var(--border);
    background: rgba(8, 8, 26, 0.7);
    padding: 0 48px;
}

.partners-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
    overflow: hidden;
}

.partners-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.partners-swiper {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.partners-owl .partner-logo {
    height: 26px;
    width: 120px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.partners-owl .partner-logo img {
    max-height: 26px;
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo:hover {
    color: rgba(255, 255, 255, 0.8);
}

.partner-logo img {
    height: 100%;
    width: auto;
}

.partner-img-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity .2s;
    cursor: default;
}

.partner-img-wrap:hover {
    opacity: 0.85;
}

.partner-img-wrap img {
    height: 22px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Partners owl */
.partners-owl .partner-logo {
    height: 26px;
    display: flex;
    align-items: center;
}

.partners-owl .partner-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* ══════════════════════════════════════
    ── ABOUT SECTION ──
 ══════════════════════════════════════ */
.about {
    background: #F8F7FF;
    padding: 80px 0;
}

.about-inner {
    margin: 0 auto;
    padding: 0 48px;
}

.about-top {
    display: flex;
    /* align-items: flex-start; */
    align-items: stretch;
    gap: 60px;
    margin-bottom: 48px;
}

.about-left {
    flex: 1;
    max-width: 50%;
}

.about-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple);
    margin-bottom: 20px;
}

.about-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.about-title .white {
    color: #1a1a2e;
}

.about-desc {
    font-size: 14px;
    font-weight: 400;
    color: #5a5a7a;
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 32px;
}

.about-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    min-width: 120px;
}

.about-stat-icon {
    width: 36px;
    height: 36px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-stat-icon i {
    color: #7C3AED;
    font-size: 24px;
}

.about-stat-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.about-stat-text {
    display: flex;
    flex-direction: column;
}

.about-stat-text strong {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
}

.about-stat-text span {
    font-size: 12px;
    font-weight: 500;
    color: #9CA3AF;
}

.about-right {
    flex: 1;
    max-width: 50%;
}

.about-img {
    width: 100%;
    /* height: 340px; */
    height: 100%;
    max-height: 470px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: scale(1.05);
}

.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-card--purple {
    background: #F3EEFF;
}

.about-card--blue {
    background: #EBF3FF;
}

.about-card--green {
    background: #EDFFF5;
}

.about-card--orange {
    background: #FFF5EB;
}

.about-card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    font-weight: 800;
    opacity: 0.15;
    color: #1a1a2e;
    line-height: 1;
}

.about-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.about-card-icon i {
    font-size: 26px;
    color: var(--purple);
}

.about-card--purple .about-card-icon {
    background: rgba(124, 58, 237, 0.12);
}

.about-card--blue .about-card-icon {
    background: rgba(59, 130, 246, 0.12);
}

.about-card--green .about-card-icon {
    background: rgba(16, 185, 129, 0.12);
}

.about-card--orange .about-card-icon {
    background: rgba(249, 115, 22, 0.12);
}

.about-card-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.about-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.about-card-desc {
    font-size: 13px;
    font-weight: 400;
    color: #6b6b8a;
    line-height: 1.65;
    flex: 1;
}

.about-card-line {
    height: 3px;
    width: 32px;
    border-radius: 999px;
    margin-top: 4px;
}

.about-card-line--purple {
    background: var(--purple);
}

.about-card-line--blue {
    background: #3B82F6;
}

.about-card-line--green {
    background: #10B981;
}

.about-card-line--orange {
    background: #F97316;
}

.about-banner {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 32px;
    overflow: hidden;
}

.about-banner-quote {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    background: #1a1a2e;
    padding: 32px 48px;
    border-right: none;
}

.about-quote-mark {
    font-size: 64px;
    font-weight: 800;
    color: var(--purple-bright);
    line-height: 0.8;
    flex-shrink: 0;
    font-family: Georgia, serif;
}

.about-banner-quote p {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
}

.about-banner-quote p .purple {
    color: var(--purple);
}

.about-banner-pillars {
    display: flex;
    align-items: center;
    gap: 0;
    background: #EEEAF8;
    padding: 32px 48px;
    flex-shrink: 0;
}

.about-pillar-mob-span {
    display: none;
}

.about-pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
}

.about-pillar:first-child {
    padding-left: 0;
}

.about-pillar-divider {
    width: 1px;
    height: 40px;
    background: rgba(124, 58, 237, 0.2);
}

.about-pillar-icon {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    position: relative;
}

.pillar-border-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 10px;
    overflow: visible;
}

.pillar-border-rect {
    fill: none;
    stroke: #7C3AED;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 184;
    stroke-dashoffset: 184;
    transform-origin: 24px 24px;
    transform: rotate(90deg);
}

.about-pillar.active .pillar-border-rect {
    animation: pillar-border-draw 6s linear forwards;
}

@keyframes pillar-border-draw {
    0% {
        stroke-dashoffset: 184;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.about-quote-text {
    transition: opacity 0.4s ease;
}

.about-quote-text.fading {
    opacity: 0;
}

.about-pillar.active span {
    color: var(--purple);
}

.about-pillar.active .about-pillar-icon {
    background: rgba(124, 58, 237, 0.18);
}

.about-pillar-icon i {
    font-size: 24px;
    color: var(--purple);
}

.about-pillar-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.about-pillar span {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 3px;
}


/* ══════════════════════════════════════
   ── WHAT WE BUILD SECTION ──
══════════════════════════════════════ */

.whatwebuild {
    background: var(--bg-dark);
    padding: 80px 0;
}

.wwb-inner {
    margin: 0 auto;
    padding: 0 48px;
}

.wwb-header {
    margin-bottom: 40px;
}

.wwb-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple-light);
    margin-bottom: 16px;
}

.wwb-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple-bright);
    flex-shrink: 0;
}

.wwb-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.15;
}

.wwb-title-white {
    color: #fff;
}

.wwb-title-purple {
    color: var(--purple-bright);
}

.wwb-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

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

.wwb-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.wwb-card:hover {
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    /* transform: translateY(-2px); */
}

.wwb-card.commerce {
    background: rgba(242, 238, 253);
}

.wwb-card.logistics {
    background: rgba(231, 246, 241);
}

.wwb-card.healthcare {
    background: rgba(234, 242, 254);
}

.wwb-card.crm {
    background: rgba(253, 242, 236);
}

.wwb-card.erp {
    background: rgba(230, 231, 252);
}

.wwb-card.custom-solution {
    background: rgba(251, 235, 251);
}

.wwb-card-img {
    width: 120px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: #f3eeff;
}

.wwb-card.commerce .wwb-card-img {
    background: rgba(242, 238, 253);
}

.wwb-card.logistics .wwb-card-img {
    background: rgba(231, 246, 241);
}

.wwb-card.healthcare .wwb-card-img {
    background: rgba(234, 242, 254);
}

.wwb-card.crm .wwb-card-img {
    background: rgba(253, 242, 236);
}

.wwb-card.erp .wwb-card-img {
    background: rgba(230, 231, 252);
}

.wwb-card.custom-solution .wwb-card-img {
    background: rgba(251, 235, 251);
}

.wwb-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wwb-card-body {
    flex: 1;
}

.wwb-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
    line-height: 1.3;
}

.wwb-card-desc {
    font-size: 13px;
    /* color: #6b6b8a; */
    color: #4a4a6a;
    line-height: 1.6;
    font-weight: 400;
}

.wwb-cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0d0b2e 0%, #130f3f 60%, #1a0d3f 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    margin-top: 20px;
}

.wwb-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.wwb-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(124, 58, 237, 0.25);
    border: 1px solid rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.3);
}

.wwb-cta-icon i {
    font-size: 28px;
    color: var(--purple-light);
}

.wwb-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wwb-cta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--purple-light);
}

.wwb-cta-text strong {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.wwb-cta-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* 
.wwb-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 28px rgba(124, 58, 237, 0.4);
    position: relative;
    z-index: 1;
} */


.wwb-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* animated border layer */
.wwb-cta-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    /* border thickness */
    border-radius: 12px;
    background: linear-gradient(90deg,
            #ffffff,
            #3333ff,
            #ffffff,
            #3333ff,
            #ffffff);
    background-size: 300% 300%;
    z-index: -1;
    animation: borderRun 4s linear infinite;
}

.wwb-cta-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--purple);
    border-radius: 10px;
    z-index: -1;
}

/* animation */
@keyframes borderRun {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.wwb-cta-btn:hover {
    background: #6D28D9;
    transform: translateY(-2px);
}

.wwb-cta-btn svg {
    width: 16px;
    height: 16px;
}

.wwb-cta-cube {
    right: 40px;
    top: 50%;
    width: 110px;
    height: auto;
    opacity: 0.85;
    pointer-events: none;
}

.wwb-cta-cube svg {
    width: 100%;
    height: 100%;
}

.wwb-cta-cube img {
    width: 100%;
    height: 100%;
    /* background: rgba(124, 58, 237, 0.25);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.3); */
}


/* ══════════════════════════════════════
   ── ECOSYSTEM SECTION ──
══════════════════════════════════════ */
.ecosystem {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url(./images/ecosysytem/ecosystem-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.eco-inner {
    margin: 0 auto;
    padding: 0 48px;
}

.eco-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.eco-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple);
    margin-bottom: 10px;
}

.eco-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.eco-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.eco-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s;
}

.eco-explore:hover {
    gap: 12px;
}

.eco-explore svg {
    width: 16px;
    height: 16px;
}

.eco-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.eco-card {
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.eco-card--purple {
    background: #EDE8FF;
}

.eco-card--green {
    background: #E6F7F0;
}

.eco-card-img {
    flex-shrink: 0;
    width: 130px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
}

.eco-card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 200px;
}

.eco-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

.eco-card-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple);
}

.eco-card--green .eco-card-badge {
    color: #0a7a4b;
}

.eco-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.eco-card-desc {
    font-size: 13px;
    color: #4a4a6a;
    line-height: 1.65;
    font-weight: 400;
    max-width: 280px;
}

.eco-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.eco-tag {
    display: inline-block;
    background: #fff;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.eco-card--green .eco-tag {
    border-color: rgba(10, 122, 75, 0.15);
}

.eco-card-logo {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.eco-card-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* ══════════════════════════════════════
   ── STATS BAR ──
══════════════════════════════════════ */
.statsbar {
    background: linear-gradient(135deg, #0d0b2e 0%, #130f3f 60%, #1a0d3f 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 30px 48px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow:
        inset 0 0px 0px 0px rgb(33 53 195 / 25%),
        inset 20px 0 64px 0px rgb(33 53 195 / 25%),
        inset 0 0px 0px 0px rgb(33 53 195 / 25%),
        inset -20px 0 64px 0px rgb(33 53 195 / 25%),
        inset 0 0 20px 2px rgba(88, 56, 224, 0.15)
}

.statsbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    gap: 0;
}

.statsbar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.statsbar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.statsbar-icon img {
    width: 100%;
    height: 100%;
}

.statsbar-icon i {
    font-size: 18px;
    color: var(--purple-light);
}

.statsbar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.statsbar-text strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--purple-bright);
    line-height: 1.1;
}

.statsbar-text.two strong {
    color: #5c75f6;
}

.statsbar-text.three strong {
    color: #4ab5ac;
}

.statsbar-text span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.statsbar-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}


/* ══════════════════════════════════════
   ── CLIENTS ──
══════════════════════════════════════ */

.clients {
    background: var(--bg-dark);
    padding: 80px 0;
}

.clients-inner {
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.clients-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clients-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple-light);
    width: fit-content;
}

.clients-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple-bright);
    flex-shrink: 0;
}

.clients-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0;
}

.clients-title .purple {
    color: var(--purple-bright);
}

.clients-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

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

.client-card {
    position: relative;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgb(81 41 255 / 55%);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
    /* box-shadow:
        0px 0px 0px rgba(11, 38, 233, 0.15),
        -20px 0px 64px rgba(33, 53, 195, 0.15),
        0px 20px 40px rgba(33, 53, 195, 0.15),
        0px 5px 20px 2px rgba(88, 56, 224, 0.15) */
    box-shadow: 0px 0px 0px rgba(11, 38, 233, 0.15),
        -5px 10px 14px rgba(33, 53, 195, 0.15),
        0px 10px 20px rgba(33, 53, 195, 0.15),
        5px 10px 14px 2px rgba(88, 56, 224, 0.15)
}


.client-card:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.45);
    /* transform: translateY(-2px); */
}

.client-card-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.client-card-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.client-card-logo--icon {
    background: rgba(255, 255, 255, 0.06);
}

.client-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-card-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.client-card-sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.clients-banner {
    background: linear-gradient(135deg, #0d0b2e 0%, #130f3f 60%, #1a0d3f 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.clients-banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1.5;
}

.clients-banner-shield {
    width: 56px;
    height: 66px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clients-banner-shield img {
    width: 100%;
    height: 100%;
}

.clients-banner-left strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.clients-banner-left p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.clients-banner-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.clients-banner-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.clients-banner-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clients-banner-stat-icon i {
    font-size: 18px;
    color: var(--purple-light);
}

.clients-banner-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.clients-banner-stat span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}


/* ══════════════════════════════════════
   ── TESTIMONIALS ──
══════════════════════════════════════ */
.testimonials {
    background: #F8F7FF;
    padding: 70px 0;
}

.testi-inner {
    padding: 0 48px;
}

.testi-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 36px;
    position: relative;
}

.testi-header-left {
    flex: 1;
}

.testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #EDE8FF;
    border: 1px solid #c4b5fd;
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #5b21b6;
    margin-bottom: 16px;
}

.testi-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.15;
}

.testi-title .purple {
    color: var(--purple-bright);
}

.testi-subtitle {
    font-size: 14px;
    color: #5a5a7a;
    line-height: 1.65;
}

.testi-big-quote {
    font-size: 140px;
    color: #EDE8FF;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 900;
    user-select: none;
    flex-shrink: 0;
    margin-top: -10px;
}

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

.testi-owl .owl-item {
    display: flex;
}

.testi-owl .owl-stage {
    display: flex;
}

.testi-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e0ff;
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

.testi-card:hover {
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    /* transform: translateY(-2px); */
}

.testi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testi-open-quote {
    font-size: 36px;
    color: var(--purple);
    font-family: Georgia, serif;
    line-height: 1;
}

.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars i {
    font-size: 14px;
    color: var(--purple);
}

.testi-quote {
    font-size: 14px;
    color: #2a2a4a;
    line-height: 1.75;
    flex: 1;
}

.testi-quote strong {
    color: var(--purple);
    font-weight: 700;
}

.testi-divider {
    height: 1px;
    background: #f0ecff;
}

.testi-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.testi-person-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e0d9f7;
}

.testi-person-info {
    display: flex;
    flex-direction: column;
}

.testi-person-info strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.testi-role {
    font-size: 12px;
    color: #5a5a7a;
    font-weight: 500;
}

.testi-company-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--purple);
}

.testi-company-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f5f3ff;
    border: 1px solid #e0d9f7;
    border-radius: 8px;
    padding: 7px 12px;
    flex-shrink: 0;
}

.testi-company-chip img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.testi-company-chip i {
    font-size: 14px;
    color: #0ea5e9;
}

.testi-company-chip span {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
}

.testi-company-chip--green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.testi-company-chip--blue {
    background: #f0f9ff;
    border-color: #bae6fd;
}

.testi-stats-banner {
    background: #EEEAF8;
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.testi-banner-left {
    flex-shrink: 0;
    max-width: 220px;
    border-left: 4px solid var(--purple);
    padding-left: 16px;
}

.testi-banner-left strong {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a2e;
    display: block;
    margin-bottom: 6px;
}

.testi-banner-left p {
    font-size: 13px;
    color: #5a5a7a;
    line-height: 1.6;
}

.testi-banner-stats {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0;
}

.testi-bstat {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.testi-bstat>i {
    font-size: 22px;
    color: var(--purple);
}

.testi-bstat-text {
    display: flex;
    flex-direction: column;
}

.testi-bstat-text strong {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
}

.testi-bstat-text span {
    font-size: 12px;
    color: #4a4a6a;
    white-space: nowrap;
}

.testi-banner-divider {
    width: 1px;
    height: 36px;
    background: #d4c8f8;
    flex-shrink: 0;
}

.testi-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.testi-cta-btn {
    padding: 14px 24px;
    font-size: 14px;
}

.testi-cta-text {
    font-size: 14px;
    color: #5a5a7a;
}


/* ══════════════════════════════════════
   ── TRAINING & INTERNSHIPS ──
══════════════════════════════════════ */
.training {
    background: #F8F7FF;
    padding: 80px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
}

.training-inner {
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.training-left {
    flex-shrink: 0;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.training-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple);
}

.training-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.training-desc {
    font-size: 14px;
    color: #5a5a7a;
    line-height: 1.7;
}

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

.training-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    cursor: default;
}

.training-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease;
}

.training-card:hover .training-card-bg {
    transform: scale(1.05);
}

.training-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 8, 30, 0.88) 0%, rgba(10, 8, 30, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.training-card-content {
    position: relative;
    z-index: 2;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.training-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.training-card-icon i {
    font-size: 17px;
    color: #fff;
}

.training-card-content h3 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.training-card-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
}


/* ══════════════════════════════════════
   ── TECHNOLOGY SECTION ──
══════════════════════════════════════ */
.technology {
    background: #F8F7FF;
    padding: 80px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
}

.tech-inner {
    padding: 0 48px;
}

.tech-header {
    margin-bottom: 40px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple);
    margin-bottom: 16px;
}

.tech-badge i {
    font-size: 12px;
}

.tech-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.2;
}

.tech-title .purple {
    color: var(--purple-bright);
}

.tech-desc {
    font-size: 14px;
    color: #5a5a7a;
    line-height: 1.7;
    max-width: 420px;
}

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

.tech-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.08);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.tech-card:hover {
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    /* transform: translateY(-2px); */
}

.tech-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 6px;
}

.tech-icon--purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7C3AED;
}

.tech-icon--blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.tech-icon--rose {
    background: #d132b526;
    color: #d132b5;
}

.tech-icon--green {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.tech-icon--orange {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.tech-icon--teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14B8A6;
}

.tech-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--purple);
    line-height: 1.2;
}

.tech-card--blue .tech-card-title {
    color: #3B82F6;
}

.tech-card--green .tech-card-title {
    color: #10B981;
}

.tech-card-sub {
    font-size: 12px;
    color: #4a4a6a;
    font-weight: 500;
    margin-bottom: 12px;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 8px;
    margin-top: 4px;
}

.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.tech-logo-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.tech-logo-item span {
    font-size: 11px;
    font-weight: 600;
    color: #4a4a6a;
    line-height: 1.3;
}

.cloud-banner {
    background: #EEEAF8;
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.cloud-banner-left {
    flex-shrink: 0;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cloud-banner-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple);
}

.cloud-banner-title {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
}

.cloud-banner-title .purple {
    color: var(--purple-bright);
    white-space: nowrap;
}

.cloud-banner-desc {
    font-size: 13px;
    color: #5a5a7a;
    line-height: 1.65;
}

.cloud-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s;
}

.cloud-learn-more:hover {
    gap: 10px;
}

.cloud-learn-more svg {
    width: 15px;
    height: 15px;
}

.cloud-logos {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px; */
    width: 100%;
    flex: 1;
}

.cloud-logos.mob {
    display: none;
}

.cloud-logos.owl-carousel.owl-loaded {
    overflow-x: hidden;
}

.cloud-logo-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(124, 58, 237, 0.08);
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.cloud-logo-card:hover {
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.1);
    /* transform: translateY(-2px); */
}

.cloud-logo-card img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.cloud-logo-card span {
    font-size: 12px;
    font-weight: 600;
    color: #4a4a6a;
    text-align: center;
    line-height: 1.3;
}


/* ══════════════════════════════════════
   ── FOOTER CTA BANNER ──
══════════════════════════════════════ */
.footer-cta {
    background: var(--bg-dark);
    padding: 48px 48px 0;
}

.footer-cta-inner {
    position: relative;
    background: linear-gradient(135deg, #0d0b2e 0%, #130f3f 50%, #0d0b2e 100%);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 20px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}

.footer-cta-left {
    flex: 1;
    position: relative;
    z-index: 1;
}

.footer-cta-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple-light);
    margin-bottom: 20px;
}

.footer-cta-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.footer-cta-title .purple {
    color: var(--purple-bright);
}

.footer-cta-title .white {
    color: #fff;
}

.footer-cta-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-cta-right {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--purple);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}

.footer-cta-btn:hover {
    background: #6D28D9;
    transform: translateY(-2px);
}

.footer-cta-btn i {
    font-size: 18px;
}

.footer-cta-btn svg {
    width: 18px;
    height: 18px;
}

.footer-cta-wave {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer-cta-wave svg {
    width: 100%;
    height: 100%;
}

/* ══════════════════════════════════════
   ── FOOTER ──
══════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    padding: 56px 0 0;
}

.footer-inner {
    padding: 0 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-icon svg {
    width: 36px;
    height: 44px;
}

.footer-logo-icon img {
    width: 36px;
    height: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-text span:first-child {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
}

.footer-logo-text span:last-child {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--purple-light);
}

.footer-brand-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    background: rgb(85 70 111 / 18%);
}

.footer-social:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.footer-social img {
    width: 26px;
    height: auto;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--purple-light);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a i {
    font-size: 11px;
    color: var(--purple-light);
    opacity: 0.7;
}

.footer-links--plain a {
    border-bottom: none;
    justify-content: flex-start;
    padding: 8px 0;
}

.footer-links--plain a:hover {
    color: #fff;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgb(85 70 111 / 18%);
    border: 1px solid rgb(80 60 115 / 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon i {
    font-size: 16px;
    color: var(--purple-light);
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-text strong {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.footer-contact-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 32px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 13px;
}


/* ══════════════════════════════════════
   ── TEQ CLIENTS  ──
══════════════════════════════════════ */

.teq-purple {
    color: var(--purple-bright);
}

.teq-clients {
    /* background: var(--bg-dark); */
    padding: 80px 0 0;
    background: #05071e;
}

.teq-clients-inner {
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 0;
}

.teq-clients-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 10px;
}

.teq-clients-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 999px;
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--purple-light);
}

.teq-clients-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-bright);
    flex-shrink: 0;
}

.teq-clients-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin: 0;
    text-align: left;
}

.teq-clients-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.teq-clients-title--mobile,
.teq-clients-desc--mobile {
    display: none;
}

.teq-clients-title--desktop,
.teq-clients-desc--desktop {
    display: block;
}


/* desktop orbit */
.teq-orbit-wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    display: block;
    background-image: url(./images/teq-clients/teq-client-bg2.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 40px;
}

/* Ellipse orbits */
.teq-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.teq-orbit--outer {
    width: 90%;
    height: 68%;
    border: 1px solid rgba(124, 58, 237, 0.35);
    box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.08),
        inset 0 0 80px rgba(124, 58, 237, 0.06);
}

.teq-orbit--inner {
    width: 56%;
    height: 44%;
    border: 1px solid rgba(124, 58, 237, 0.25);
}

/* 
.teq-orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple-bright);
    box-shadow: 0 0 12px 3px rgba(124, 58, 237, 0.7);
    z-index: 4;
    pointer-events: none;
} */

.teq-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 5;
}

/* 
.teq-orbit-center-logo {
    width: 72px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.7));
    margin-bottom: 6px;
}

.teq-orbit-center-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.12em;
}

.teq-orbit-center-sub {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.2em;
} */

.teq-orbit-node {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 5px rgba(124, 58, 237, 0.07),
        0 6px 24px rgba(0, 0, 0, 0.5);
}

.teq-orbit-node.teq-node--lg {
    width: 130px;
    height: 130px;
}

.teq-orbit-node.teq-node--md {
    width: 108px;
    height: 108px;
}

.teq-orbit-node:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow:
        0 0 0 6px rgba(124, 58, 237, 0.2),
        0 10px 40px rgba(124, 58, 237, 0.35);
}

.teq-orbit-node img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* mobile grid */

.teq-grid-wrap {
    display: none;
    /* grid-template-columns: repeat(5, 1fr);
    gap: 14px; */
    width: 100%;
    margin: 32px 0 40px;
}

.teq-grid-wrap.owl-carousel.teq-clients-owl {
    display: none !important;
}

.teq-grid-wrap .teq-grid-node {
    padding: 0 6px;
}

.teq-clients-owl .owl-dots {
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.teq-clients-owl .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    display: block;
    transition: all 0.3s ease;
    margin: 0;
}

.teq-clients-owl .owl-dots .owl-dot.active span {
    background: var(--purple-bright);
    width: 24px;
    border-radius: 999px;
}

.teq-clients-owl .owl-dots .owl-dot:hover span {
    background: rgba(124, 58, 237, 0.6);
}

.teq-grid-node {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow:
        0 0 0 3px rgba(124, 58, 237, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

.teq-grid-node:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 3px rgba(124, 58, 237, 0.2),
        0 8px 28px rgba(124, 58, 237, 0.2);
}

.teq-grid-node img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* bottom stats banner */
.teq-clients-banner {
    width: 100%;
    background: rgba(12, 10, 35, 0.95);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 20px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 30px 0;
}

.teq-banner-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.teq-banner-left-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.teq-banner-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.15);
    border: 1.5px solid rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.teq-banner-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.teq-banner-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.teq-banner-stat-text strong {
    font-size: 48px;
    font-weight: 800;
    color: var(--purple-bright);
    line-height: 1;
}

.teq-banner-stat-text span {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.teq-banner-sub {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    padding-left: 2px;
    border-top: 1.5px solid rgba(124, 58, 237, 0.2);
    padding-top: 10px;
    max-width: 220px;
}

.teq-banner-divider {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.teq-banner-pills {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    flex: 1;
}

.teq-banner-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}

.teq-banner-pill-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.teq-banner-pill-icon i {
    font-size: 18px;
    color: var(--purple-light);
}

.teq-banner-pill-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.teq-banner-pill-text strong {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.teq-banner-pill-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
}

.teq-banner-pills--mobile {
    display: none;
}


/* ══════════════════════════════════════
   ── TEQ OFF CANVAS FORM ──
══════════════════════════════════════ */

.teq-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.teq-overlay.open {
    opacity: 1;
    visibility: visible;
}

.teq-canvas {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 560px;
    max-width: 100vw;
    background: #F8F7FF;
    border-left: 1px solid rgba(124, 58, 237, 0.3);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.teq-canvas.open {
    transform: translateX(0);
}

.teq-canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    flex-shrink: 0;
    background: #EEEAF8;
}

.teq-canvas-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.teq-canvas-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.teq-canvas-icon i {
    font-size: 18px;
    color: var(--purple-light);
}

.teq-canvas-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 3px;
    line-height: 1.2;
}

.teq-canvas-sub {
    font-size: 12px;
    color: #5a5a7a;
    margin: 0;
}

.teq-canvas-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #5a5a7a;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.teq-canvas-close:hover {
    background: rgba(124, 58, 237, 0.2);
    color: #fff;
}

.teq-canvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 28px 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--purple) #F8F7FF;
}

.teq-canvas-body::-webkit-scrollbar {
    width: 4px;
}

.teq-canvas-body::-webkit-scrollbar-track {
    /* background: transparent; */
    background: #EEEAF8;
}

.teq-canvas-body::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 2px;
}

.teq-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.teq-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.teq-form-row .teq-form-group {
    margin-bottom: 0;
}

.teq-label {
    font-size: 12px;
    font-weight: 700;
    color: #5a5a7a;
    letter-spacing: 0.06em;
}

.teq-label span {
    color: var(--purple-bright);
}

.teq-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.teq-input-wrap>i {
    position: absolute;
    left: 14px;
    font-size: 13px;
    color: rgba(124, 58, 237, 0.6);
    pointer-events: none;
    z-index: 1;
}

.teq-input-wrap input,
.teq-input-wrap select,
.teq-input-wrap textarea {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.25);
    color: #1a1a2e;
    padding: 11px 14px 11px 38px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.teq-input-wrap select {
    cursor: pointer;
}

.teq-input-wrap textarea {
    resize: none;
    line-height: 1.6;
    padding-top: 12px;
}

.teq-input-wrap--textarea {
    align-items: flex-start;
}

.teq-input-wrap--textarea>i {
    top: 14px;
}

.teq-input-wrap input::placeholder,
.teq-input-wrap textarea::placeholder {
    color: #9CA3AF;
}

.teq-input-wrap input:focus,
.teq-input-wrap select:focus,
.teq-input-wrap textarea:focus {
    border-color: var(--purple);
    background: #F3EEFF;
}

.teq-input-wrap select option {
    background: #fff;
    color: #1a1a2e;
}

.teq-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--purple);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 28px rgba(124, 58, 237, 0.35);
    margin-top: 4px;
}

.teq-submit-btn:hover {
    background: #6D28D9;
    transform: translateY(-1px);
}

.teq-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.teq-submit-btn svg {
    width: 15px;
    height: 15px;
}

.teq-submit-btn i {
    font-size: 14px;
}

.teq-canvas-footer {
    padding: 16px 28px 20px;
    background: #EEEAF8;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.teq-canvas-footer-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: #5a5a7a;
}

.teq-canvas-footer-item i {
    font-size: 12px;
    color: var(--purple-light);
}

/* ── TOAST ── */
.teq-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1040;
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.teq-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.teq-toast.success {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.12);
}

.teq-toast.error {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.1);
}



/* ══════════════════════════════════════
   ── NEW WHAT WE BUILD SECTION ──
══════════════════════════════════════ */

.new-wwb {
    background: #F0F2FA;
    padding: 80px 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
}

.new-wwb-inner {
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Header ── */
.new-wwb-header {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: left;
    margin-bottom: 48px;
    gap: 18px;
}

.new-wwb-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #374151;
}

.new-wwb-badge-diamond {
    font-size: 9px;
    color: #6366f1;
}

.new-wwb-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.new-wwb-title-accent {
    color: var(--purple-bright);
    position: relative;
    display: inline-block;
}

.new-wwb-title-accent::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #9754c98c, #7C3AED);
    border-radius: 2px;
}

.new-wwb-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #5a5a7a;
    line-height: 1.7;
    margin: 0;
}

.new-wwb-subtitle-accent {
    color: var(--purple);
    font-weight: 500;
}

/* ── Grid ── */
.new-wwb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── Card ── */
.new-wwb-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #e5e7eb;
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
    cursor: default;
}

.new-wwb-card:hover {
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.10);
    border-color: #c7d2fe;
    transform: translateY(-2px);
}

.new-wwb-card-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* ── Icon Box ── */
.new-wwb-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.new-wwb-card-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.new-wwb-icon--blue {
    background: #78a8e561;
}

.new-wwb-icon--blue i {
    font-size: 40px;
    color: #1259ff;
}

.new-wwb-icon--green {
    background: #baf5cc96;
}

.new-wwb-icon--green i {
    font-size: 40px;
    color: #266b05;
}

.new-wwb-icon--purple {
    background: #816de54f;
}

.new-wwb-icon--purple i {
    color: var(--purple);
    font-size: 40px;
}

.new-wwb-icon--orange {
    background: #cfae844d;
}

.new-wwb-icon--orange i {
    color: #edae5e;
    font-size: 40px;
}

.new-wwb-icon--pink {
    background: #eb9bc757;
}

.new-wwb-icon--pink i {
    color: #e770b1;
    font-size: 40px;
}

.new-wwb-icon--teal {
    background: #78e1c961;
}

.new-wwb-icon--teal i {
    color: #3b9b85;
    font-size: 40px;
}

/* ── Card Info ── */
.new-wwb-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.new-wwb-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}

.new-wwb-card-desc {
    font-size: 13px;
    font-weight: 400;
    color: #4a4a6a;
    line-height: 1.6;
    margin: 0;
}

/* ── Card Bottom ── */
.new-wwb-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1.5px solid #f3f4f6;
}

/* ── Tech Logos ── */
.new-wwb-tech-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.new-wwb-tech-logos img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 6px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 4px;
    transition: transform 0.15s;
}

.new-wwb-tech-logos img:hover {
    transform: scale(1.15);
}

.new-wwb-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 700;
    color: #9ca3af;
    flex-shrink: 0;
    cursor: default;
}

/* ── Arrow Button ── */
.new-wwb-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    color: #6b7280;
}

.new-wwb-arrow-btn svg {
    width: 15px;
    height: 15px;
}

.new-wwb-card:hover .new-wwb-arrow-btn {
    background: #2563EB;
    border-color: #2563EB;
    color: #fff;
}


/* ══════════════════════════════════════
   ── OUR SISTER CONCERN SECTION ──
══════════════════════════════════════ */

.our-concern {
    background: #F0F2FA;
    padding: 80px 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
}

.our-concern-inner {
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Top Badge ── */
.our-concern-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.our-concern-badge-line {
    flex: 1;
    max-width: 80px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #7C3AED);
}

.our-concern-badge-line:last-child {
    background: linear-gradient(90deg, #7C3AED, transparent);
}

.our-concern-badge-diamond {
    font-size: 9px;
    color: var(--purple);
}

.our-concern-badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple);
}

/* ── Main Card ── */
.our-concern-card {
    background: #fff;
    border-radius: 24px 24px 0 0;
    border: 1.5px solid #e5e7eb;
    padding: 56px 56px 56px 56px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
    box-shadow: 0 4px 32px rgba(79, 70, 229, 0.06);
}

/* Subtle background blob */
.our-concern-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: 30%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Left ── */
.our-concern-left {
    flex: 1;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
}

/* ── Logo ── */
.our-concern-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
    margin-bottom: 4px;
}

.our-concern-logo-teque {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.our-concern-logo-v {
    color: #2563EB;
    font-style: italic;
}

.our-concern-logo-sub {
    font-size: 20px;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.02em;
    padding-left: 2px;
}

.our-concern-logo img {
    width: 300px;
}

/* ── Label ── */
.our-concern-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
    margin: 0;
    line-height: 1.4;
}

.our-concern-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
}

.our-concern-title-dot {
    color: var(--purple);
}

.our-concern-title-line {
    width: 40px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
    margin-top: -4px;
}

.our-concern-desc {
    font-size: 14px;
    font-weight: 400;
    color: #5a5a7a;
    line-height: 1.75;
    margin: 0;
    max-width: 380px;
}

/* ── CTA Button ── */
.our-concern-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--purple);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.3);
}

.our-concern-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.our-concern-btn-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.our-concern-btn-icon svg {
    width: 14px;
    height: 14px;
}

/* ── Right Image ── */
.our-concern-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.our-concern-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ── Feature Cards Row ── */
.our-concern-features {
    background: #fff;
    border-radius: 0 0 24px 24px;
    border: 1.5px solid #e5e7eb;
    border-top: none;
    padding: 32px 48px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 4px 32px rgba(79, 70, 229, 0.04);
}

.our-concern-feature {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 24px;
}

.our-concern-feature:first-child {
    padding-left: 0;
}

.our-concern-feature:last-child {
    padding-right: 0;
}

.our-concern-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.our-concern-feature-icon i {
    color: var(--purple);
    font-size: 26px;
}

.our-concern-feature-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.our-concern-feature-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.our-concern-feature-text h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.our-concern-feature-text p {
    font-size: 12px;
    font-weight: 400;
    color: #4a4a6a;
    line-height: 1.5;
    margin: 0;
}

.our-concern-feature-divider {
    width: 1px;
    height: 70px;
    background: #e5e7eb;
    flex-shrink: 0;
    align-self: center;
}



@media (max-width: 1500px) {
    .nav-links {
        display: none;
    }
}


@media (max-width: 1200px) {

    /* technology */
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 1100px) {
    .hero-inner {
        padding: 40px 24px 0;
        gap: 28px;
    }

    nav {
        padding: 0 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .laptop-frame {
        width: 380px;
    }

    .partners-inner {
        padding: 0 24px;
    }

    .about-inner {
        padding: 0 24px;
    }

    .about-banner {
        margin-left: -24px;
        margin-right: -24px;
        padding: 28px 24px;
        flex-direction: column;
    }

    .about-banner-pillars {
        justify-content: space-between;
    }

    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }


    /* wwb */
    .wwb-cta-cube {
        display: none;
    }

    .wwb-inner {
        padding: 0 24px;
    }

    .wwb-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* eco system */
    .eco-inner {
        padding: 0 24px;
    }


    /* clients */
    .clients-inner {
        padding: 0 24px;
    }


    /* testimonial */
    .testi-inner {
        padding: 0 24px;
    }

    .testi-stats-banner {
        gap: 24px;
        padding: 24px;
    }


    /* statsbar */
    .statsbar {
        padding: 24px;
    }

    .clients-inner {
        padding: 0 24px;
        gap: 32px;
    }

    .training-inner {
        padding: 0 24px;
        gap: 32px;
    }


    /* technology */
    .tech-inner {
        padding: 0 24px;
    }

    .cloud-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 28px 24px;
    }

    .cloud-banner-left {
        max-width: 100%;
    }

    /* .cloud-logos {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
    } */

    .cloud-logos.web {
        display: none;
    }

    .cloud-logos.mob {
        display: block;
    }

    .cloud-logo-card-divider {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* footer cta */
    .footer-cta {
        padding: 40px 24px 0;
    }

    .footer-inner {
        padding: 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }


    /* new wwb */
    .new-wwb-inner {
        padding: 0 24px;
    }


    /* our concern */
    .our-concern-inner {
        padding: 0 24px;
    }

    .our-concern-card {
        padding: 40px 36px;
        gap: 28px;
    }

    .our-concern-features {
        padding: 28px 36px;
    }
}


@media (max-width: 1024px) {

    .teq-clients-title--desktop,
    .teq-clients-desc--desktop {
        display: none;
    }

    .teq-clients-title--mobile,
    .teq-clients-desc--mobile {
        display: block;
    }

    .teq-orbit-wrap {
        display: none;
    }

    .teq-grid-wrap {
        display: block;
        /* display: grid;
        grid-template-columns: repeat(4, 1fr); */
    }

    .teq-grid-wrap.owl-carousel.teq-clients-owl {
        display: block !important;
    }

    .teq-clients-banner {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
        padding: 28px 32px;
        margin-top: 0;
        border-radius: 16px;
    }

    .teq-banner-left {
        flex-direction: row;
        align-items: center;
        gap: 0;
        flex-wrap: wrap;
    }

    .teq-banner-left-top {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        margin-right: 20px;
    }

    .teq-banner-sub {
        border-top: none;
        padding-top: 0;
        border-left: 1.5px solid rgba(124, 58, 237, 0.25);
        padding-left: 16px;
        max-width: 200px;
    }

    .teq-banner-divider {
        display: none;
    }

    .teq-banner-pills {
        display: none;
    }

    .teq-banner-pills--mobile {
        display: flex;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
    }

    .teq-banner-pill-sm {
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .teq-banner-pill-sm-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        background: rgba(124, 58, 237, 0.1);
        border: 1px solid rgba(124, 58, 237, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .teq-banner-pill-sm-icon i {
        font-size: 18px;
        color: var(--purple-light);
    }

    .teq-banner-pill-sm span {
        font-size: 14px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }
}

@media (max-width: 930px) {
    .teq-banner-pills--mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        width: 100%;
    }

    .teq-banner-pill-sm {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        padding: 32px 20px 0;
        align-items: flex-start;
    }

    .hero-left {
        flex: none;
        max-width: 100%;
    }

    .hero-right {
        max-width: 100%;
        height: 400px;
    }

    .laptop-frame {
        width: 280px;
    }

    .phone-frame {
        width: 140px;
    }

    .partners-inner {
        gap: 24px;
        padding: 0 20px;
    }

    nav {
        padding: 0 20px;
    }

    .about-top {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .about-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-right {
        max-width: 100%;
    }

    .about-img {
        height: 260px;
    }

    .about-banner {
        margin-left: -24px;
        margin-right: -24px;
    }

    .about-banner-pillars {
        gap: 0;
        padding: 24px 20px;
        align-items: flex-start;
    }

    .about-pillar {
        flex-direction: column;
        /* align-items: flex-start; */
        gap: 8px;
        padding: 12px 0;
        width: 100%;
    }

    .about-pillar-divider {
        /* width: 100%;
        height: 1px; */
        display: none;
    }


    /* clienst */
    .clients-banner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .clients-banner-left {
        flex: 1 1 100%;
    }

    .clients-banner-divider {
        display: none;
    }

    .clients-banner-stat {
        flex: 1 1 28%;
        justify-content: flex-start;
    }


    /* testimonial */
    .testi-cards {
        grid-template-columns: 1fr;
    }

    .testi-big-quote {
        font-size: 90px;
    }

    .testi-stats-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .testi-banner-stats {
        width: 100%;
        flex-wrap: wrap;
        gap: 16px;
    }

    .testi-banner-divider {
        display: none;
    }

    .testi-bstat {
        flex: 1 1 40%;
        justify-content: flex-start;
    }


    /* statsbar */
    .statsbar-inner {
        height: auto;
        padding: 24px 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    .statsbar-divider {
        display: none;
    }

    .statsbar-item {
        flex: 1 1 40%;
        justify-content: flex-start;
        padding: 0 12px;
    }

    .clients-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .clients-left {
        max-width: 100%;
    }

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

    .testi-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 0;
    }

    .training-inner {
        flex-direction: column;
    }

    .training-left {
        max-width: 100%;
    }

    .training-left .btn-primary {
        max-width: 220px;
    }


    /* new wwb */
    .new-wwb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-concern-logo img {
        width: 250px;
    }


    /* our concern */
    .our-concern-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 28px;
        min-height: auto;
    }

    .our-concern-left {
        max-width: 100%;
    }

    .our-concern-right {
        width: 100%;
        justify-content: center;
    }

    .our-concern-img {
        max-width: 100%;
    }

    .our-concern-features {
        flex-wrap: wrap;
        gap: 20px;
        padding: 28px 24px;
        border-radius: 0 0 20px 20px;
    }

    .our-concern-feature {
        flex: 1 1 40%;
        padding: 0;
    }

    .our-concern-feature-divider {
        display: none;
    }
}

@media (max-width: 860px) {

    /* eco system */
    .eco-cards {
        grid-template-columns: 1fr;
    }

    .eco-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }


    /* technology */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cloud-logos {
        grid-template-columns: repeat(2, 1fr);
    }


    /* footer cta */
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 32px;
        gap: 28px;
    }

    .footer-cta-wave {
        width: 100%;
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 0;
    }

    .partners-inner {
        flex-direction: column;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-banner-pillars {
        gap: 16px;
    }

    .about-banner {
        margin-left: 0;
        margin-right: 0;
    }

    /* .about-pillar-divider {
        width: 40px;
        height: 1px;
    } */


    /* clients */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
    }


    /* teq-clients */
    .teq-clients-inner {
        padding: 0 24px;
    }

    .teq-grid-wrap {
        /* grid-template-columns: repeat(5, 1fr); */
        /* gap: 10px; */
    }

    .teq-clients-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 20px;
    }

    .teq-banner-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .teq-banner-sub {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(124, 58, 237, 0.18);
        padding-top: 10px;
        max-width: 100%;
    }

    .teq-banner-stat-text strong {
        font-size: 36px;
    }

    .teq-banner-pills--mobile {
        gap: 16px;
    }

    .about-inner,
    .wwb-inner,
    .training-inner,
    .eco-inner,
    .tech-inner,
    .clients-inner,
    .new-wwb-inner,
    .our-concern-inner,
    .teq-clients-inner,
    .testi-inner,
    .footer-inner {
        padding: 0 10px;
    }

    .footer-cta {
        padding: 32px 12px 0;
    }
}


@media (max-width: 700px) {

    /* wwb */
    .wwb-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 20px;
    }

    .whatwebuild {
        padding: 40px 0;
    }


    /* eco system */
    .ecosystem {
        padding: 40px 0;
    }


    /* testimonial */
    .testimonials {
        padding: 40px 0;
    }


    /* statsbar */
    .training {
        padding: 40px 0;
    }


    /* footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 600px) {

    /* wwb */

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


    /* clients */
    .clients {
        padding: 40px 0;
    }

    .clients-banner {
        padding: 24px 20px;
    }


    /* testimonial */

    .testi-big-quote {
        display: none;
    }

    .testi-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .testi-bstat {
        flex: 1 1 100%;
    }


    /* statsbar */
    .statsbar {
        padding: 0 20px;
    }

    .training-cards {
        grid-template-columns: 1fr;
    }


    /* technology */

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

    .cloud-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .cloud-banner {
        padding: 24px 20px;
    }


    /* footer cta */
    .footer-cta-inner {
        padding: 28px 24px;
    }


    /* teq-clients */
    .teq-clients {
        padding: 48px 0 0;
    }

    .teq-clients-inner {
        gap: 0;
    }

    .teq-clients-header {
        margin-bottom: 24px;
    }

    /* .teq-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 24px 0 32px;
    } */

    .teq-clients-banner {
        border-radius: 16px;
        padding: 22px 18px;
    }


    /* off canvas */
    .teq-canvas {
        width: 100vw;
    }

    .teq-form-row {
        grid-template-columns: 1fr;
    }

    .teq-canvas-header,
    .teq-canvas-body,
    .teq-canvas-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .teq-canvas-footer {
        gap: 8px;
    }

    .teq-canvas-footer-item {
        font-size: 10px;
    }


    /* new wwb */
    .new-wwb {
        padding: 48px 0;
    }

    .new-wwb-grid {
        grid-template-columns: 1fr;
    }

    .new-wwb-subtitle {
        font-size: 14px;
    }


    /* our concern */
    .our-concern {
        padding: 48px 0;
    }

    .our-concern-card {
        padding: 28px 20px;
        border-radius: 18px 18px 0 0;
    }

    .our-concern-features {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
        border-radius: 0 0 18px 18px;
    }

    .our-concern-feature {
        flex: 1 1 100%;
    }

    .our-concern-logo-teque {
        font-size: 28px;
    }

    .our-concern-logo-sub {
        font-size: 16px;
    }
}


@media (max-width: 570px) {

    /* about */
    .about-stats {
        justify-content: space-evenly;
        gap: 10px;
    }

    .about-stat {
        flex-direction: column;
    }


    /* new wwb */
    .our-concern-logo img {
        width: 200px;
    }
}

@media (max-width: 510px) {

    /* clients */
    .client-card {
        flex-direction: column;
        padding: 20px 16px;
    }

    .clients-banner-stat {
        flex: 1 1 100%;
    }
}


@media (max-width: 500px) {

    /* eco system */
    .eco-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }

    .eco-card-img {
        width: 100px;
        align-self: center;
    }

}


@media (max-width: 450px) {
    /* .about-banner-pillars {
        flex-direction: column;
    } */

    .about-pillar {
        align-items: center;
    }

    .about-pillar-web-span {
        display: none;
    }

    .about-pillar-mob-span {
        display: block;
        text-align: center ;
    }

    .stat {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .teq-banner-pills--mobile {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .our-concern-btn {
        gap: 8px;
        padding: 14px 12px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {

    /* statsbar */
    .training-cards {
        grid-template-columns: 1fr;
    }

    .statsbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .teq-banner-pills--mobile {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .hero-actions {
        flex-direction: column;
        align-items: start;
    }


    /* new wwb */
    .our-concern-logo img {
        width: 170px;
    }
}

@media (max-width: 350px) {
    .our-concern-logo img {
        width: 130px;
    }
}

@media (min-width :1600px) {

    .nav-links a,
    .nav-logo-text span:first-child {
        font-size: 18px;
    }

    .nav-logo-text span:last-child,
    .footer-logo-text span:last-child {
        font-size: 12px;
    }

    .hero-title {
        font-size: 50px;
    }

    .footer-logo-icon {
        width: 56px;
        height: 56px;
    }

    .footer-logo-icon img {
        width: 50px;
    }

    .nav-logo-icon {
        height: 50px;
        width: 50px;
    }

    .about-title,
    .wwb-title,
    .training-title,
    .eco-title,
    .tech-title,
    .clients-title,
    .testi-title,
    .footer-cta-title,
    .teq-clients-title,
    .new-wwb-title,
    .our-concern-title {
        font-size: 46px;
    }

    .hero-inner,
    .about-inner,
    .wwb-inner,
    .training-inner,
    .eco-inner,
    .tech-inner,
    .clients-inner,
    .testi-inner,
    .footer-cta-inner,
    .footer-inner {
        padding-right: 60px;
        padding-left: 60px;
    }

    .badge,
    .about-badge,
    .wwb-badge-pill,
    .training-badge,
    .eco-badge,
    .tech-badge,
    .cloud-banner-badge,
    .clients-badge-pill,
    .testi-badge,
    .footer-cta-badge,
    .teq-clients-badge,
    .new-wwb-badge,
    .our-concern-badge-text {
        font-size: 15px;
    }

    .hero-desc,
    .about-desc,
    .wwb-subtitle,
    .training-desc,
    .eco-subtitle,
    .tech-desc,
    .clients-desc,
    .testi-subtitle,
    .footer-cta-desc,
    .footer-brand-desc,
    .teq-clients-desc,
    .new-wwb-subtitle,
    .our-concern-desc,
    .our-concern-desc {
        font-size: 18px;
    }

    .btn-primary,
    .btn-outline,
    .wwb-cta-btn,
    .testi-cta-btn,
    .footer-cta-btn {
        font-size: 18px;
    }

    nav .btn-primary {
        font-size: 14px;
    }

    .stat-text strong {
        font-size: 16px;
    }

    .stat-text span,
    .about-pillar span {
        font-size: 15px;
    }

    .stat-icon,
    .about-stat-icon,
    .about-pillar-icon,
    .clients-banner-stat-icon,
    .tech-card-icon,
    .tech-logo-item img,
    .footer-contact-icon,
    .teq-banner-pill-icon,
    .new-wwb-tech-logos img,
    .new-wwb-more {
        width: 50px;
        height: 50px;
    }

    .about-stat-icon {
        font-size: 36px;
    }

    .partners-label,
    .footer-copy {
        font-size: 16px;
    }

    .about-stat-text strong,
    .about-pillar-icon i,
    .statsbar-text strong,
    .clients-banner-stat strong,
    .testi-bstat-text strong,
    .footer-contact-icon i,
    .teq-banner-pill-icon i {
        font-size: 26px;
    }

    .about-stat-text span,
    .clients-banner-stat span,
    .cloud-banner-desc,
    .testi-bstat-text span {
        font-size: 16px;
    }

    .about-card-title,
    .wwb-card-title,
    .clients-banner-left strong,
    .eco-card-title,
    .client-card-name,
    .teq-banner-stat-text span,
    .new-wwb-card-title {
        font-size: 20px;
    }

    .about-card-desc,
    .wwb-card-desc,
    .eco-card-desc,
    .client-card-sub,
    .testi-quote,
    .testi-person-info strong,
    .footer-links a,
    .footer-contact-text strong,
    .new-wwb-card-desc {
        font-size: 16px;
    }

    .about-banner-quote p,
    .statsbar-text h4,
    .training-card-content h3,
    .tech-card-title,
    .testi-cta-text {
        font-size: 18px;
    }

    .wwb-cta-label,
    .statsbar-text span,
    .training-card-content p,
    .eco-tag,
    .tech-card-sub,
    .cloud-logo-card span,
    .testi-role,
    .testi-company-name,
    .footer-col-title,
    .footer-contact-text span,
    .our-concern-feature-text p {
        font-size: 14px;
    }

    .wwb-cta-text span,
    .clients-banner-left p,
    .footer-bottom-links a,
    .teq-banner-sub {
        font-size: 15px;
    }

    .statsbar-icon {
        width: 60px;
        height: 60px;
    }

    .clients-banner-stat-icon i {
        font-size: 30px;
    }

    .eco-card-badge {
        font-size: 12px;
    }

    .cloud-logo-card img {
        height: 60px;
    }

    .testi-bstat>i {
        font-size: 34px;
    }

    .training-card {
        min-height: 350px;
    }

    .partners-owl .partner-logo {
        height: 34px;
    }

    .teq-banner-pill-text strong,
    .our-concern-feature-text h4 {
        font-size: 17px;
    }

    .teq-banner-pill-desc {
        font-size: 15px;
    }
}


@media ((min-width: 901px) and (max-width: 1200px)) {
    .our-concern-feature {
        flex-direction: column;
    }
}