 
@import url('https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,400;1,400&family=Inter:wght@300;400;600;700;800&family=Teko:wght@400;600;700&display=swap');

:root {
    --tp-ff-teko: 'Teko', serif;
    --tp-ff-body: 'Inter', sans-serif;
    --tp-ff-heading: 'Inter', sans-serif;
    --tp-ff-inter: 'Inter', sans-serif;
    --tp-ff-p: 'Inter', sans-serif;
    --tp-ff-besley: 'Besley', serif;
    
    --nexs-primary: #6366f1;
    --nexs-accent: #c0ff00;
}

body {
    font-family: var(--tp-ff-body);
    color: #1e293b;
    line-height: 1.6;
}

/* Impactful Headings */
h1, h2, h3 {
    font-family: var(--tp-ff-teko);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Elegant Subtitles/Quotes */
.accent-text {
    font-family: var(--tp-ff-besley);
    font-style: italic;
    opacity: 0.8;
}

 
 






:root {
    --nexs-primary: #141414;
    --nexs-accent: #c0ff00;
    --nexs-bg-glass: rgba(255, 255, 255, 0.9);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Glassmorphism Sticky Logic */
.main-navbar {
    position: fixed;
    top: 0; width: 100%; z-index: 2000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
}

.main-navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.logo {
    max-height: 70px;
    max-width: 200px;
}


.dropdown-menu[data-bs-popper] {
top: 58% !important;
    left: 0;
}
/* 3D Mega Menu Animation (Desktop Only) */
@media (min-width: 992px) {
    .megamenu {
        position: absolute;
        width: 95vw;
        left: 2.5vw;
        top: 60%;
        background: var(--nexs-bg-glass);
        backdrop-filter: blur(30px);
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(255,255,255,0.5);
        opacity: 0;
        visibility: hidden;
        transform: perspective(1000px) rotateX(-10deg) translateY(20px);
        transition: var(--transition);
        padding: 1.5rem;
        border: 1px solid rgba(255,255,255,0.4);
        z-index: 1000;
    }

    .nav-item.dropdown:hover > .megamenu {
        opacity: 1;
        visibility: visible;
        transform: perspective(1000px) rotateX(0deg) translateY(10px);
    }
}

/* Service Item Styling */
.service-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 5px;
    background: transparent;
}

.service-item:hover {
    background: #c0ff00;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #eff2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: var(--nexs-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: var(--nexs-primary);
    color: #fff;
    transform: rotateY(180deg);
}

.category-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--nexs-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 1.5rem 0 1rem 0;
    display: block;
    opacity: 0.7;
}

/* Buttons */
.btn-nexs-call {
    background-color: var(--nexs-accent);
    color: #000 !important;
    font-weight: 800;
    border-radius: 14px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 0px #a8e000;
    text-decoration: none;
    border: none;
}

.btn-nexs-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(192, 255, 0, 0.4);
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #1e293b !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 7px 13px !important;
    margin: auto 5px;
    border-radius: 10px;
    transition: all 0.4s ease;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }
}

/* --- MOBILE OFFCANVAS FIXES --- */
@media (max-width: 991px) {
    .offcanvas {
        width: 100% !important; /* Full screen width */
        height: 100vh !important; /* Full screen height */
        border: none !important;
    }

    .offcanvas-body {
        display: flex;
        flex-direction: column;
        padding: 2rem !important;
    }

    .megamenu {
        display: none; /* Hidden by default on mobile */
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none !important;
    }

    /* Show megamenu when dropdown is clicked on mobile */
    .nav-item.dropdown.show .megamenu {
        display: block;
    }

    .nav-link {
        font-size: 1.5rem !important; /* Larger text for mobile */
        padding: 15px 0 !important;
        border-bottom: 1px solid #f0f0f0;
        margin: 0 !important;
    }

    .category-label {
        margin-top: 2rem;
        color: #6366f1;
    }

    .btn-nexs-call {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
        font-size: 1.1rem;
    }
    
    .navbar-toggler {
        font-size: 1.5rem;
        color: var(--nexs-primary);
    }
}

