:root {
    --nx-lime: #c0ff00;
    --nx-dark: #0f110f;
    --nx-light: #f8fbf8;
    --nx-gray: #646c64;
    --nx-soft-lime: rgba(192, 255, 0, 0.1);
}

.nx-ab-hero {
    background: var(--nx-light);
    padding: 160px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Playful Background Blob */
.nx-ab-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--nx-soft-lime) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
    filter: blur(60px);
}

.nx-ab-content { position: relative; z-index: 2; }

.nx-ab-badge {
    background: var(--nx-dark);
    color: var(--nx-lime);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.nx-ab-title {
    color: var(--nx-dark);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.nx-text-gradient {
    background: linear-gradient(90deg, var(--nx-dark), var(--nx-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nx-ab-lead {
    color: var(--nx-gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 25px 0 35px;
}

/* Buttons */
.nx-btn-primary {
    background: var(--nx-dark);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}
.nx-btn-primary:hover { background: #000; transform: translateY(-3px); color: var(--nx-lime); }

.nx-btn-link { color: var(--nx-dark); font-weight: 700; margin-left: 20px; text-decoration: none; }

/* Stats Card - Light Mode Overhaul */
.nx-ab-stats-wrapper { position: relative; }

.nx-ab-stats-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 2;
}

.nx-ab-card-header h6 { font-weight: 800; color: var(--nx-dark); margin-bottom: 8px; }
.nx-ab-card-header p { font-size: 14px; color: var(--nx-gray); margin-bottom: 35px; }

.nx-ab-stat-item {
    padding: 20px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.nx-ab-stat-val { font-size: 48px; font-weight: 900; color: var(--nx-dark); margin-right: 20px; }
.nx-ab-stat-lbl { font-size: 14px; font-weight: 600; color: var(--nx-gray); line-height: 1.3; }

.nx-ab-icon-circle {
    margin-left: auto;
    width: 40px;
    height: 40px;
    background: var(--nx-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nx-ab-floating-icon {
    position: absolute;
    top: -25px;
    right: 40px;
    background: var(--nx-lime);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transform: rotate(15deg);
    box-shadow: 0 15px 30px rgba(192, 255, 0, 0.3);
}

.nx-ab-tag {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 12px;
    border: 1px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
    .nx-ab-hero { padding: 120px 0 80px; }
    .nx-ab-stats-wrapper { margin-top: 60px; }
}









:root {
    --nx-lime: #c0ff00;
    --nx-dark: #0f110f;
    --nx-white: #ffffff;
    --nx-muted: #6c757d;
}

.nx-mv-section {
    padding: 100px 0;
    background-color: #fcfdfc;
}

.nx-mv-card {
    height: 100%;
    padding: 60px;
    border-radius: 40px;
    background: var(--nx-white);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nx-mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* Specific Dark Card for Vision */
.nx-mv-card.nx-mv-dark {
    background: var(--nx-dark);
    color: var(--nx-white);
    border: none;
}

.nx-mv-icon {
    width: 60px;
    height: 60px;
    background: var(--nx-lime);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    margin-bottom: 30px;
}

.nx-mv-label {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--nx-muted);
    display: block;
    margin-bottom: 15px;
}

.nx-mv-dark .nx-mv-label { color: rgba(255,255,255,0.5); }

.nx-mv-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.nx-mv-title span {
    color: var(--nx-muted);
}

.nx-mv-dark .nx-mv-title span { color: var(--nx-lime); }

.nx-mv-text {
    font-size: 1.05rem;
    color: var(--nx-muted);
    line-height: 1.7;
}

.nx-mv-dark .nx-mv-text { color: rgba(255,255,255,0.7); }

/* Decorative List & Stats */
.nx-mv-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.nx-mv-list li {
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nx-mv-list li i { color: var(--nx-lime); background: #000; border-radius: 50%; font-size: 18px; }

.nx-mv-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nx-mv-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--nx-lime);
}

.nx-mv-stat span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nx-mv-card { padding: 40px; }
    .nx-mv-title { font-size: 1.8rem; }
}

















.nx-why-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.nx-why-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 15px;
    letter-spacing: -1.5px;
}

.nx-why-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 35px;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Number Styling */
.nx-why-num {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    transition: 0.5s;
}

.nx-why-icon-box {
    width: 70px;
    height: 70px;
    background: #f8fbf8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #000;
    margin-bottom: 30px;
    transition: 0.5s;
}

.nx-why-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.nx-why-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Hover Effects */
.nx-why-card:hover, .nx-why-card.active {
    background: #000;
    border-color: #000;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.nx-why-card:hover h3, .nx-why-card.active h3 { color: #fff; }
.nx-why-card:hover p, .nx-why-card.active p { color: rgba(255,255,255,0.7); }

.nx-why-card:hover .nx-why-icon-box, .nx-why-card.active .nx-why-icon-box {
    background: var(--nx-lime);
    color: #000;
    transform: rotateY(180deg);
}

.nx-why-card:hover .nx-why-num, .nx-why-card.active .nx-why-num {
    color: rgba(192, 255, 0, 0.1);
}






















/* services details page  */
:root {
    --nx-accent: #c0ff00;
    --nx-text: #0a0f0a;
    --nx-sub: #646c64;
}

.nx-sv-hero-light {
    position: relative;
    padding: 160px 0 100px;
    background: #ffffff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Creative Mesh Background */
.nx-sv-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(at 0% 0%, rgba(192, 255, 0, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(192, 255, 0, 0.1) 0px, transparent 50%);
    z-index: 0;
}

.nx-sv-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#000 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.nx-sv-badge-light {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0,0,0,0.05);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--nx-text);
}

.nx-sv-title-creative {
    font-size: clamp(3.5rem, 12vw, 9.5rem);
    font-weight: 900;
    color: var(--nx-text);
    line-height: 0.85;
    letter-spacing: -4px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.nx-letter {
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    cursor: pointer;
}

/* The Awesome Hover Effect */
.nx-letter:hover {
    transform: scaleY(1.3) scaleX(0.85) translateZ(50px);
    color: #000;
    text-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nx-sv-description {
    font-size: 1.25rem;
    color: var(--nx-sub);
    margin: 40px auto;
    max-width: 600px;
}

/* Glassmorphism Action Card */
.nx-sv-glass-card {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.nx-avatar-stack {
    display: flex;
    align-items: center;
}

.nx-avatar-stack img, .nx-avatar-plus {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-right: -12px;
}

.nx-avatar-plus {
    background: var(--nx-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.nx-sv-main-btn {
    background: var(--nx-text);
    color: #fff;
    padding: 15px 35px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.nx-sv-main-btn:hover {
    background: var(--nx-accent);
    color: #000;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .nx-sv-glass-card { flex-direction: column; border-radius: 30px; padding: 30px; }
}










.nx-st-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.nx-st-main-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-top: 15px;
}

.nx-st-intro {
    color: var(--nx-sub);
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 3px solid var(--nx-accent);
    padding-left: 25px;
}

.nx-st-wrapper {
    margin-top: 80px;
    position: relative;
}

/* Horizontal Connector Line */
.nx-st-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.08);
    z-index: 1;
}

.nx-st-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
    height: 100%;
    transition: all 0.4s ease;
}

.nx-st-step {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #fff;
    border: 1px solid #eee;
    padding: 2px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    color: #000;
}

.nx-st-icon {
    width: 60px;
    height: 60px;
    background: #f8fbf8;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    margin-bottom: 25px;
    transition: 0.4s;
}

.nx-st-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.nx-st-card p {
    font-size: 14px;
    color: var(--nx-sub);
    line-height: 1.7;
}

.nx-st-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    color: #aaa;
}

/* Active/Hover State */
.nx-st-card:hover, .nx-st-card.active {
    background: #000;
    border-color: #000;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.nx-st-card:hover h4, .nx-st-card.active h4 { color: #fff; }
.nx-st-card:hover p, .nx-st-card.active p { color: rgba(255,255,255,0.6); }
.nx-st-card:hover .nx-st-icon, .nx-st-card.active .nx-st-icon {
    background: var(--nx-accent);
    color: #000;
}
.nx-st-card:hover .nx-st-step, .nx-st-card.active .nx-st-step {
    background: var(--nx-accent);
    border-color: var(--nx-accent);
}

@media (max-width: 991px) {
    .nx-st-line { display: none; }
}












.nx-ts-section {
    padding: 100px 0;
    background: #fcfdfc;
}

.nx-ts-lead {
    color: var(--nx-sub);
    max-width: 600px;
    margin: 20px auto 0;
}

.nx-ts-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
    margin-top: 50px;
}

.nx-ts-item {
    background: #fff;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nx-ts-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Bento Variations */
.nx-ts-tall { grid-row: span 2; }
.nx-ts-wide { grid-column: span 2; }
.nx-ts-medium { grid-column: span 1; }

.nx-ts-icon {
    font-size: 32px;
    color: #000;
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
    background: var(--nx-soft-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.nx-ts-item h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.nx-ts-item p {
    font-size: 15px;
    color: var(--nx-sub);
    line-height: 1.6;
}

.nx-ts-tags {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.nx-ts-tags span {
    font-size: 11px;
    font-weight: 800;
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 50px;
}

/* Interaction */
.nx-ts-item:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border-color: var(--nx-accent);
}

.nx-ts-item:hover .nx-ts-icon {
    background: var(--nx-accent);
    transform: rotate(-5deg);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .nx-ts-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .nx-ts-tall { grid-row: span 1; }
}

@media (max-width: 768px) {
    .nx-ts-bento-grid {
        grid-template-columns: 1fr;
    }
    .nx-ts-wide { grid-column: span 1; }
}





.nx-gp-section {
    padding: 120px 0;
    background: #ffffff;
}

.nx-gp-intro {
    color: var(--nx-sub);
    font-size: 1.1rem;
    margin-top: 15px;
}

.nx-gp-comparison-box {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex; /* Ensure flex container */
    width: 100%;
}

/* Base Column Style */
.nx-gp-col {
    flex: 1; /* Each takes 50% initially */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    min-width: 0; /* Prevents flex items from overflowing */
}

.nx-gp-side {
    padding: 80px 60px;
    height: 100%;
    position: relative;
}

/* Colors & Themes */
.nx-gp-old { background: #f8fbf8; color: #666; }
.nx-gp-new { background: #000; color: #fff; overflow: hidden; height: 100%; }

.nx-gp-glow {
    position: absolute;
    top: -50%; right: -50%; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(192, 255, 0, 0.15) 0%, transparent 70%);
}

.nx-gp-header { position: relative; z-index: 1; margin-bottom: 50px; }
.nx-gp-header i { font-size: 40px; margin-bottom: 20px; display: block; }
.nx-gp-new .nx-gp-header i { color: var(--nx-accent); }
.nx-gp-header h3 { font-size: 28px; font-weight: 800; margin-bottom: 5px; }

.nx-gp-list { list-style: none; padding: 0; position: relative; z-index: 1; }
.nx-gp-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-weight: 600;
}
.nx-gp-new .nx-gp-list li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.nx-gp-old li i { color: #ff4d4d; }
.nx-gp-new li i { color: var(--nx-accent); }

.nx-gp-badge {
    position: absolute; bottom: 40px; right: 40px;
    background: var(--nx-accent); color: #000; padding: 8px 20px;
    border-radius: 50px; font-size: 12px; font-weight: 900;
}

/* HOVER LOGIC - FIXES THE SHRINKING ISSUE */
/* When the box is hovered, the 'New' side grows, and the 'Old' side shrinks naturally */
.nx-gp-comparison-box:hover .nx-gp-old-wrapper {
    flex: 0.8; /* Shrinks slightly */
    opacity: 0.6;
}

.nx-gp-comparison-box:hover .nx-gp-new-wrapper {
    flex: 1.2; /* Grows smoothly */
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .nx-gp-comparison-box { flex-direction: column; }
    .nx-gp-col { flex: 1 1 100%; }
    .nx-gp-side { padding: 50px 30px; }
    .nx-gp-comparison-box:hover .nx-gp-old-wrapper,
    .nx-gp-comparison-box:hover .nx-gp-new-wrapper {
        flex: 1 1 100%;
        opacity: 1;
    }
}











.nx-tf-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.nx-tf-lead {
    color: var(--nx-sub);
    font-size: 1.1rem;
    padding-bottom: 10px;
}

.nx-tf-card {
    background: #ffffff;
    border: 1px solid #eef0ee;
    padding: 45px 35px;
    border-radius: 24px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.nx-tf-icon-wrap {
    width: 50px;
    height: 50px;
    background: #f8fbf8;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.nx-tf-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.nx-tf-card p {
    color: var(--nx-sub);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Technical Status Label */
.nx-tf-stat {
    margin-top: auto;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nx-tf-stat::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
}

/* Hover & Active States */
.nx-tf-card:hover, .nx-tf-card.active {
    border-color: #000;
    background: #fafdfa;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.nx-tf-card:hover .nx-tf-icon-wrap, .nx-tf-card.active .nx-tf-icon-wrap {
    background: var(--nx-accent);
    color: #000;
    transform: scale(1.1);
}

.nx-tf-card:hover .nx-tf-stat, .nx-tf-card.active .nx-tf-stat {
    color: #000;
}

.nx-tf-card:hover .nx-tf-stat::before, .nx-tf-card.active .nx-tf-stat::before {
    background: var(--nx-accent);
    box-shadow: 0 0 10px var(--nx-accent);
}

@media (max-width: 768px) {
    .nx-tf-card { padding: 35px 25px; }
}





.nx-rt-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Ticker Styling */
.nx-rt-ticker {
    background: #000;
    padding: 20px 0;
    transform: rotate(-1deg) scale(1.05); /* Modern slanted look */
    margin-bottom: 60px;
    display: flex;
    overflow: hidden;
}

.nx-rt-ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: tickerLoop 20s linear infinite;
}

.nx-rt-ticker-inner span {
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 0 50px;
    letter-spacing: 2px;
}

@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Case Study Cards */
.nx-rt-case-card {
    background: #f8fbf8;
    border: 1px solid #eef0ee;
    padding: 40px;
    border-radius: 35px;
    height: 100%;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.nx-rt-case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.nx-rt-cat {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    background: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid #eee;
}

.nx-rt-growth {
    color: var(--nx-accent);
    background: #000;
    padding: 5px 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
}

.nx-rt-case-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.nx-rt-case-card p {
    font-size: 14px;
    color: var(--nx-sub);
    line-height: 1.6;
}

/* CSS Mini-Graph */
.nx-rt-graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin: 30px 0;
}

.nx-rt-bar {
    flex: 1;
    background: #ddd;
    border-radius: 4px;
    transition: 0.6s ease;
}

.nx-rt-case-card:hover .nx-rt-bar {
    background: var(--nx-accent);
}

.nx-rt-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nx-rt-footer span { font-size: 12px; color: #888; font-weight: 700; }
.nx-rt-footer strong { font-size: 18px; font-weight: 900; }

/* Featured Card (Middle) */
.nx-rt-case-card.featured {
    border-color: #000;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}






:root {
    --nx-lime: #c0ff00;
    --nx-dark: #0f110f;
    --nx-light: #f8fbf8;
    --nx-gray: #646c64;
    --nx-border: rgba(15, 17, 15, 0.1);
}

.nx-process-section {
    background-color: var(--nx-light);
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* --- Header Styling --- */
.nx-badge-process {
    display: inline-block;
    background: var(--nx-dark);
    color: var(--nx-lime);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.nx-process-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--nx-dark);
    line-height: 1.1;
}

.nx-bg-dark-lime {
    background: var(--nx-dark);
    color: var(--nx-lime);
    padding: 0 15px;
    display: inline-block;
}

/* --- Process Wrapper & Line --- */
.nx-process-wrapper {
    position: relative;
    margin-top: 80px;
}

.nx-process-line {
    position: absolute;
    top: 25px; /* Aligns with the center of the numbers */
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--nx-border);
    z-index: 1;
}

/* --- Process Cards --- */
.nx-process-card {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}

.nx-process-number {
    width: 50px;
    height: 50px;
    background: var(--nx-lime);
    color: var(--nx-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 30px;
    border: 4px solid var(--nx-light); /* Creates the "cutout" effect on the line */
    transition: 0.3s ease;
}

.nx-process-card.active .nx-process-number {
    background: var(--nx-dark);
    color: var(--nx-lime);
    transform: scale(1.1);
}

.nx-process-card h4 {
    font-weight: 800;
    color: var(--nx-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.nx-process-card p {
    color: var(--nx-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- CTA Button --- */
.nx-process-cta {
    display: inline-block;
    padding: 18px 35px;
    border: 1px solid var(--nx-border);
    border-radius: 100px;
    color: var(--nx-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.nx-process-cta:hover {
    border-color: var(--nx-dark);
    background: #fff;
}

.nx-cta-lime {
    color: var(--nx-lime);
    background: var(--nx-dark);
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 10px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .nx-process-line { display: none; }
    .nx-process-title { font-size: 2.5rem; }
    .nx-process-card { margin-bottom: 40px; }
}

























/* contcat us  */
:root {
    --nx-neon: #c0ff00;
    --nx-dark: #141414;
    --nx-bg: #fdfdf8;
    --nx-gray: #777;
    --nx-input-bg: #f8f8f2;
}

.nx-contact-section {
    padding: 100px 0;
    background-color: var(--nx-bg);
    position: relative;
    overflow: hidden;
}

/* Header Styles */
.nx-contact-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nx-badge-line {
    width: 60px;
    height: 1px;
    background: var(--nx-dark);
}

.nx-contact-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--nx-dark);
    margin-bottom: 30px;
}

.nx-text-outline {
    -webkit-text-stroke: 1px var(--nx-dark);
    color: transparent;
}

.nx-contact-lead {
    font-size: 1.1rem;
    color: var(--nx-gray);
    max-width: 400px;
    margin-bottom: 50px;
}

/* Decorative Elements */
.nx-decor-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nx-floating-pic img {
    width: 140px;
    height: 80px;
    object-fit: cover;
    border-radius: 50px;
}

.nx-bg-smiley {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    font-size: 25rem;
    color: rgba(0,0,0,0.03);
    pointer-events: none;
}

/* Form Styles */
.nx-form-container {
    padding-left: 50px;
}

.nx-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--nx-dark);
}

.nx-input {
    width: 100%;
    padding: 18px 25px;
    border: none;
    background: var(--nx-input-bg);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nx-input:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nx-textarea {
    height: 150px;
    resize: none;
}

.nx-submit-btn {
    background: var(--nx-dark);
    color: var(--nx-neon);
    border: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.nx-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .nx-contact-title { font-size: 3rem; }
    .nx-form-container { padding-left: 0; margin-top: 50px; }
    .nx-bg-smiley { display: none; }
}













:root {
    --nx-neon: #c0ff00;
    --nx-dark: #141414;
    --nx-bg: #fdfdf8;
    --nx-input-border: #e2e2e2;
}

.nx-quote-section {
    padding: 120px 0;
    background-color: var(--nx-bg);
}

/* Badge Style from Image 3 */
.nx-working-badge {
    background: var(--nx-dark);
    color: var(--nx-neon);
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* Title Style from Image 3 */
.nx-main-quote-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--nx-dark);
    text-transform: uppercase;
}

.nx-bg-neon {
    background-color: var(--nx-dark);
    color: var(--nx-neon);
    padding: 0 15px;
    display: inline-block;
}

/* Form Container */
.nx-quote-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
    border: 1px solid var(--nx-input-border);
}

.nx-form-label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
    color: var(--nx-dark);
}

.nx-quote-input {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid var(--nx-input-border);
    border-radius: 12px;
    background: #fcfcfc;
    transition: all 0.3s ease;
}

.nx-quote-input:focus {
    outline: none;
    border-color: var(--nx-dark);
    background: white;
}

/* Budget Chips (Attractive Choice UI) */
.nx-budget-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nx-budget-chip input { display: none; }

.nx-budget-chip span {
    padding: 12px 25px;
    border: 1px solid var(--nx-input-border);
    border-radius: 50px;
    display: block;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.nx-budget-chip input:checked + span {
    background: var(--nx-dark);
    color: var(--nx-neon);
    border-color: var(--nx-dark);
}

/* Large Button Style */
.nx-quote-btn {
    background: var(--nx-dark);
    color: white;
    padding: 22px 40px;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: 0.4s;
}

.nx-quote-btn:hover {
    background: var(--nx-neon);
    color: var(--nx-dark);
    transform: translateX(10px);
}

.nx-quote-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .nx-main-quote-title { font-size: 2.5rem; }
    .nx-quote-form-card { padding: 30px 20px; }
}