.logo-wrap,
nav {
    align-items: center;
    display: flex;
}

.logo-icon,
.logo-wrap,
nav {
    display: flex;
}

.btn-quotes,
.eyebrow {
    text-transform: uppercase;
}

.btn-quotes,
.hero h1,
.logo-icon,
.logo-text {
    color: var(--white);
}

.btn-explore,
.btn-primary,
.btn-quotes,
.logo-wrap {
    text-decoration: none;
}

.logo-text,
.stat-item .num,
.wcu-header h2,
body {
    font-family: Poppins, sans-serif;
}

.cta-band,
.stats-grid,
.svc-card,
.tech-header,
.text-center,
.wcu-header {
    text-align: center;
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --teal: #00bfa5;
    --teal-dark: #009688;
    --teal-light: #00e5cc;
    --black: #080d0d;
    --white: #ffffff;
    --light-bg: #f8fffe;
    --text-dark: #1a2332;
    --text-muted: #6b7a8d;
    --border-light: #e8f5f3;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: var(--nav-ribbon-offset, 34px);

    left: 0;
    right: 0;
    z-index: 200;
    justify-content: space-between;
    padding: 0 3%;
    height: 70px;
    background: 0 0;
    transition: background .35s, box-shadow .35s;
}

nav.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

nav.scrolled .logo-text {
    color: var(--text-dark);
}

nav.scrolled .hamburger span {
    background: var(--text-dark);
}

/* Mobile: default to white navbar (even before scroll) */
@media(max-width:900px) {
    nav {
        background: var(--white);
        box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    }

    nav .logo-text {
        color: var(--text-dark);
    }

    nav .hamburger span {
        background: var(--text-dark);
    }

    /* Keep the white logo variant visible on mobile navbar */
    nav .imgw {
        display: none !important;
    }
    nav .imgb {
        display: block !important;
    }
}



/* Desktop menu is shown, hamburger is hidden */
.hamburger {
    display: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    padding: 0 .75rem;
    line-height: 1;
    white-space: nowrap;
    transition: color .2s;
}

nav.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--teal-light);
}

/* Mobile: show hamburger + hide full desktop links */
@media(max-width:900px){
    .hamburger{display:flex;}
    .nav-center{position:absolute; left:50%; transform:translateX(-50%);}
    .nav-link{display:none;}
}

/* Extra safety: never show hamburger on desktop */
@media(min-width:901px){
    .hamburger{display:none !important;}
}




/* Default state (no scroll) */
nav .imgw {
    display: block;
}
nav .imgb {
    display: none;
}

/* Scrolled state */
nav.scrolled .imgw {
    display: none;
}
nav.scrolled .imgb {
    display: block;
}


.logo-wrap {
    gap: 8px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -.5px;
    transition: color .3s;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--teal);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    align-items: center;
    justify-content: center;
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .5px;
    flex-shrink: 0;
}

.logo-icon1 {
    /* background-color: #f0f8ff; */
    border-radius: 15%
}

.btn-quotes,
.hero-dot {
    background: var(--teal);
}

.nav-center {
    position: absolute;
    left: 36%;
    /* transform: translateX(-50%); */
}



.about-img-card,
.about-visual,
.cta-band,
.cta-band h2,
.cta-band p,
.cta-btns,
.hero-content,
.services-cards-wrap,
.svc-card {
    position: relative;
}

.btn-quotes {
    padding: .6rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0, 191, 165, .4);
    display: inline-block;
}

.eyebrow,
.foot-col ul a:hover,
h2.section-title span {
    color: var(--teal);
}

.btn-quotes:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 191, 165, .5);
}

nav.scrolled .btn-quotes {
    box-shadow: 0 4px 16px rgba(0, 191, 165, .35);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: background .3s;
}

.hero::after,
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    z-index: 3;
    max-width: 560px;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero h1 .teal-line {
    color: #7de4d6;
    display: block;
}

.hero-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
}

.hero p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    max-width: 440px;
}

#network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: .8;
    pointer-events: auto;
    display: block;
    cursor: crosshair;
}