@media (max-width: 991.98px) {
    .megamenu {
        position: static !important;
        width: 100% !important;
        padding: 1rem 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        display: none; /* Controlled by .show class via JS/Bootstrap */
    }
    
    .megamenu.show {
        display: block;
    }

    .service-item {
        padding: 12px 15px !important;
        margin-bottom: 5px;
        background: rgba(0,0,0,0.03);
        border-radius: 8px;
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .category-label {
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #666;
        margin-top: 15px;
    }
}

/* Logo Styling */
.navbar-brand .logo {
    width: auto;
    height: 45px;
    display: block;
    position: relative; 
    /* Triggers the combined reveal and pulse every 10 seconds */
    animation: logoRevealAndPulse 10s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    
    /* Initial state: hidden */
    clip-path: inset(0 100% 0 0); 
}

@keyframes logoRevealAndPulse {
    /* 0% to 15% (1.5s of 10s): The Reveal Phase */
    0% {
        clip-path: inset(0 100% 0 0);
        transform: translateX(-20px);
        filter: brightness(2);
    }
    15% {
        clip-path: inset(0 0 0 0);
        transform: translateX(0);
        filter: brightness(1);
    }
    /* 15% to 85%: Static Phase (Stay visible) */
    85% {
        clip-path: inset(0 0 0 0);
        transform: scale(1);
        filter: brightness(1);
    }
    /* 90%: Subtle Pulse / Shine Phase */
    90% {
        transform: scale(1.05);
        filter: brightness(1.2) drop-shadow(0 0 8px rgba(192, 255, 0, 0.6));
    }
    /* 95% to 100%: Reset for the next reveal loop */
    95%, 100% {
        clip-path: inset(0 0 0 0);
        transform: scale(1);
        filter: brightness(1);
    }
}

.navbar-brand:hover .logo {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(192, 255, 0, 0.4));
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.bg-green{
    background-color: #c0ff00;
}






/* hero  */
 /* Reset & Base Styling */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body, html {
        background-color: #fdfdf8; /* Exact off-white background */
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: #141414;
        overflow-x: hidden;
    }

    /* --- FIXED BLURRED BACKGROUNDS --- */
    .bg-layer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        pointer-events: none;
    }

    /* Fixed Left Blurred Background */
    .blur-left-green {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(192, 255, 0, 0.35) 0%, rgba(253, 253, 248, 0) 70%);
        filter: blur(80px);
        top: 20%;
        left: -200px; /* Positions it exactly as shown in reference */
    }

    /* --- HERO LAYOUT --- */
    .hero-wrapper {
        display: flex;
        min-height: 100vh;
        align-items: center;
        padding: 0 3%;
        position: relative;
    }

    .content-area {
        flex: 1.2;
        padding-right: 40px;
    }

    .badge-top {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    .main-heading {
        font-size: clamp(3.5rem, 8vw, 6.2rem);
        font-weight: 800;
        line-height: 0.92;
        margin-bottom: 45px;
        letter-spacing: -4px;
        text-align: start;
    }

    .btn-get-touch {
        background: #141414;
        color: #fff;
        padding: 22px 42px;
        border-radius: 15px;
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: transform 0.3s ease;
    }

    .btn-get-touch:hover {
        transform: translateY(-5px);
    }

    /* --- STATS SECTION --- */
    .stats-container {
        display: flex;
        gap: 70px;
        margin-top: 50px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .stats-container.reveal {
        opacity: 1;
        transform: translateY(0);
    }

    .stat-number {
        font-size: 65px;
        font-weight: 800;
        margin-bottom: 0;
        letter-spacing: -2px;
    }

    .stat-text {
        color: #666;
        font-size: 15px;
        line-height: 1.4;
        max-width: 160px;
    }

    /* --- IMAGE & SAY HI BOX --- */
    .visual-area {
        flex: 1;
        position: relative;
    }

    .hero-img {
        width: 100%;
        border-radius: 45px;
        box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    }

    .say-hi-card {
        position: absolute;
        bottom: 50px;
        left: -60px;
        background: #fff;
        padding: 40px;
        border-radius: 35px;
        box-shadow: 0 35px 70px rgba(0,0,0,0.1);
        max-width: 270px;
        z-index: 5;
        animation: floating 5s ease-in-out infinite;
    }

    .say-hi-title {
        font-family: 'Comic Sans MS', cursive; /* Mimics hand-drawn style */
        font-size: 26px;
        font-weight: 900;
        margin-bottom: 12px;
        display: block;
        color: #141414;
    }

    .say-hi-card h4 {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.25;
        margin: 0;
    }

    @keyframes floating {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-wrapper { flex-direction: column; text-align: center; padding-top: 140px; }
        .content-area { padding-right: 0; margin-bottom: 60px;  text-align: justify;}
        .stats-container { justify-content: center; }
        .say-hi-card { position: relative; left: 0; margin: 30px auto; }
    }










    /* about us  */
    /* Section Container - Initial State for Scroll Reveal */
    .about-section {
        padding: 50px 10%;
        background-color: #fdfdf8; /* Authentic off-white */
        position: relative;
        overflow: hidden;
        /* Section Reveal State */
        opacity: 0;
        transform: translateY(100px);
        transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Triggered by JS when section appears */
    .about-section.section-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .about-blur-accent {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(192, 255, 0, 0.2) 0%, rgba(253, 253, 248, 0) 70%);
        filter: blur(100px);
        bottom: -10%;
        right: -10%;
        z-index: 1;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 0.8fr 2fr;
        gap: 60px;
        position: relative;
        z-index: 2;
    }

    /* Sidebar Style */
    .about-label {
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 2px;
        height: fit-content;
        margin-top: 20px;
    }

    .about-label::after {
        content: "";
        width: 50px;
        height: 1px;
        background: #141414;
    }

    /* Typography */
    .about-main-text {
        font-size: clamp(2.8rem, 5.5vw, 4.5rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -3px;
        color: #141414;
        margin-bottom: 50px;
    }

    .text-muted {
        color: #a0a0a0; /* Greyed out secondary text */
    }

    /* Details Area */
    .about-details-box {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .scroll-down-icon {
        width: 50px;
        height: 90px;
        border: 1px solid #e0e0e0;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        padding-top: 15px;
    }

    .scroll-down-icon i {
        font-size: 14px;
        animation: arrowBounce 2s infinite;
    }

    @keyframes arrowBounce {
        0%, 100% { transform: translateY(0); opacity: 0.3; }
        50% { transform: translateY(20px); opacity: 1; }
    }

    .description-text {
        font-size: 19px;
        line-height: 1.6;
        color: #333;
        max-width: 600px;
    }

    /* Button Wrap */
    .cta-wrap {
        display: flex;
        align-items: center;
        margin-top: 50px;
        cursor: pointer;
    }

    .about-btn {
        padding: 20px 45px;
        border: 1.5px solid #141414;
        border-radius: 100px;
        font-weight: 700;
        text-decoration: none;
        color: #141414;
        transition: 0.4s;
    }

    .btn-circle {
        width: 60px;
        height: 60px;
        background: #141414;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-left: -10px;
        transition: 0.4s;
    }

    .cta-wrap:hover .about-btn { background: #141414; color: white; }
    .cta-wrap:hover .btn-circle { 
        background: #c0ff00; /* Neon green accent */
        color: #141414;
        transform: rotate(45deg); 
    }

    /* NEW: Floating GFX (No Rotation) */
    .floating-gfx {
        position: absolute;
        right: -7%;
        top: 15%;
        width: 300px;
        z-index: 3;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
        /* Smooth floating up/down instead of rotating */
        animation: smoothFloat 6s ease-in-out infinite;
    }

    @keyframes smoothFloat {
        0%, 100% { transform: translateY(0) rotate(2deg); }
        50% { transform: translateY(-30px) rotate(-2deg); }
    }

    @media (max-width: 991px) {
        .about-grid { grid-template-columns: 1fr; }
        .floating-gfx { display: none; }
    }









     :root {
        --nx-neon: #c0ff00;
        --nx-dark: #141414;
        --nx-white: #fdfdf8;
        --nx-soft-grey: rgba(20, 20, 20, 0.08);
    }

    .nx-services-section {
        background-color: var(--nx-white);
        padding: 80px 0;
        overflow: hidden;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .nx-container { 
        margin: 0 auto;
        padding: 0 5%;
    }

    /* Minimalist Category Header */
    .nx-cat-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .nx-cat-title {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #888;
        white-space: nowrap;
    }

    .nx-cat-line {
        flex-grow: 1;
        height: 1px;
        background: var(--nx-soft-grey);
    }

    /* --- COMPACT ROWS --- */
    .nx-expertise-row {
        border-bottom: 1px solid var(--nx-soft-grey);
        padding: 22px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        position: relative;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 8px;
    }

    /* Hover Effect: Neon Background Slide */
    .nx-expertise-row::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--nx-neon);
        z-index: -1;
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 6px;
    }

    .nx-expertise-row:hover::before {
        transform: scaleY(1);
        transform-origin: top;
    }

    .nx-expertise-row:hover {
        transform: translateX(10px);
    }

    .nx-service-label {
        font-size: clamp(1.4rem, 3vw, 2.2rem);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -1px;
        color: var(--nx-dark);
        margin: 0;
        transition: color 0.3s ease;
    }

    .nx-expertise-row:hover .nx-service-label {
        color: #000;
    }

    /* Compact Arrow */
    .nx-arrow-box {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: 0.4s ease;
    }

    .nx-expertise-row:hover .nx-arrow-box {
        background: var(--nx-dark);
        color: var(--nx-neon);
        transform: rotate(-45deg);
        border-color: var(--nx-dark);
    }

    .nx-sub-text {
        font-size: 11px;
        font-weight: 600;
        color: #999;
        margin-right: 20px;
        min-width: 25px;
    }

    @media (max-width: 768px) {
        .nx-service-label { font-size: 1.5rem; }
        .nx-expertise-row { padding: 18px 10px; }
    }








     :root {
        --nx-neon: #c0ff00;
        --nx-dark: #141414;
        --nx-glass: rgba(255, 255, 255, 0.7);
    }

    .dev-showcase {
        background-color: #fdfdf8;
        padding: 60px 0;
        overflow: hidden;
        font-family: 'Plus Jakarta Sans', sans-serif;
        position: relative;
    }

    /* Floating Abstract Circles */
    .bg-circle {
        position: absolute;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 50%;
        z-index: 1;
    }
    .c1 { width: 600px; height: 600px; top: -10%; right: -5%; }
    .c2 { width: 800px; height: 800px; top: -20%; right: -10%; }

    .dev-grid {
        display: flex;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 5%;
        gap: 40px;
    }

    /* Content Area */
    .dev-text { flex: 1; z-index: 10; }
    
    .dev-tag {
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--nx-dark);
        margin-bottom: 20px;
        display: block;
    }

    .dev-title {
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 800;
        line-height: 0.95;
        letter-spacing: -3px;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

    /* 3D Visual Area */
    .dev-visual {
        flex: 1.2;
        position: relative;
        display: flex;
        justify-content: center;
        perspective: 1000px;
    }

    .mockup-container {
        transform: rotateX(15deg) rotateY(-25deg) rotateZ(10deg); /* 3D Perspective */
        transition: transform 0.5s ease;
        z-index: 5;
    }

    .main-device {
        width: 320px;
        filter: drop-shadow(50px 80px 100px rgba(0,0,0,0.15));
        border-radius: 45px;
    }

    /* Glassmorphic Floating Nodes */
    .glass-node {
        position: absolute;
        background: var(--nx-glass);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.4);
        padding: 15px 25px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        font-size: 14px;
        z-index: 10;
    }

    .node-1 { top: 10%; right: -5%; }
    .node-2 { bottom: 15%; left: -10%; }
    .node-3 { top: 45%; left: -15%; }

    .node-icon {
        width: 32px;
        height: 32px;
        background: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    @media (max-width: 991px) {
        .dev-grid { flex-direction: column; text-align: center; }
        .dev-visual { margin-top: 80px; transform: scale(0.8); }
        .node-3 { display: none; }
    }








 :root {
        --nx-neon: #c0ff00;
        --nx-dark: #141414;
        --nx-bg: #fdfdf8;
    }

    /* Trust / Stats Banner */
    .nx-trust-banner {
        background: var(--nx-dark);
        padding: 60px 5%;
        color: white;
        display: flex;
        justify-content: space-around;
        text-align: center;
        border-radius: 24px;
        margin: 0 5% 100px 5%;
    }

    .trust-item h3 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        margin: 0;
        font-weight: 800;
        color: var(--nx-neon);
    }

    .trust-item p {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #888;
        margin-top: 5px;
    }

    /* Portfolio Section */
    .nx-portfolio-section {
        background-color: var(--nx-bg);
        padding: 40px 5%;
    }

    .nx-portfolio-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 60px;
    }

    .nx-portfolio-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
        font-weight: 800;
        line-height: 0.9;
        letter-spacing: -3px;
        text-transform: uppercase;
    }

    /* Creative Grid */
    .nx-work-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .nx-work-card {
        position: relative;
        border-radius: 32px;
        overflow: hidden;
        background: #eee;
        cursor: pointer;
        height: 500px; /* Standardized height for impact */
    }

    .nx-work-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nx-work-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nx-work-card:hover img {
        transform: scale(1.05);
    }

    .nx-work-card:hover .nx-work-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .nx-work-tag {
        font-size: 12px;
        text-transform: uppercase;
        background: var(--nx-neon);
        color: black;
        padding: 5px 15px;
        border-radius: 100px;
        font-weight: 800;
        margin-bottom: 10px;
        display: inline-block;
    }

    @media (max-width: 991px) {
        .nx-work-grid { grid-template-columns: 1fr; }
        .nx-trust-banner { flex-direction: column; gap: 40px; }
        .nx-work-card { height: 400px; }
    }















     :root {
        --nx-neon: #c0ff00;
        --nx-dark: #141414;
        --nx-neon-muted: #b0e600;
    }

    .nx-skills-section {
        background-color: var(--nx-neon);
        padding: 0 0 120px 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
        position: relative;
    }

    /* Subtle Background Detail */
    .nx-skills-section::after {
        content: "NEXS";
        position: absolute;
        bottom: -50px;
        right: -20px;
        font-size: 25vw;
        font-weight: 900;
        color: rgba(0,0,0,0.03);
        z-index: 0;
        pointer-events: none;
    }

    /* Moving Ticker */
    .nx-ticker-wrap {
        background: var(--nx-dark);
        padding: 22px 0;
        display: flex;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        z-index: 2;
    }

    .nx-ticker-content {
        display: flex;
        animation: tickerMove 25s linear infinite;
    }

    .nx-ticker-item {
        color: var(--nx-neon);
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        margin-right: 60px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nx-ticker-item i { font-size: 8px; }

    @keyframes tickerMove {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Layout */
    .nx-skills-container {
        max-width: 1400px;
        margin: 100px auto 0;
        padding: 0 6%;
        position: relative;
        z-index: 1;
    }

    .nx-skills-big-title {
        font-size: clamp(4.5rem, 15vw, 12rem);
        font-weight: 900;
        color: var(--nx-dark);
        line-height: 0.85;
        letter-spacing: -6px;
        margin-bottom: 80px;
        text-transform: uppercase;
    }

    .nx-skills-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0; /* Changed to 0 for a connected look */
        border-top: 2px solid var(--nx-dark);
    }

    .nx-skill-col {
        padding: 60px 40px;
        border-right: 1px solid rgba(20, 20, 20, 0.1);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        background: transparent;
    }

    .nx-skill-col:last-child { border-right: none; }

    /* Interactive Hover State */
    .nx-skill-col:hover {
        background: rgba(20, 20, 20, 0.03);
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .nx-skill-col h4 {
        font-size: 26px;
        font-weight: 900;
        margin-bottom: 35px;
        text-transform: uppercase;
        color: var(--nx-dark);
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nx-skill-col h4::before {
        content: "";
        width: 12px;
        height: 12px;
        background: var(--nx-dark);
        border-radius: 2px;
    }

    .nx-skill-list {
        list-style: none;
        padding: 0;
    }

    .nx-skill-list li {
        font-size: 19px;
        font-weight: 600;
        padding: 10px 0;
        color: rgba(20, 20, 20, 0.85);
        transition: transform 0.3s ease;
        display: block;
    }

    .nx-skill-col:hover .nx-skill-list li {
        transform: translateX(10px);
    }

    .nx-skill-list li:hover {
        color: var(--nx-dark);
    }

    @media (max-width: 991px) {
        .nx-skills-grid { grid-template-columns: 1fr; }
        .nx-skill-col { border-right: none; border-bottom: 1px solid rgba(20, 20, 20, 0.1); padding: 50px 0; }
        .nx-skills-big-title { letter-spacing: -3px; margin-bottom: 40px; }
    }









 :root {
        --nx-neon: #c0ff00;
        --nx-dark: #141414;
        --nx-bg: #fdfdf8;
    }

    .nx-testimonial-section {
        background-color: var(--nx-bg);
        padding: 50px 0;
        overflow: hidden;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .nx-section-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-left: 8%;
        margin-bottom: 50px;
    }

    .nx-header-label {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .nx-header-line {
        width: 100px;
        height: 1px;
        background: #141414;
    }

    /* Horizontal Scroll Wrapper */
    .nx-testimonial-slider {
        display: flex;
        gap: 30px;
        padding: 20px 8%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }

    .nx-testimonial-slider::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

    /* Card Styling */
    .nx-testi-card {
        min-width: 450px;
        background: white;
        padding: 60px 50px;
        border-radius: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.03);
        scroll-snap-align: start;
        transition: all 0.4s ease;
        border: 1px solid rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .nx-testi-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        border-color: var(--nx-neon);
    }

    .nx-testi-user {
        margin-bottom: 30px;
    }

    .nx-user-name {
        font-size: 20px;
        font-weight: 800;
        color: var(--nx-dark);
        margin: 0;
    }

    .nx-user-role {
        font-size: 14px;
        color: #888;
        font-weight: 600;
    }

    /* Rating UI */
    .nx-rating-box {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .nx-rating-num {
        font-size: 64px;
        font-weight: 900;
        line-height: 1;
        letter-spacing: -2px;
        color: var(--nx-dark);
    }

    .nx-stars {
        color: #FFD700;
        font-size: 18px;
        letter-spacing: 2px;
    }

    .nx-testi-text {
        font-size: 22px;
        line-height: 1.5;
        font-weight: 600;
        color: #444;
        margin: 0;
    }

    @media (max-width: 768px) {
        .nx-testi-card { min-width: 85vw; padding: 40px 30px; }
        .nx-rating-num { font-size: 48px; }
        .nx-testi-text { font-size: 18px; }
    } 
    .nx-testimonial-slider {
        display: flex;
        gap: 30px;
        padding: 20px 8%;
        overflow-x: auto;
        /* Disable snap during manual scroll sync for smoothness */
        scroll-snap-type: none; 
        scrollbar-width: none;
        cursor: grab;
        /* Smooth out the scroll movement */
        scroll-behavior: auto; 
    }

    /* Added a container to ensure we have room to scroll */
    .nx-testimonial-section {
        background-color: var(--nx-bg);
        padding: 120px 0;
        overflow: hidden;
        position: relative;
    }

.nx-testimonial-slider {
    display: flex;
    gap: 30px;
    padding: 20px 8%;
    
    /* Enable standard horizontal scrolling */
    overflow-x: auto; 
    
    /* Native smooth momentum scrolling for iOS/Android/Touchpads */
    -webkit-overflow-scrolling: touch;
    
    /* Snap effect makes it feel like a controlled UI */
    scroll-snap-type: x mandatory;
    
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.nx-testimonial-slider::-webkit-scrollbar {
    display: none;
}

.nx-testi-card {
    /* Existing styles... */
    scroll-snap-align: center; /* Card snaps to center when user stops scrolling */
    
    /* GPU Acceleration to prevent lag during AOS reveal */
    will-change: transform, opacity;
}





:root {
        --nx-neon: #c0ff00;
        --nx-dark: #141414;
        --nx-bg: #fdfdf8;
    }

    .nx-faq-section {
        background-color: var(--nx-bg);
        padding: 60px 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .nx-faq-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 5%;
    }

    /* Section Header */
    .nx-faq-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .nx-faq-label {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 2px;
        color: #888;
        display: block;
        margin-bottom: 15px;
    }

    .nx-faq-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -2px;
        text-transform: uppercase;
        color: var(--nx-dark);
    }

    /* Accordion Styling */
    .nx-faq-item {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 30px 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    /* .nx-faq-item:hover {
        padding-left: 20px;
    } */

    .nx-faq-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .nx-faq-question {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .nx-faq-num {
        font-size: 18px;
        font-weight: 800;
        color: var(--nx-neon);
        background: var(--nx-dark);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .nx-faq-text {
        font-size: 24px;
        font-weight: 800;
        color: var(--nx-dark);
    }

    .nx-faq-icon {
        font-size: 20px;
        transition: transform 0.4s ease;
    }

    /* Expansion Logic */
    .nx-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-left: 70px;
    }

    .nx-faq-item.active .nx-faq-answer {
        max-height: 200px; /* Adjust based on content length */
        margin-top: 20px;
    }

    .nx-faq-item.active .nx-faq-icon {
        transform: rotate(45deg);
    }

    .nx-faq-answer p {
        font-size: 18px;
        line-height: 1.6;
        color: #666;
        max-width: 80%;
    }

    @media (max-width: 768px) {
        .nx-faq-text { font-size: 18px; }
        .nx-faq-num { width: 30px; height: 30px; font-size: 14px; }
        .nx-faq-answer { padding-left: 0; }
        .nx-faq-answer p { max-width: 100%; }
    }















