@media (max-width:900px) {
    #network-canvas {
        pointer-events: none;
        touch-action: pan-y;
    }
}

#repulse-circle-div {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: 2s infinite pulse;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: .1;
    }
}

section {
    padding: 100px 5%
}

.eyebrow {
    font-size: .8rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: .6rem;
}

.about-num-label,
.btn-explore {
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h2.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: .8rem;
    letter-spacing: -.5px;
}

.section-sub {
    font-size: .95rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

.text-center .section-sub {
    margin: 0 auto;
}

.services-cards-wrap {
    position: relative;
    padding: 5.5rem 5% 2.5rem;
    min-height: 620px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: visible;
}

.services-cards-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 191, 165, .08), transparent 40%), radial-gradient(circle at bottom left, rgba(0, 191, 165, .06), transparent 30%);
    pointer-events: none;
}

.services-heading,
.services-grid {
    position: relative;
    z-index: 1;
}

.services-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.services-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: .6rem;
}

.services-heading p {
    font-size: .95rem;
    color: var(--text-dark);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

.services-cards-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 191, 165, .08), transparent 40%), radial-gradient(circle at bottom left, rgba(0, 191, 165, .06), transparent 30%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: -1px;
    padding: 5rem 0 3rem;
    overflow: visible;
}

.svc-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.8rem 2rem 2.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .07), 0 2px 6px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 191, 165, .08);
    transition: transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s cubic-bezier(.25, .46, .45, .94), border-color .35s;
    transform: rotate(-3deg) translateY(0);
    will-change: transform;
    overflow: visible;
}

.about-img-card,
.cta-band,
.flag-circle,
.ribbon-wrapper,
.section-reveal-wrap,
.tech-section,
.wcu-section {
    overflow: hidden;
}

.svc-card:nth-child(odd) {
    transform: rotate(-3deg);
}

.svc-card:nth-child(2n) {
    transform: rotate(3deg);
}

.svc-card:hover {
    transform: rotate(0) translateY(-6px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12), 0 6px 16px rgba(0, 191, 165, .1);
    border-color: rgba(0, 191, 165, .18);
    z-index: 2;
}

.svc-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f4fffe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    border: 1.5px solid rgba(0, 191, 165, .15);
    box-shadow: 0 2px 12px rgba(0, 191, 165, .08);
    transition: box-shadow .35s, transform .35s;
}

.svc-card:hover .svc-icon-wrap {
    box-shadow: 0 4px 20px rgba(0, 191, 165, .18);
    transform: scale(1.06);
}

.svc-icon-wrap svg {
    width: 44px;
    height: 44px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: .8rem;
    letter-spacing: -.3px;
}

.svc-card p {
    font-size: .88rem;
    color: #8a9bb0;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.btn-explore {
    display: inline-block;
    padding: .65rem 2rem;
    border-radius: 50px;
    background: var(--teal);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.btn-explore:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.about-section,
.testi-section {
    background: var(--light-bg);
    border-top: 1px solid var(--border-light);
}

.testi-section {
    color: var(--white);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.testi-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 191, 165, .16), rgba(0, 0, 0, .08));
    pointer-events: none;
    z-index: 0;
}

.testi-section > * {
    position: relative;
    z-index: 1;
}

.testi-section .eyebrow,
.testi-section .section-title,
.testi-section .section-sub,
.testi-section .stars,
.testi-section .testi-text,
.testi-section .av-name,
.testi-section .av-role {
    color: var(--white);
}

.testi-section .testi-text {
    color: rgba(255, 255, 255, .86);
}

.testi-section .testi-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-card {
    background: linear-gradient(135deg, #0d2421, #1a3d39);
    border-radius: 20px;
    padding: 3rem 2.5rem;
}

.about-img-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 165, .25), transparent 70%);
}

.about-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
    margin-bottom: .3rem;
}

.about-num-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
}

.about-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

.pill,
.why-card h4 {
    color: var(--text-dark);
}

.about-list-item::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

.about-content .eyebrow,
.about-content .section-sub,
.about-content .section-title,
.wcu-right .wcu-text-block {
    text-align: left;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 1.8rem 0 2rem;
}

.pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: .5rem 1rem;
    border-radius: 100px;
    border: 1.5px solid var(--border-light);
    background: var(--white);
    font-size: .8rem;
    font-weight: 600;
}

.btn-primary,
.pill-dot,
.stats-section {
    background: var(--teal);
}

.av,
.av-name,
.btn-primary,
.why-card h4,
.why-num {
    font-weight: 700;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-block;
    padding: .85rem 2.5rem;
    border-radius: 50px;
    color: var(--white);
    font-size: .9rem;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0, 191, 165, .35);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 191, 165, .45);
}

.stats-section {
    padding: 60px 5%
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item .num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
}

.stat-item .lbl {
    font-size: .82rem;
    color: rgba(255, 255, 255, .8);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .25);
    height: 60px;
    margin: auto;
}

.testi-card,
.whyus-section {
    background: var(--white);
}

.testi-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
}

/* Team Section */
.team-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, rgba(0,191,165,0.06), rgba(255,255,255,0));
}
.team-section .section-title { margin-bottom: .4rem; }
.team-grid {
    /* max-width: 1200px; */
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.team-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(8,13,13,0.08);
    transition: transform .28s ease, box-shadow .28s ease;
    display: flex;
    flex-direction: column;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(8,13,13,0.12); }
.team-photo img { width: 100%; height: 500px; object-fit: cover; object-position: center; display: block; }

@media (max-width: 768px) {
    .team-photo img { object-position: center top; }
}
.team-card-body { padding: 1.1rem 1.25rem 1.6rem; text-align: center; }
.team-name { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: .25rem; }
.team-role { color: var(--teal); font-weight: 700; margin-bottom: .6rem; }
.team-note { color: var(--text-muted); font-size: .95rem; line-height: 1.5; }

@media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .team-photo img { height: 260px; }
}
@media (max-width: 768px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-photo img { height: 220px; }
}
@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-photo img { height: 200px; }
    .team-section { padding: 48px 5%; }
}

.stars,
.why-num {
    color: var(--teal);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.why-grid {
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    border-radius: 14px;
    border: 1.5px solid var(--border-light);
    transition: border-color .2s, box-shadow .2s;
}

.btn-white,
.testi-card {
    transition: transform .2s, box-shadow .2s;
}

.why-card:hover {
    border-color: var(--teal);
    box-shadow: 0 4px 24px rgba(0, 191, 165, .1);
}

.why-num {
    font-size: .7rem;
    text-transform: uppercase;
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: .5rem;
}

.why-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.testi-grid {
    gap: 1.5rem;
}

.testi-card {
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 191, 165, .1);
}

.btn-white:hover,
.scroll-top:hover {
    transform: translateY(-2px);
}

.stars {
    font-size: .9rem;
}

.testi-text {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.av,
.cta-band h2 {
    color: var(--white);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.av-name {
    font-size: .9rem;
    color: var(--text-dark);
}

.av-role {
    font-size: .75rem;
    color: var(--text-muted);
}

.cta-band {
    background: linear-gradient(135deg, #042e29, #0a3d38);
    padding: 80px 5%
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(0, 191, 165, .12), transparent);
}

.cta-band h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: .8rem;
}

.cta-band p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 2.5rem;
    font-size: .95rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ghost,
.btn-white {
    display: inline-block;
    padding: .85rem 2.5rem;
    font-size: .9rem;
    cursor: pointer;
    text-decoration: none;
}

.btn-white {
    border-radius: 50px;
    background: var(--white);
    color: var(--teal);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    border: none;
}

.btn-ghost,
.foot-logo-text {
    color: var(--white);
    font-weight: 700;
}

.btn-white:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}

.btn-ghost {
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, .4);
    transition: border-color .2s, background .2s;
    background: 0 0;
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
}

footer {
    background: #080d0d;
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.foot-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    text-decoration: none;
}

.foot-logo-text {
    font-size: 1.3rem;
}

.footer-bottom,
.soc {
    font-size: .8rem;
    display: flex;
}

footer p.foot-desc {
    font-size: .85rem;
    color: #ffffffe6;
    line-height: 1.7;
}

.foot-col h3 {
    /* font-size: .75rem; */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.foot-col ul a {
    font-size: .85rem;
    color: #ffffffe6;
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .35);
    flex-wrap: wrap;
    gap: 1rem;
}

.scroll-top,
.soc {
    align-items: center;
}

.social-row {
    display: flex;
    gap: .75rem;
}

.soc {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.mode-toggle,
.scroll-top {
    z-index: 150;
    background: var(--teal);
    color: var(--white);
    position: fixed;
}

.soc:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.scroll-top {
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: none;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 191, 165, .4);
    transition: transform .2s;
}

/* WhatsApp floating button (left bottom, like back-to-top button) */
.whatsapp-float {
    z-index: 250;
    background: #25D366;
    color: var(--white);
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
    transition: transform .2s, box-shadow .2s;
}

.whatsapp-float i {
    font-size: 1.2rem;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
}

.drawer-close,
.mode-toggle {
    cursor: pointer;
    align-items: center;
}

.scroll-top.show {
    display: flex;
}

.mode-toggle {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50% 0 0 50%;
    border: none;
    font-size: .9rem;
    display: flex;
    justify-content: center;
    box-shadow: -2px 0 12px rgba(0, 0, 0, .2);
}

.drawer-close,
.drawer-logo {
    font-size: 1.3rem;
    display: flex;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #080f0f;
    z-index: 300;
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    border-left: 1px solid rgba(0, 191, 165, .15);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 299;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

[data-reveal].not-revealed,
[data-reveal].revealed {
    opacity: 1 !important;
    filter: none !important;
}

.drawer-close {
    align-self: flex-end;
    background: 0 0;
    border: none;
    color: rgba(255, 255, 255, .6);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    justify-content: center;
    transition: color .2s, background .2s;
}

.drawer-close:hover {
    color: var(--teal);
    background: rgba(0, 191, 165, .1);
}

.drawer-logo {
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--white);
    margin: 1.5rem 0 2rem;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.drawer-link {
    display: block;
    padding: .85rem 1rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: color .2s, border-color .2s, background .2s;
}

.drawer-link:hover {
    color: var(--teal);
    border-color: rgba(0, 191, 165, .2);
    background: rgba(0, 191, 165, .06);
}

[data-reveal] {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-duration: .75s;
    will-change: opacity, transform;
}

[data-reveal].revealed {
    transform: none !important;
}

[data-reveal=up] {
    transform: translateY(60px);
}

[data-reveal=down] {
    transform: translateY(-50px);
}

[data-reveal=left] {
    transform: translateX(70px);
}

[data-reveal=right] {
    transform: translateX(-70px);
}

[data-reveal=zoom] {
    transform: scale(.85);
}

[data-reveal=flip] {
    transform: perspective(600px) rotateX(30deg) translateY(40px);
}

[data-reveal=fade] {
    transform: none;
}

[data-delay="100"] {
    transition-delay: 0.10s;
}

[data-delay="200"] {
    transition-delay: 0.20s;
}

[data-delay="300"] {
    transition-delay: 0.30s;
}

[data-delay="400"] {
    transition-delay: 0.40s;
}

[data-delay="500"] {
    transition-delay: 0.50s;
}

[data-delay="600"] {
    transition-delay: 0.60s;
}

[data-delay="700"] {
    transition-delay: 0.70s;
}

[data-delay="800"] {
    transition-delay: 0.80s;
}

@media (prefers-reduced-motion:reduce) {
    [data-reveal] {
        transition: opacity .3s !important;
        transform: none !important;
    }
}

@media(max-width:900px) {

    .about-img-card,
    .hero p,
    .hero-content {
        max-width: 100%
    }

    nav {
        gap: 1rem;
        flex-wrap: nowrap;
        padding: 0 4%
    }

    .nav-center {
        position: static;
        transform: none;
    }

    .hero {
        min-height: 100svh;
        align-items: center;
        padding: 100px 6% 60px;
        background-position: right center;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }

    .hero p {
        font-size: .9rem;
    }

    .about-grid,
    .footer-grid,
    .services-grid,
    .testi-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        gap: 1.5rem;
        padding: 3rem 0 2rem;
    }

    .svc-card:nth-child(odd) {
        transform: rotate(-2deg);
    }

    .svc-card:nth-child(2n) {
        transform: rotate(2deg);
    }

    .about-grid {
        gap: 2.5rem !important;
    }

    .about-num {
        font-size: 3rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    section {
        padding: 70px 5%
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: .8rem;
    }

    .about-section {
        padding: 60px 20px;
        overflow: hidden;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content,
    .about-visual {
        width: 100%;
        max-width: 100%
    }

    .about-img-card {
        width: 100%;
        padding: 25px;
    }

    .about-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .about-stats>div {
        width: 45%;
        text-align: center;
    }

    .feature-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .btn-quotes {
        display: none;
    }
}

.ribbon-wrapper,
.wcu-center,
.wcu-header,
.wcu-icon-pair,
.wcu-layout,
.wcu-section,
.world-map-wrap {
    position: relative;
}

@media(max-width:600px) {
    nav {
        padding: 0 5%;
        height: 64px;
    }

    .foot-logo-text,
    .logo-text,
    .svc-card h3 {
        font-size: 1.1rem;
    }

    .whatsapp-float {
        bottom: 1.2rem;
        left: 1.2rem;
        width: 38px;
        height: 38px;
    }

    .whatsapp-float i {
        font-size: 1rem;
    }


    .hero {
        padding: 90px 5% 50px;
        align-items: flex-end;
        background-position: 50% center;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: .95rem;
        margin-bottom: 0;
        color: #fff;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0 1rem;
    }

    .services-heading h2 {
        font-size: 1.8rem;
    }

    /* .svc-card:nth-child(2n),
    .svc-card:nth-child(odd) {
        transform: rotate(0);
    } */

    .svc-card:hover {
        transform: translateY(-4px) !important;
    }

    .services-cards-wrap {
        padding: 0 4%;
        background-image: url('../services_ai_bg.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        background-attachment: scroll;
    }

    .svc-card {
        padding: 1.8rem 1.5rem;
    }

    .svc-icon-wrap {
        width: 72px;
        height: 72px;
    }

    .svc-icon-wrap svg {
        width: 36px;
        height: 36px;
    }

    .about-img-card {
        padding: 2rem 1.5rem;
    }

    .about-num {
        font-size: 2.5rem;
    }

    .feature-pills {
        gap: .5rem;
    }

    .pill {
        font-size: .75rem;
        padding: .4rem .8rem;
    }

    .stats-section {
        padding: 50px 5%
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .footer-grid,
    .testi-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .stat-item .num {
        font-size: 2.2rem;
    }

    .why-grid {
        gap: 1rem;
    }

    .testi-card,
    .why-card {
        padding: 1.5rem;
    }

    .testi-section {
        background-attachment: scroll;
    }

    .cta-band,
    section {
        padding: 60px 5%
    }

    .cta-band h2,
    h2.section-title {
        font-size: 1.7rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-ghost,
    .btn-white {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section-sub {
        font-size: .875rem;
    }

    .footer-grid {
        gap: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: .8rem;
        font-size: .75rem;
    }

    footer {
        padding: 50px 5% 24px;
    }

    .scroll-top {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media(max-width:400px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: .82rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .btn-quotes {
        padding: .5rem 1.4rem;
        font-size: .75rem;
        letter-spacing: 1px;
    }

    h2.section-title {
        font-size: 1.5rem;
    }

    .about-num {
        font-size: 2rem;
    }
}

.wcu-section {
    background-color: var(--black);
    padding: 100px 5%;
    overflow: hidden;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wcu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 191, 165, .18), rgba(0, 0, 0, .08));
    pointer-events: none;
    z-index: 0;
}

.wcu-section > * {
    position: relative;
    z-index: 1;
}

.wcu-section .eyebrow,
.wcu-section .wcu-header h2,
.wcu-section .wcu-header p,
.wcu-section .wcu-title,
.wcu-section .wcu-desc {
    color: var(--white);
}

.wcu-section .wcu-row {
    border-bottom-color: rgba(255, 255, 255, .16);
}

.wcu-section .wcu-desc {
    color: rgba(255, 255, 255, .82);
}

.wcu-header {
    margin-bottom: 4rem;
}

.wcu-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -.5px;
    margin-bottom: .6rem;
}

.clients-world-section h2,
.tech-header h2 {
    font-family: Poppins, sans-serif;
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: .5rem;
}

.wcu-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

.wcu-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0 2rem;
    align-items: start;
}

.wcu-left,
.wcu-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wcu-row {
    display: grid;
    grid-template-columns: 1fr 70px;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 191, 165, .08);
}

.wcu-row:last-child {
    border-bottom: none;
}

.wcu-row.right-row {
    grid-template-columns: 70px 1fr;
}

.wcu-left .wcu-text-block {
    text-align: right;
}

.wcu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .4rem;
    font-family: Poppins, sans-serif;
}

.wcu-desc {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.wcu-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.wcu-center::before {
    content: '';
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(0, 191, 165, .2) 20%, rgba(0, 191, 165, .2) 80%, transparent);
    transform: translateX(-50%);
}

.wcu-icon-pair {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.55rem 0;
    z-index: 1;
}

.wcu-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}

.wcu-icon:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}

.wcu-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-blue {
    background: linear-gradient(135deg, #4f8ef7, #2563eb);
}

.icon-red {
    background: linear-gradient(135deg, #f87171, #dc2626);
}

.icon-gray {
    background: linear-gradient(135deg, #6b7280, #374151);
}

.icon-yellow {
    background: linear-gradient(135deg, #fbbf24, #d97706);
}

.icon-green {
    background: linear-gradient(135deg, #34d399, #059669);
}

.icon-teal {
    background: linear-gradient(135deg, #2dd4bf, #0d9488);
}

.clients-world-section,
.tech-card,
.tech-section {
    background: var(--white);
}

.wcu-illustration {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 1rem;
}

.tech-section {
    padding: 90px 0 80px;
    border-top: 1px solid var(--border-light);
}

.tech-header {
    padding: 0 5%;
    margin-bottom: 3.5rem;
}

.tech-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-dark);
}

.tech-header p {
    font-size: .95rem;
    color: var(--text-muted);
}

.ribbon-wrapper {
    width: 100%;
    margin-bottom: 1.5rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ribbon-wrapper:last-child {
    margin-bottom: 0;
}

.ribbon-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.ribbon-track.scroll-left {
    animation-name: scrollLeft;
    animation-duration: 35s;
}

.ribbon-track.scroll-right {
    animation-name: scrollRight;
    animation-duration: 40s;
}

.ribbon-wrapper:hover .ribbon-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.tech-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: .9rem 1.8rem;
    border: 1.5px solid #e8edf3;
    border-radius: 14px;
    min-width: 190px;
    height: 76px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    transition: border-color .25s, box-shadow .25s, transform .25s;
    cursor: default;
    user-select: none;
}

.tech-card:hover {
    border-color: rgba(0, 191, 165, .35);
    box-shadow: 0 6px 24px rgba(0, 191, 165, .12);
    transform: translateY(-3px);
}

.tech-card .t-logo {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.tech-card .t-name {
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.tc-django .t-name {
    color: #092e20;
}

.tc-php .t-name {
    color: #4f5b93;
}

.tc-ci .t-name {
    color: #dd4814;
}

.tc-laravel .t-name {
    color: #ff2d20;
}

.tc-python .t-name {
    color: #3670a0;
}

.tc-react .t-name {
    color: #61dafb;
}

.tc-node .t-name {
    color: #3c873a;
}

.tc-vue .t-name {
    color: #41b883;
}

.tc-ts .t-name {
    color: #3178c6;
}

.tc-postgres .t-name {
    color: #336791;
}

.tc-ionic .t-name {
    color: #3880ff;
}

.tc-woo .t-name {
    color: #96588a;
}

.tc-magento .t-name {
    color: #f46f25;
}

.tc-shopify .t-name {
    color: #96bf48;
}

.tc-aws .t-name {
    color: #f90;
}

.tc-docker .t-name {
    color: #2496ed;
}

.tc-mongo .t-name {
    color: #4db33d;
}

.tc-next .t-name {
    color: #000;
}

.clients-world-section {
    padding: 90px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.clients-world-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
}

.clients-world-section .sub {
    font-size: .95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.world-map-wrap {
    margin-top: 2.5rem;
}

.world-map-bg {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: block;
    opacity: .13;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    z-index: 0;
}

.flag-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0 1rem;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    cursor: default;
}

.flag-circle {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12), 0 0 0 4px rgba(255, 255, 255, .9), 0 0 0 6px rgba(0, 0, 0, .06);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s;
    position: relative;
    flex-shrink: 0;
}

.flag-circle img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    padding: 2px 0 0 5px;
}

.flag-circle:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16), 0 0 0 4px rgba(255, 255, 255, .9), 0 0 0 7px rgba(0, 191, 165, .3);
}

.flag-emoji {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    line-height: 1;
    transform: scale(1.15);
}

.flag-label {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: .2px;
}

@keyframes pulseRing {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, .12), 0 0 0 4px rgba(255, 255, 255, .9), 0 0 0 6px rgba(0, 191, 165, 0);
    }

    50% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, .12), 0 0 0 4px rgba(255, 255, 255, .9), 0 0 0 14px rgba(0, 191, 165, .2);
    }
}

.flag-circle.pulse {
    animation: 3s ease-in-out infinite pulseRing;
}

.flag-circle.pulse-delay {
    animation: 3s ease-in-out 1.5s infinite pulseRing;
}

@media(max-width:900px) {
    .wcu-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wcu-center {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 2rem 0;
        display: none;
    }

    .wcu-center::before,
    .wcu-illustration {
        display: none;
    }

    .wcu-icon-pair {
        padding: 0;
    }

    .wcu-left .wcu-row,
    .wcu-right .wcu-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wcu-left .wcu-text-block,
    .wcu-right .wcu-text-block {
        text-align: center;
    }

    .wcu-row {
        justify-items: center;
    }

    .flag-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem 1rem;
    }

    .flag-circle {
        width: 74px;
        height: 74px;
    }

    .flag-emoji {
        font-size: 2.6rem;
    }
}

@media(max-width:600px) {
    .wcu-section {
        padding: 60px 5%;
        background-attachment: scroll;
    }

    /* Fix: ensure testimonial background image scales correctly on mobile */
    .testi-section {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center top;
    }


    .wcu-header h2 {
        font-size: 1.7rem;
    }

    .wcu-icon {
        width: 52px;
        height: 52px;
    }

    .wcu-icon svg {
        width: 24px;
        height: 24px;
    }

    .tech-section {
        padding: 60px 0;
    }

    .tech-card {
        min-width: 150px;
        height: 64px;
        padding: .7rem 1.2rem;
    }

    .tech-card .t-name {
        font-size: .88rem;
    }

    .tech-card .t-logo {
        font-size: 1.3rem;
    }

    .ribbon-track.scroll-left {
        animation-duration: 25s;
    }

    .ribbon-track.scroll-right {
        animation-duration: 30s;
    }

    .clients-world-section {
        padding: 60px 4%
    }

    .flag-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem .8rem;
    }

    .flag-circle {
        width: 66px;
        height: 66px;
    }

    .flag-emoji {
        font-size: 2.2rem;
    }

    .flag-label {
        font-size: .78rem;
    }

    .clients-world-section h2 {
        font-size: 1.6rem;
    }
}

@media(max-width:380px) {
    .flag-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem .5rem;
    }

    .flag-circle {
        width: 58px;
        height: 58px;
    }

    .flag-emoji {
        font-size: 1.9rem;
    }
}