        :root {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --secondary: #7209b7;
            --accent: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --success: #4cc9f0;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
        }

        .navbar {
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(18px);
            box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
            padding: 0.5rem 0 !important;
            min-height: 121px;
            width: 100%;
        }

        .navbar > .landing-navbar-container {
            width: 100%;
            max-width: none;
            min-height: 105px;
            padding-left: clamp(18px, 4vw, 72px);
            padding-right: clamp(18px, 4vw, 72px);
        }

        .navbar-brand img {
            height: 88px;
            transition: var(--transition);
        }

        .nemo-navbar-brand {
            display: inline-flex;
            align-items: center;
            padding: 0;
            border-radius: 0;
            background: transparent;
            border: none;
            box-shadow: none;
            text-decoration: none;
            min-width: auto;
        }

        .navbar-brand-copy,
        .visually-hidden {
            position: absolute !important;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .navbar-logo-shell {
        position: relative;
        width: 105px;
        height: 105px;
        display: grid;
        place-items: center;
        flex: 0 0 105px;
        overflow: hidden;
        /* border-radius: 50%; */
        background: transparent;
        }

            .navbar-logo-shell::after {
                content: '';
                display: none;
            }

            .nemo-navbar-brand .navbar-logo-shell img {
                width: auto;
                height: 105px;
                max-width: none;
                transform: none;
                transition: var(--transition);
                filter: none;
            }

        .navbar-brand-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            line-height: 1;
        }

        .navbar-brand-title {
            color: #07356f;
            font-size: 1.22rem;
            font-weight: 900;
            letter-spacing: 0;
        }

        .navbar-brand-subtitle {
            color: #0f67a8;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0;
            line-height: 1.15;
            margin-top: 4px;
            white-space: nowrap;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            color: var(--dark);
            transition: var(--transition);
            position: relative;
        }

        .navbar-nav {
            align-items: center;
        }

        .landing-navbar-container .navbar-collapse {
            flex-grow: 1;
        }

        .landing-navbar-container .navbar-toggler {
            margin-left: auto;
        }

        .landing-login-nav-item {
            display: flex;
            align-items: center;
            min-height: 44px;
        }

        .landing-login-link {
            min-width: 126px;
            min-height: 42px;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        #mainNav .navbar-nav .nav-link,
        #mainNav .landing-login-link {
            border: 1px solid transparent;
            border-radius: 8px;
            background: transparent !important;
            box-shadow: none !important;
        }

        #mainNav .navbar-nav .nav-link:hover,
        #mainNav .navbar-nav .nav-link:focus,
        #mainNav .navbar-nav .nav-link:active,
        #mainNav .navbar-nav .nav-link.active,
        #mainNav .landing-login-link:hover,
        #mainNav .landing-login-link:focus,
        #mainNav .landing-login-link:active,
        #mainNav .landing-login-link.active {
            color: var(--primary) !important;
            border-color: var(--primary);
            background: transparent !important;
            box-shadow: none !important;
        }

        #mainNav .navbar-nav .nav-link:focus-visible,
        #mainNav .landing-login-link:focus-visible {
            outline: 0;
            border-color: var(--primary);
        }

            .navbar-nav .nav-link:after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--primary);
                transition: var(--transition);
            }

            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link.active {
                color: var(--primary);
            }

                .navbar-nav .nav-link:hover:after,
                .navbar-nav .nav-link.active:after {
                    width: 0;
                }

        .navbar-shrink {
            padding: 0.5rem 0 !important;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

            .navbar-shrink .navbar-brand img {
                height: 88px;
            }

            .navbar-shrink .nemo-navbar-brand {
                padding: 0;
            }

            .navbar-shrink .navbar-logo-shell {
                width: 105px;
                height: 105px;
                flex-basis: 105px;
            }

            .navbar-shrink .nemo-navbar-brand .navbar-logo-shell img {
                height: 105px;
            }

        .fa-2x {
            font-size: 1em !important;
        }

        .banner-container {
            position: relative;
            width:100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            margin-top: 5.5rem;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

        .banner {
            position: relative;
            width: 90%;
            max-width: 100vw;
            height: 90vh;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            padding: 0 5%;
        }

            .banner::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
                z-index: 1;
            }

        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }

        .banner h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #f8fafc, #cbd5e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .banner p {
            font-size: 1rem;
            line-height: 1.6;
            // margin-bottom: 2rem;
            color: #cbd5e1;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
            border: none;
            cursor: pointer;
            gap: 0.5rem;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 20px 0 rgba(99, 102, 241, 0.6);
            color: white;
        }

        .cta-button.secondary {
            background: rgba(255, 255, 255, 0.14);
            color: #e0e7ff;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .cta-button.secondary:hover {
            background: rgba(255, 255, 255, 0.22);
            color: #fff;
            transform: translateY(-2px);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.8rem;
        }

        .hero-badges {
            display: grid;
            grid-template-columns: repeat(3, minmax(140px, 1fr));
            gap: 0.85rem;
            margin-top: 2rem;
        }

        .hero-badge {
            padding: 0.9rem 1rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(148, 163, 184, 0.22);
            border-radius: 18px;
            color: #e2e8f0;
            font-size: 0.95rem;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
            filter: blur(40px);
            animation: float 15s infinite linear;
        }

            .floating-element:nth-child(1) {
                width: 300px;
                height: 300px;
                top: 10%;
                right: 10%;
                animation-delay: 0s;
            }

            .floating-element:nth-child(2) {
                width: 200px;
                height: 200px;
                bottom: 20%;
                right: 20%;
                animation-delay: -5s;
            }

            .floating-element:nth-child(3) {
                width: 150px;
                height: 150px;
                top: 50%;
                right: 30%;
                animation-delay: -10s;
            }

        .tech-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
            z-index: 1;
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: rgba(99, 102, 241, 0.7);
            border-radius: 50%;
            animation: particle-float 20s infinite linear;
        }

        .banner-graphic {
            position: absolute;
            right: 5%;
            width: 40%;
            height: 100%;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 900px;
            top: 80%;
            transform: translateY(-50%);
        }

        .graphic-element {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
        }

        .cube {
            position: absolute;
            width: 120px;
            height: 120px;
            transform-style: preserve-3d;
            animation: rotate 20s infinite linear;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .cube-face {
            position: absolute;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
            border: 1px solid rgba(99, 102, 241, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: rgba(255, 255, 255, 0.7);
        }

            .cube-face.front {
                transform: translateZ(60px);
            }

            .cube-face.back {
                transform: rotateY(180deg) translateZ(60px);
            }

            .cube-face.right {
                transform: rotateY(90deg) translateZ(60px);
            }

            .cube-face.left {
                transform: rotateY(-90deg) translateZ(60px);
            }

            .cube-face.top {
                transform: rotateX(90deg) translateZ(60px);
            }

            .cube-face.bottom {
                transform: rotateX(-90deg) translateZ(60px);
            }

        .orbital-ring {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 2px solid rgba(99, 102, 241, 0.3);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: orbit 25s infinite linear;
        }

            .orbital-ring::before {
                content: '';
                position: absolute;
                width: 20px;
                height: 20px;
                background: rgba(99, 102, 241, 0.7);
                border-radius: 50%;
                top: -10px;
                left: 50%;
                transform: translateX(-50%);
                box-shadow: 0 0 20px rgba(99, 102, 241, 0.7);
            }

        .data-node {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 32px;
            animation: pulse 4s infinite ease-in-out;
            border: 1px solid rgba(125, 211, 252, 0.28);
            box-shadow: 0 18px 45px rgba(14, 165, 233, 0.18);
            backdrop-filter: blur(10px);
        }

            .data-node:nth-child(1) {
                top: 20%;
                right: 30%;
                animation-delay: 0s;
            }

            .data-node:nth-child(2) {
                bottom: 30%;
                right: 10%;
                animation-delay: -1.5s;
            }

            .data-node:nth-child(3) {
                bottom: 20%;
                right: 40%;
                animation-delay: -3s;
            }

        /* Modern No-Code Platform Logo */
        .graphic-element.3d-logo-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nocode-logo-hub {
            position: relative;
            width: clamp(200px, 25vw, 350px);
            height: clamp(200px, 25vw, 350px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
        }

        /* Ambient background glow */
        .ambient-glow {
            position: absolute;
            width: 135%;
            height: 135%;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 40%,
                rgba(14, 165, 233, 0.25) 0%,
                rgba(14, 165, 233, 0.08) 40%,
                transparent 70%);
            filter: blur(30px);
            animation: ambientPulse 4s ease-in-out infinite;
            z-index: 0;
        }

        /* Subtle grid background */
        .grid-background {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-image: 
                linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px),
                linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            background-position: 0 0, 10px 10px;
            mask: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
            animation: gridRotate 20s linear infinite;
            z-index: 1;
        }

        /* Main modern sphere */
        .modern-sphere {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%,
                rgba(224, 242, 254, 0.95) 0%,
                rgba(14, 165, 233, 0.3) 50%,
                rgba(15, 23, 42, 0.85) 100%);
            border: 2px solid rgba(14, 165, 233, 0.3);
            box-shadow:
                inset -15px -15px 30px rgba(0, 0, 0, 0.2),
                inset 15px 15px 30px rgba(255, 255, 255, 0.15),
                0 20px 40px rgba(14, 165, 233, 0.2);
            transform-style: preserve-3d;
            animation: sphereRotateModern 8s ease-in-out infinite;
        }

        /* Geometric building blocks */
        .block {
            position: absolute;
            border-radius: 8px;
            border: 2px solid rgba(14, 165, 233, 0.4);
            background: rgba(56, 189, 248, 0.1);
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
        }

        .block-1 {
            width: 35%;
            height: 35%;
            top: 10%;
            left: 10%;
            animation: blockFloat1 3.5s ease-in-out infinite;
        }

        .block-2 {
            width: 28%;
            height: 28%;
            top: 15%;
            right: 12%;
            animation: blockFloat2 4s ease-in-out infinite;
        }

        .block-3 {
            width: 32%;
            height: 32%;
            bottom: 15%;
            left: 18%;
            animation: blockFloat3 3.8s ease-in-out infinite;
        }

        .block-4 {
            width: 30%;
            height: 30%;
            bottom: 12%;
            right: 10%;
            animation: blockFloat4 4.2s ease-in-out infinite;
        }

        /* Central logo area */
        .logo-center {
            position: absolute;
            inset: 15%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            z-index: 10;
        }

        /* Center rings */
        .center-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .ring-outer {
            inset: -5%;
            border-color: rgba(56, 189, 248, 0.3);
            animation: ringBreathe1 2.5s ease-in-out infinite;
        }

        .ring-inner {
            inset: 20%;
            border-color: rgba(30, 144, 255, 0.2);
            animation: ringBreathe2 3s ease-in-out infinite;
        }

        /* Logo content */
        .logo-content {
            position: relative;
            width: 90%;
            height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .logo-content img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.2));
        }

        /* Accent rings */
        .accent-ring {
            position: absolute;
            border-radius: 50%;
            border: 1.5px solid transparent;
            box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.2);
        }

        .accent-1 {
            inset: -8%;
            border-color: rgba(14, 165, 233, 0.25);
            animation: accentPulse1 2s ease-out infinite;
        }

        .accent-2 {
            inset: -12%;
            border-color: rgba(52, 152, 219, 0.15);
            animation: accentPulse2 2.5s ease-out infinite;
        }

        .accent-3 {
            inset: -16%;
            border-color: rgba(30, 144, 255, 0.1);
            animation: accentPulse3 3s ease-out infinite;
        }

        /* Interactive nodes */
        .interactive-node {
            position: absolute;
            width: 70px;
            height: 70px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            border-radius: 12px;
            background: rgba(14, 165, 233, 0.08);
            border: 1.5px solid rgba(56, 189, 248, 0.3);
            backdrop-filter: blur(12px);
            color: rgba(56, 189, 248, 0.9);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 8;
        }

        .interactive-node:hover {
            background: rgba(14, 165, 233, 0.15);
            border-color: rgba(56, 189, 248, 0.6);
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(14, 165, 233, 0.2);
        }

        .node-a {
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            animation: nodeFloat-a 3.5s ease-in-out infinite;
        }

        .node-b {
            top: 15%;
            right: -55px;
            animation: nodeFloat-b 3.8s ease-in-out infinite;
        }

        .node-c {
            bottom: 10%;
            left: -60px;
            animation: nodeFloat-c 4s ease-in-out infinite;
        }

        .node-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.9), rgba(14, 165, 233, 0.5));
            box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
            animation: dotPulse 1.5s ease-in-out infinite;
        }

        /* Connection lines SVG */
        .connection-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            inset: -40%;
            z-index: 7;
            opacity: 0.6;
        }

        .connection-lines line {
            stroke: rgba(56, 189, 248, 0.5);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-dasharray: 100;
            animation: drawLines 2.5s ease-in-out infinite;
        }

        .line-a {
            animation: drawLines 2.5s ease-in-out infinite;
        }

        .line-b {
            animation: drawLines 2.5s ease-in-out infinite;
            animation-delay: 0.3s;
        }

        .line-c {
            animation: drawLines 2.5s ease-in-out infinite;
            animation-delay: 0.6s;
        }

        /* Modern Animations */
        @keyframes sphereRotateModern {
            0%, 100% {
                transform: rotateX(-15deg) rotateY(-20deg);
            }
            25% {
                transform: rotateX(10deg) rotateY(25deg);
            }
            50% {
                transform: rotateX(20deg) rotateY(-30deg);
            }
            75% {
                transform: rotateX(-10deg) rotateY(20deg);
            }
        }

        @keyframes ambientPulse {
            0%, 100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 0.9;
                transform: scale(1.05);
            }
        }

        @keyframes gridRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes blockFloat1 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translate(8px, -8px) rotate(5deg);
                opacity: 1;
            }
        }

        @keyframes blockFloat2 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.6;
            }
            50% {
                transform: translate(-10px, 5px) rotate(-5deg);
                opacity: 0.95;
            }
        }

        @keyframes blockFloat3 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.65;
            }
            50% {
                transform: translate(-8px, -5px) rotate(-3deg);
                opacity: 0.98;
            }
        }

        @keyframes blockFloat4 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.68;
            }
            50% {
                transform: translate(10px, 6px) rotate(4deg);
                opacity: 0.96;
            }
        }

        @keyframes ringBreathe1 {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 12px 4px rgba(56, 189, 248, 0.1);
                transform: scale(1.05);
            }
        }

        @keyframes ringBreathe2 {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.2);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 10px 3px rgba(30, 144, 255, 0.08);
                transform: scale(0.98);
            }
        }

        @keyframes accentPulse1 {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                transform: scale(1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        @keyframes accentPulse2 {
            0% {
                transform: scale(0.75);
                opacity: 0;
            }
            50% {
                transform: scale(1);
                opacity: 0.35;
            }
            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        @keyframes accentPulse3 {
            0% {
                transform: scale(0.7);
                opacity: 0;
            }
            50% {
                transform: scale(1);
                opacity: 0.25;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        @keyframes nodeFloat-a {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-12px);
            }
        }

        @keyframes nodeFloat-b {
            0%, 100% {
                transform: translateX(0) translateY(0);
            }
            50% {
                transform: translateX(8px) translateY(-10px);
            }
        }

        @keyframes nodeFloat-c {
            0%, 100% {
                transform: translateX(0) translateY(0);
            }
            50% {
                transform: translateX(-10px) translateY(8px);
            }
        }

        @keyframes dotPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.3);
                opacity: 1;
            }
        }

        @keyframes drawLines {
            0% {
                stroke-dashoffset: 100;
                opacity: 0;
            }
            50% {
                opacity: 0.6;
            }
            100% {
                stroke-dashoffset: 0;
                opacity: 0;
            }
        }

        /* Pause animations state */
        .nocode-logo-hub.paused * {
            animation-play-state: paused !important;
        }

        .logo-orb {
            position: absolute;
            width: clamp(190px, 26vw, 320px);
            height: clamp(190px, 26vw, 320px);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transform-style: preserve-3d;
            animation: logoFloat 7s ease-in-out infinite;
            transform-origin: 50% 50%;
        }

        .logo-core {
            position: absolute;
            inset: 14%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            overflow: hidden;
            background: radial-gradient(circle at 30% 20%, rgba(224, 242, 254, 0.95), rgba(14, 165, 233, 0.25) 45%, rgba(15, 23, 42, 0.72) 100%);
            border: 1px solid rgba(186, 230, 253, 0.5);
            box-shadow:
                0 28px 70px rgba(14, 165, 233, 0.35),
                inset 0 18px 35px rgba(255, 255, 255, 0.24),
                inset 0 -24px 42px rgba(15, 23, 42, 0.58);
            transform-style: preserve-3d;
            animation: logoCoreTilt 8s ease-in-out infinite;
        }

            .logo-core::before {
                content: '';
                position: absolute;
                inset: -28%;
                background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.45) 42%, transparent 62%);
                transform: translateX(-72%) rotate(16deg);
                animation: logoShine 5s ease-in-out infinite;
                z-index: 2;
            }

            .logo-core::after {
                content: '';
                position: absolute;
                inset: 10%;
                border-radius: 50%;
                border: 1px solid rgba(255, 255, 255, 0.24);
                box-shadow: inset 0 0 24px rgba(14, 165, 233, 0.38);
                pointer-events: none;
                z-index: 3;
            }

        .logo-core img {
            width: 228%;
            height: auto;
            max-width: none;
            object-fit: contain;
            filter: drop-shadow(0 16px 28px rgba(2, 6, 23, 0.38));
            transform: translateY(18%) translateZ(34px);
            user-select: none;
            z-index: 1;
        }

        .logo-orb .orbital-ring {
            --ring-tilt: 68deg;
            --ring-y: 0deg;
            width: 100%;
            height: 100%;
            border-color: rgba(125, 211, 252, 0.38);
            box-shadow: 0 0 42px rgba(14, 165, 233, 0.18);
            animation: logoRingOrbit 18s linear infinite;
            transform-origin: 50% 50%;
        }

        .logo-orb .orbital-ring::before {
            background: #38bdf8;
            box-shadow: 0 0 26px rgba(56, 189, 248, 0.85);
        }

        .logo-orb .ring-secondary {
            --ring-tilt: 64deg;
            --ring-y: 18deg;
            width: 86%;
            height: 86%;
            border-color: rgba(147, 197, 253, 0.32);
            animation-duration: 14s;
            animation-direction: reverse;
        }

        .logo-orb .ring-tertiary {
            --ring-tilt: 74deg;
            --ring-y: -20deg;
            width: 112%;
            height: 112%;
            border-color: rgba(34, 211, 238, 0.22);
            animation-duration: 24s;
        }

        @keyframes float {
            0%

        {
            transform: translate(0, 0) rotate(0deg);
        }

        33% {
            transform: translate(30px, -50px) rotate(120deg);
        }

        66% {
            transform: translate(-20px, 20px) rotate(240deg);
        }

        100% {
            transform: translate(0, 0) rotate(360deg);
        }

        }

        @keyframes particle-float {
            0%

        {
            transform: translateY(0) translateX(0);
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            transform: translateY(-100px) translateX(20px);
            opacity: 0;
        }

        }

        @keyframes rotate {
            0%

        {
            transform: translate(-50%, -50%) rotateX(0) rotateY(0) rotateZ(0);
        }

        100% {
            transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg) rotateZ(360deg);
        }

        }

        @keyframes orbit {
            0%

        {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(360deg);
        }

        }

        @keyframes logoFloat {
            0%, 100%

        {
            transform: translate(-50%, -50%) rotateX(0deg) rotateY(-10deg) translateY(0);
        }

        50% {
            transform: translate(-50%, -50%) rotateX(8deg) rotateY(12deg) translateY(-14px);
        }

        }

        @keyframes logoCoreTilt {
            0%, 100%

        {
            transform: rotateX(0deg) rotateY(0deg) scale(1);
        }

        50% {
            transform: rotateX(7deg) rotateY(-9deg) scale(1.035);
        }

        }

        @keyframes logoRingOrbit {
            0%

        {
            transform: translate(-50%, -50%) rotateX(var(--ring-tilt, 68deg)) rotateY(var(--ring-y, 0deg)) rotateZ(0deg);
        }

        100% {
            transform: translate(-50%, -50%) rotateX(var(--ring-tilt, 68deg)) rotateY(var(--ring-y, 0deg)) rotateZ(360deg);
        }

        }

        @keyframes logoShine {
            0%, 32%

        {
            transform: translateX(-82%) rotate(16deg);
            opacity: 0;
        }

        48% {
            opacity: 0.8;
        }

        70%, 100% {
            transform: translateX(82%) rotate(16deg);
            opacity: 0;
        }

        }

        @keyframes pulse {
            0%

        {
            transform: scale(1);
            opacity: 0.7;
        }

        50% {
            transform: scale(1.1);
            opacity: 1;
        }

        100% {
            transform: scale(1);
            opacity: 0.7;
        }

        }

        .controls {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .control-btn {
            padding: 10px 20px;
            background: rgba(30, 41, 59, 0.7);
            color: #cbd5e1;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .control-btn:hover {
                background: rgba(99, 102, 241, 0.7);
                color: white;
            }

        @media (max-width: 968px) {
            .banner

        {
            flex-direction: column;
            text-align: center;
            padding: 40px 5%;
        }

        .banner h1 {
            font-size: 2.5rem;
        }

        .banner-graphic {
            position: relative;
            right: auto;
            width: 100%;
            height: 300px;
            margin-top: 40px;
        }

        }

        /* Sections */
        .page-section {
            padding: 6rem 0;
        }

        .bg-light {
            background-color: #f8fafc !important;
        }

        .section-heading {
            position: relative;
            margin-bottom: 3rem;
        }

            .section-heading:after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: var(--gradient);
                border-radius: 2px;
            }

        /* Large Desktop (1200px and above) */
        @media (min-width: 1200px) {
            .banner h1

        {
            font-size: 3rem;
        }

        .banner p {
            font-size: 1.4rem;
        }

        }

        /* Desktop (992px to 1199px) */
        @media (max-width: 1199px) and (min-width: 992px) {
            .banner h1

        {
            font-size: 3.2rem;
        }

        .banner p {
            font-size: 1.2rem;
        }

        .banner-graphic {
            width: 45%;
        }

        .cube {
            width: 100px;
            height: 100px;
        }

        .orbital-ring {
            width: 250px;
            height: 250px;
        }

        }

        /* Tablet Landscape (768px to 991px) */
        @media (max-width: 991px) and (min-width: 768px) {
            .banner-container

        {
            height: 90vh;
            margin-top: 5.5rem;
        }

        .banner {
            height: 80vh;
            flex-direction: column;
            text-align: center;
            padding: 40px 5%;
        }

            .banner h1 {
                font-size: 2.8rem;
            }

            .banner p {
                font-size: 1.1rem;
            }

        .banner-graphic {
            position: relative;
            right: auto;
            width: 100%;
            height: 400px;
            margin: 40px auto 0;
            top: auto;
            transform: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .graphic-element {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nocode-logo-hub {
            width: clamp(220px, 28vw, 320px);
            height: clamp(220px, 28vw, 320px);
        }

        .cube {
            width: 80px;
            height: 80px;
        }

        .orbital-ring {
            width: 200px;
            height: 200px;
        }

        .data-node {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }

        .floating-element:nth-child(1) {
            width: 200px;
            height: 200px;
        }

        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
        }

        }

        /* Tablet Portrait (576px to 767px) */
        @media (max-width: 767px) and (min-width: 576px) {
            .banner-container

        {
            height: 85vh;
            margin-top: 3.5rem;
        }

        .banner {
            height: 75vh;
            flex-direction: column;
            text-align: center;
            padding: 30px 4%;
        }

            .banner h1 {
                font-size: 2.3rem;
                margin-bottom: 1rem;
            }

            .banner p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

        .banner-content {
            max-width: 100%;
        }

        .banner-graphic {
            position: relative;
            right: auto;
            width: 100%;
            height: 350px;
            margin: 30px auto 0;
            top: auto;
            transform: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .graphic-element {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nocode-logo-hub {
            width: clamp(200px, 26vw, 300px);
            height: clamp(200px, 26vw, 300px);
        }

        .cube {
            width: 70px;
            height: 70px;
        }

        .cube-face {
            width: 70px;
            height: 70px;
            font-size: 18px;
        }

        .orbital-ring {
            width: 180px;
            height: 180px;
        }

        .data-node {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }

        .floating-element:nth-child(1) {
            width: 150px;
            height: 150px;
            top: 5%;
            right: 5%;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            bottom: 10%;
            right: 10%;
        }

        .floating-element:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 40%;
            right: 20%;
        }

        .cta-button {
            padding: 12px 28px;
            font-size: 0.9rem;
        }

        .controls {
            bottom: 20px;
            flex-direction: column;
            gap: 10px;
        }

        .control-btn {
            padding: 8px 16px;
            font-size: 0.9rem;
        }

        }
        @media (max-width: 575px) {
            .banner-container

        {
            height: 80vh;
            margin-top: 3rem;
        }

        .banner {
            height: 70vh;
            flex-direction: column;
            text-align: center;
            padding: 20px 3%;
            border-radius: 16px;
        }

            .banner h1 {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
                line-height: 1.2;
            }

            .banner p {
                font-size: 0.9rem;
                margin-bottom: 1.2rem;
                line-height: 1.5;
            }

        .banner-content {
            max-width: 100%;
        }

        .banner-graphic {
            position: relative;
            right: auto;
            width: 100%;
            height: 300px;
            margin: 25px auto 0;
            top: auto;
            transform: none;
            display: flex !important;
            visibility: visible !important;
            align-items: center;
            justify-content: center;
        }
        
        .graphic-element {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nocode-logo-hub {
            width: clamp(180px, 22vw, 260px);
            height: clamp(180px, 22vw, 260px);
            display: flex !important;
            visibility: visible !important;
        }

        .nemo-navbar-brand {
            gap: 9px;
            padding: 6px 10px 6px 7px;
        }

        .navbar-logo-shell {
            width: 44px;
            height: 44px;
            flex-basis: 44px;
        }

        .navbar,
        .navbar-shrink {
            min-height: 60px;
        }

        .navbar > .landing-navbar-container {
            min-height: 44px;
            padding-left: 16px;
            padding-right: 16px;
        }

        .nemo-navbar-brand .navbar-logo-shell img,
        .navbar-shrink .nemo-navbar-brand .navbar-logo-shell img {
            height: 44px;
        }

        .navbar-shrink .navbar-logo-shell {
            width: 44px;
            height: 44px;
            flex-basis: 44px;
        }

        .navbar-brand-title {
            font-size: 1rem;
        }

        .navbar-brand-subtitle {
            max-width: 150px;
            white-space: normal;
            font-size: 0.54rem;
            line-height: 1.05;
        }

        .logo-orb {
            width: 160px;
            height: 160px;
        }

        .cube {
            width: 60px;
            height: 60px;
        }

        .cube-face {
            width: 60px;
            height: 60px;
            font-size: 16px;
        }

            .cube-face.front {
                transform: translateZ(30px);
            }

            .cube-face.back {
                transform: rotateY(180deg) translateZ(30px);
            }

            .cube-face.right {
                transform: rotateY(90deg) translateZ(30px);
            }

            .cube-face.left {
                transform: rotateY(-90deg) translateZ(30px);
            }

            .cube-face.top {
                transform: rotateX(90deg) translateZ(30px);
            }

            .cube-face.bottom {
                transform: rotateX(-90deg) translateZ(30px);
            }

        .orbital-ring {
            width: 150px;
            height: 150px;
        }

            .orbital-ring::before {
                width: 15px;
                height: 15px;
            }

        .data-node {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

            .data-node:nth-child(1) {
                top: 15%;
                right: 25%;
            }

            .data-node:nth-child(2) {
                bottom: 20%;
                right: 5%;
            }

            .data-node:nth-child(3) {
                bottom: 15%;
                right: 35%;
            }

        .floating-element:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 3%;
            right: 3%;
        }

        .floating-element:nth-child(2) {
            width: 100px;
            height: 100px;
            bottom: 8%;
            right: 8%;
        }

        .floating-element:nth-child(3) {
            width: 70px;
            height: 70px;
            top: 35%;
            right: 15%;
        }

        .tech-grid {
            background-size: 30px 30px;
        }

        .cta-button {
            padding: 10px 24px;
            font-size: 0.85rem;
        }

        .controls {
            bottom: 15px;
            flex-direction: column;
            gap: 8px;
        }

        .control-btn {
            padding: 7px 14px;
            font-size: 0.85rem;
        }

        }
        @media (max-width: 375px) {
            .banner-container

        {
            height: 75vh;
            margin-top: 2.5rem;
        }

        .banner {
            height: 65vh;
            padding: 15px 2%;
        }

            .banner h1 {
                font-size: 1.6rem;
            }

            .banner p {
                font-size: 0.85rem;
            }

        .banner-graphic {
            height: 280px;
            margin: 20px auto 0;
            top: auto;
            transform: none;
            display: flex !important;
            visibility: visible !important;
            align-items: center;
            justify-content: center;
        }
        
        .graphic-element {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nocode-logo-hub {
            width: clamp(160px, 20vw, 240px);
            height: clamp(160px, 20vw, 240px);
            display: flex !important;
            visibility: visible !important;
        }

        .logo-orb {
            width: 140px;
            height: 140px;
        }

        .cube {
            width: 50px;
            height: 50px;
        }

        .cube-face {
            width: 50px;
            height: 50px;
            font-size: 14px;
        }

        .orbital-ring {
            width: 130px;
            height: 130px;
        }

        .data-node {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }

        }

        /* Sections */
        .page-section {
            padding: 6rem 0;
        }

        .bg-light {
            background-color: #f8fafc !important;
        }

        .section-heading {
            position: relative;
            margin-bottom: 3rem;
        }

            .section-heading:after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: var(--gradient);
                border-radius: 2px;
            }

        @media print {
            .banner-container

        {
            height: auto;
            background: white !important;
        }

        .banner {
            box-shadow: none;
            height: auto;
        }

        .floating-elements,
        .tech-grid,
        .particles,
        .controls {
            display: none;
        }

        }

        .feature-box, .benefit-box, .not-box {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            height: 100%;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

            .feature-box:hover, .benefit-box:hover, .not-box:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            }

            .feature-box .icon, .benefit-box .icon, .not-box .icon {
                width: 80px;
                height: 80px;
                background: var(--gradient);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 1.5rem;
                color: white;
                font-size: 1.8rem;
            }

            .feature-box h4, .benefit-box h4, .not-box h4 {
                margin-bottom: 1rem;
                color: var(--dark);
            }

            .feature-box p, .benefit-box p, .not-box p {
                color: var(--gray);
                line-height: 1.6;
            }

        /* Tiles for Target Audience */
        .tile {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            background: white;
        }

            .tile:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            }

        .tile-header {
            padding: 2.5rem 2rem 1.5rem;
            text-align: center;
            background: var(--gradient);
            color: white;
        }

            .tile-header h4 {
                margin-top: 1.5rem;
                color: white;
            }

        .tile-content {
            padding: 2rem;
        }

            .tile-content .sub-section-title {
                font-weight: 600;
                margin-bottom: 0.8rem;
                color: var(--primary);
            }

            .tile-content ul {
                padding-left: 1.2rem;
                margin-bottom: 1.5rem;
            }

            .tile-content li {
                margin-bottom: 0.5rem;
                color: var(--gray);
            }

        .fa-stack {
            margin-bottom: 1.5rem;
        }

        .fa-stack-2x {
            color: var(--primary);
            opacity: 0.1;
        }

        .fa-stack-1x {
            /*color: var(--primary);*/
        }

        .timeline {
            position: relative;
            padding: 0;
            list-style: none;
        }

            .timeline:before {
                content: '';
                position: absolute;
                top: 0;
                bottom: 0;
                left: 50%;
                width: 4px;
                margin-left: -2px;
                background: var(--gradient);
            }

            .timeline > li {
                position: relative;
                margin-bottom: 50px;
            }

                .timeline > li:after {
                    content: '';
                    display: table;
                    clear: both;
                }

        .timeline-image {
            position: absolute;
            left: 50%;
            width: 160px;
            height: 160px;
            margin-left: -80px;
            z-index: 90;
            border: 7px solid white;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }

        .timeline-panel {
            position: relative;
            width: 45%;
            float: left;
            padding: 20px 30px;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

            .timeline-panel:before {
                content: '';
                position: absolute;
                top: 26px;
                right: -15px;
                display: inline-block;
                border-top: 15px solid transparent;
                border-left: 15px solid white;
                border-right: 0 solid white;
                border-bottom: 15px solid transparent;
            }

        .timeline-inverted .timeline-panel {
            float: right;
        }

            .timeline-inverted .timeline-panel:before {
                border-left-width: 0;
                border-right-width: 15px;
                left: -15px;
                right: auto;
            }

        .timeline-heading h4 {
            margin-top: 0;
            color: var(--primary);
        }

        .timeline-heading .subheading {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .team-member {
            text-align: center;
            margin-bottom: 3rem;
        }

            .team-member img {
                width: 200px;
                height: 200px;
                border: 5px solid white;
                box-shadow: var(--shadow);
                transition: var(--transition);
            }

            .team-member:hover img {
                transform: scale(1.05);
            }

            .team-member h4 {
                margin-top: 1.5rem;
                margin-bottom: 0.5rem;
            }

        .btn-social {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        #contact {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }

            #contact .section-heading:after {
                background: white;
            }

            #contact .form-control, #contact .form-select {
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 10px;
                color: white;
                padding: 0.8rem 1rem;
            }

                #contact .form-control::placeholder {
                    color: rgba(255, 255, 255, 0.7);
                }

                #contact .form-control:focus, #contact .form-select:focus {
                    background: rgba(255, 255, 255, 0.15);
                    border-color: rgba(255, 255, 255, 0.4);
                    color: white;
                    box-shadow: none;
                }

            #contact .form-label {
                color: white;
                font-weight: 500;
                margin-bottom: 0.8rem;
            }

            #contact .form-check-label {
                color: rgba(255, 255, 255, 0.9);
            }

            #contact .btn-primary {
                background: white;
                color: var(--primary);
                font-weight: 600;
            }

                #contact .btn-primary:hover {
                    background: rgba(255, 255, 255, 0.9);
                    transform: translateY(-3px);
                }

        .footer {
        background: linear-gradient(135deg, #274282 0%, #1e293b 100%);
            color: white;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .timeline:before

        {
            left: 40px;
        }

        .timeline > li {
            margin-bottom: 70px;
        }

        .timeline-image {
            left: 40px;
            margin-left: 0;
            width: 120px;
            height: 120px;
        }

        .timeline-panel {
            width: calc(100% - 120px);
            float: right;
        }

            .timeline-panel:before {
                border-left-width: 0;
                border-right-width: 15px;
                left: -15px;
                right: auto;
            }

        }

        @media (max-width: 768px) {
            .page-section

        {
            padding: 4rem 0;
        }

        .timeline-image {
            width: 100px;
            height: 100px;
        }

        .timeline-panel {
            width: calc(100% - 100px);
        }

        }
        @keyframes fadeInUp {
            from

        {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .clients-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .section-heading {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

            .section-heading h2 {
                font-size: 2.5rem;
                font-weight: 800;
                margin-bottom: 1rem;
                background: var(--gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .section-heading p {
                font-size: 1.2rem;
                color: var(--gray);
                max-width: 600px;
                margin: 0 auto;
            }

            .section-heading:after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: var(--gradient);
                border-radius: 2px;
            }

        .mosaic-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            height: 600px;
        }

        .mosaic-item {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow);
            transition: var(--transition);
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

            .mosaic-item:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }

            .mosaic-item img {
                max-width: 100%;
                max-height: 100%;
                filter: grayscale(100%);
                transition: var(--transition);
                object-fit: contain;
            }

            .mosaic-item:hover img {
                filter: grayscale(0%);
                transform: scale(1.05);
            }

            .mosaic-item:nth-child(1) {
                grid-column: 1 / 3;
                grid-row: 1 / 2;
            }

            .mosaic-item:nth-child(2) {
                grid-column: 3 / 4;
                grid-row: 1 / 3;
            }

            .mosaic-item:nth-child(3) {
                grid-column: 4 / 5;
                grid-row: 1 / 2;
            }

            .mosaic-item:nth-child(4) {
                grid-column: 1 / 2;
                grid-row: 2 / 4;
            }

            .mosaic-item:nth-child(5) {
                grid-column: 2 / 3;
                grid-row: 2 / 3;
            }

            .mosaic-item:nth-child(6) {
                grid-column: 3 / 5;
                grid-row: 3 / 4;
            }

        .client-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: var(--transition);
            opacity: 0;
        }

        .mosaic-item:hover .client-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .client-overlay h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .client-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient);
            opacity: 0.1;
            animation: float 15s infinite linear;
        }

            .shape:nth-child(1) {
                width: 100px;
                height: 100px;
                top: 10%;
                left: 5%;
                animation-delay: 0s;
            }

            .shape:nth-child(2) {
                width: 150px;
                height: 150px;
                bottom: 15%;
                right: 10%;
                animation-delay: -5s;
            }

            .shape:nth-child(3) {
                width: 80px;
                height: 80px;
                top: 50%;
                left: 10%;
                animation-delay: -10s;
            }

        @keyframes float {
            0%

        {
            transform: translate(0, 0) rotate(0deg);
        }

        33% {
            transform: translate(30px, -50px) rotate(120deg);
        }

        66% {
            transform: translate(-20px, 20px) rotate(240deg);
        }

        100% {
            transform: translate(0, 0) rotate(360deg);
        }

        }

        .client-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            text-align: center;
        }

        .stat-item {
            background: white;
            padding: 30px 20px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            min-width: 180px;
        }

            .stat-item:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--gray);
            font-weight: 500;
        }

        .testimonial-section {
            background: white;
            padding: 4rem 0;
            margin-top: 4rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .testimonial-container {
            max-width: 1000px;
            margin: 15px auto;
            position: relative;
        }

        .testimonial {
            background: var(--gradient);
            border-radius: 20px;
            padding: 40px;
            color: white;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

            .testimonial:before {
                content: """; position: absolute;
                top: -30px;
                left: 20px;
                font-size: 120px;
                color: rgba(255, 255, 255, 0.1);
                font-family: Georgia, serif;
            }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 24px;
            color: var(--primary);
        }

        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        @media (max-width: 1200px) {
            .mosaic-container

        {
            height: 500px;
            max-width: 900px;
        }

        }

        @media (max-width: 992px) {
            .mosaic-container

        {
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(4, 1fr);
            height: 700px;
            max-width: 700px;
        }

        .mosaic-item:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 2;
        }

        .mosaic-item:nth-child(2) {
            grid-column: 3 / 4;
            grid-row: 1 / 3;
        }

        .mosaic-item:nth-child(3) {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
        }

        .mosaic-item:nth-child(4) {
            grid-column: 2 / 3;
            grid-row: 2 / 4;
        }

        .mosaic-item:nth-child(5) {
            grid-column: 3 / 4;
            grid-row: 3 / 4;
        }

        .mosaic-item:nth-child(6) {
            grid-column: 1 / 3;
            grid-row: 4 / 5;
        }

        .client-stats {
            flex-wrap: wrap;
            gap: 20px;
        }

        }

        @media (max-width: 768px) {
            .mosaic-container

        {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(6, 1fr);
            height: 1000px;
            max-width: 500px;
        }

        .mosaic-item:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 2;
        }

        .mosaic-item:nth-child(2) {
            grid-column: 1 / 2;
            grid-row: 2 / 4;
        }

        .mosaic-item:nth-child(3) {
            grid-column: 2 / 3;
            grid-row: 2 / 3;
        }

        .mosaic-item:nth-child(4) {
            grid-column: 2 / 3;
            grid-row: 3 / 4;
        }

        .mosaic-item:nth-child(5) {
            grid-column: 1 / 2;
            grid-row: 4 / 5;
        }

        .mosaic-item:nth-child(6) {
            grid-column: 2 / 3;
            grid-row: 4 / 5;
        }

        .section-heading h2 {
            font-size: 2rem;
        }

        }

        @media (max-width: 576px) {
            .mosaic-container

        {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(6, 1fr);
            height: 1500px;
            max-width: 300px;
        }

        .mosaic-item:nth-child(1),
        .mosaic-item:nth-child(2),
        .mosaic-item:nth-child(3),
        .mosaic-item:nth-child(4),
        .mosaic-item:nth-child(5),
        .mosaic-item:nth-child(6) {
            grid-column: 1 / 2;
        }

        .mosaic-item:nth-child(1) {
            grid-row: 1 / 2;
        }

        .mosaic-item:nth-child(2) {
            grid-row: 2 / 3;
        }

        .mosaic-item:nth-child(3) {
            grid-row: 3 / 4;
        }

        .mosaic-item:nth-child(4) {
            grid-row: 4 / 5;
        }

        .mosaic-item:nth-child(5) {
            grid-row: 5 / 6;
        }

        .mosaic-item:nth-child(6) {
            grid-row: 6 / 7;
        }

        .client-stats {
            flex-direction: column;
            align-items: center;
        }

        .stat-item {
            width: 100%;
            max-width: 250px;
        }

        }

        .testimonial-section {
            width: 100%;
            max-width: 1400px;
            margin: 10px auto;
            padding: 40px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

            .section-header h2 {
                font-size: 2.5rem;
                color: #2c3e50;
                margin-bottom: 15px;
                position: relative;
                display: inline-block;
            }

                .section-header h2:after {
                    content: '';
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 80px;
                    height: 4px;
                    background: var(--gradient);
                    border-radius: 2px;
                }

            .section-header p {
                color: #7f8c8d;
                font-size: 1.1rem;
                max-width: 600px;
                margin: 0 auto;
                line-height: 1.6;
            }

        .testimonial-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            /*box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);*/
            background: white;
            padding: 40px 0;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            padding: 0 25px;
        }

        .testimonial {
            flex: 0 0 calc(50% - 0px);
            margin: 0 10px;
            padding: 30px;
            text-align: center;
            background: white;
            border-radius: 15px;
            /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);*/
            transition: all 0.3s ease;
            opacity: 0.7;
            transform: scale(0.95);
        }

            .testimonial.active {
                opacity: 1;
                transform: scale(1);
                background: white;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            }

            .testimonial:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
            padding: 0 10px;
        }

            .testimonial-text:before,
            .testimonial-text:after {
                content: '"';
                font-size: 3rem;
                color: #3498db;
                opacity: 0.2;
                position: absolute;
                font-family: Georgia, serif;
                line-height: 1;
            }

            .testimonial-text:before {
                top: -15px;
                left: 0;
            }

            .testimonial-text:after {
                bottom: -40px;
                right: 0;
            }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .author-info h4 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        .testimonial-rating {
            color: #f1c40f;
            font-size: 1rem;
            margin: 15px 0;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .slider-btn {
            background: var(--gradient);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

            .slider-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
            }

            .slider-btn:disabled {
                opacity: 0.5;
                cursor: not-allowed;
                transform: none;
                box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
            }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gradient);
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .dot.active {
                background: var(--gradient);
                transform: scale(1.2);
            }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .testimonial

        {
            flex: 0 0 calc(50% - 0px);
        }

        }

        @media (max-width: 768px) {
            .testimonial

        {
            flex: 0 0 calc(100% - 0px);
        }

        .testimonial-text {
            font-size: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }

        .author-info h4 {
            font-size: 1.1rem;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        }

        @media (max-width: 480px) {
            .testimonial

        {
            padding: 20px;
        }

        .testimonial-text {
            font-size: 0.95rem;
        }

        .testimonial-author {
            flex-direction: column;
            gap: 10px;
        }

        .slider-btn {
            width: 45px;
            height: 45px;
        }

        }

        .portfolioWrapper {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            /*display: flex;*/
            grid-template-columns: 1fr 380px;
            gap: 35px;
            align-items: start;
        }

        .sectionHeading {
            text-align: center;
            margin-bottom: 50px;
            grid-column: 1 / -1;
        }

            .sectionHeading h2 {
                font-size: 2.5rem;
                color: #2c3e50;
                margin-bottom: 15px;
                position: relative;
                display: inline-block;
            }

                .sectionHeading h2:after {
                    content: '';
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 80px;
                    height: 4px;
                    background: linear-gradient(to right, #3498db, #2ecc71);
                    border-radius: 2px;
                }

            .sectionHeading p {
                color: #7f8c8d;
                font-size: 1.1rem;
                max-width: 600px;
                margin: 0 auto;
                line-height: 1.6;
            }

        /* Slider Container Styles */
        .carouselContainer {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: white;
            padding: 40px 60px;
        }

        .carouselTrack {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carouselSlide {
            flex: 0 0 50%;
            padding: 0 15px;
            transition: all 0.3s ease;
        }

        .clientBox {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

            .clientBox:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }

        .logoContainer {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            position: relative;
        }

            .logoContainer img {
                max-width: 100%;
                max-height: 140px;
                object-fit: contain;
                filter: grayscale(30%);
                transition: all 0.4s ease;
            }

        .clientBox:hover .logoContainer img {
            transform: scale(1.05);
            filter: grayscale(0%);
        }

        .clientDetails {
            padding: 25px;
            text-align: center;
            background: #f8fafc;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            .clientDetails h4 {
                font-size: 1.4rem;
                color: #2c3e50;
                margin-bottom: 10px;
                font-weight: 600;
            }

            .clientDetails p {
                color: #7f8c8d;
                font-size: 0.95rem;
                line-height: 1.5;
            }

        /* Individual client card backgrounds */
        .carouselSlide:nth-child(1) .logoContainer {
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
        }

        .carouselSlide:nth-child(2) .logoContainer {
            background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
        }

        .carouselSlide:nth-child(3) .logoContainer {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .carouselSlide:nth-child(4) .logoContainer {
            background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
        }

        .carouselSlide:nth-child(5) .logoContainer {
            background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
        }

        .carouselSlide:nth-child(6) .logoContainer {
            background: linear-gradient(135deg, #a6c0fe 0%, #f68084 100%);
        }

        .navigationControls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .navButton {
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

            .navButton:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
            }

            .navButton:disabled {
                opacity: 0.5;
                cursor: not-allowed;
                transform: none;
                box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
            }

        .indicatorDots {
            display: flex;
            gap: 10px;
        }

        .dotIndicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #bdc3c7;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .dotIndicator.activeDot {
                background: linear-gradient(135deg, #3498db, #2ecc71);
                transform: scale(1.2);
            }

        /* Side Panel Styles */
        .sidePanel {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: fit-content;
            position: sticky;
            top: 20px;
        }

            .sidePanel h3 {
                font-size: 1.8rem;
                color: #2c3e50;
                margin-bottom: 25px;
                text-align: center;
                position: relative;
            }

                .sidePanel h3:after {
                    content: '';
                    position: absolute;
                    bottom: -8px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 50px;
                    height: 3px;
                    background: linear-gradient(to right, #3498db, #2ecc71);
                    border-radius: 2px;
                }

        .metricsGrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 28px;
        }

        .metricItem {
            text-align: center;
            padding: 18px 12px;
            background: #f8fafc;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

            .metricItem:hover {
                transform: translateY(-5px);
                background: white;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            }

        .metricValue {
            font-size: 2rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 6px;
        }

        .metricLabel {
            font-size: 0.9rem;
            color: #7f8c8d;
            font-weight: 500;
        }

        .quoteBox {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 22px;
            border-radius: 15px;
            margin-top: 22px;
        }

            .quoteBox p {
                font-style: italic;
                line-height: 1.6;
                margin-bottom: 12px;
                font-size: 1rem;
            }

        .quoteAuthor {
            font-weight: 600;
            text-align: right;
            font-size: 0.9rem;
        }

        .actionButton {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 22px;
            text-align: center;
            text-decoration: none;
        }

            .actionButton:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
            }

        .partnerDuration {
            margin-top: 12px;
            color: #3498db;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .portfolioWrapper

        {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .sidePanel {
            position: static;
            order: -1;
        }

        .carouselSlide {
            flex: 0 0 50%;
        }

        }

        @media (max-width: 768px) {
            .carouselContainer

        {
            padding: 30px 40px;
        }

        .carouselSlide {
            flex: 0 0 100%;
        }

        .sectionHeading h2 {
            font-size: 2rem;
        }

        .metricsGrid {
            grid-template-columns: 1fr;
        }

        }

        @media (max-width: 480px) {
            .carouselContainer

        {
            padding: 20px;
        }

        .sidePanel {
            padding: 25px;
        }

        .logoContainer {
            height: 160px;
            padding: 20px;
        }

        .clientDetails {
            padding: 20px;
        }

        .navButton {
            width: 45px;
            height: 45px;
        }

        }

        .chat-fab {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #6366f1;
            color: white;
            border: none;
            box-shadow: 0 10px 25px rgba(0,0,0,.3);
            font-size: 24px;
            z-index: 9999;
            cursor: pointer;
        }
        .chat-overlay {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 0 16px 96px 0; /* keep above the FAB */
            background: transparent;
            pointer-events: none; /* let page stay clickable */
            z-index: 10000;
        }

        .chat-modal {
            width: min(420px, 90vw);
            height: min(640px, 80vh);
            background: #0f172a;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            position: relative;
            pointer-events: auto;
        }

        .chat-modal iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .chat-close {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 2;
        }

        .chat-close:hover {
            background: rgba(255, 255, 255, 0.35);
        }
        .navbar-toggler {
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
        }

        .navbar-toggler-icon {
            display: inline-block;
            width: 1.5em;
            height: 1.5em;
            vertical-align: middle;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100%;
        }

        .navbar-collapse {
            display: none;
        }

            .navbar-collapse.show {
                display: block !important;
            }

        @media (min-width: 992px) {
            .navbar-toggler

        {
            display: none;
        }

        .navbar-collapse {
            display: flex !important;
        }

        }

        @media (max-width: 991.98px) {
            .navbar-collapse

        {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 1rem;
        }

        .nemo-navbar-brand {
            min-width: 0;
            max-width: calc(100vw - 96px);
        }

        }

    .landing-scroll {
        scrollbar-width: thin;
        scrollbar-color: transparent transparent;
    }

        .landing-scroll:hover {
            scrollbar-color: #667eea #f1f1f1;
        }

        .landing-scroll::-webkit-scrollbar {
            width: 3px;
        }

        .landing-scroll::-webkit-scrollbar-track {
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(245, 245, 245, 0.8) 50%, rgba(255, 255, 255, 0.8) 100%);
        }

        .landing-scroll::-webkit-scrollbar-thumb {
            background: transparent;
            box-shadow: inset 0 0 1px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
        }

        .landing-scroll:hover::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .landing-scroll:hover::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: none;
        }
    .email-verification-section {
        position: relative;
    }

    .email-verified-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-left: 10px;
        box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
        animation: badgeAppear 0.3s ease-out;
    }

        .email-verified-badge i {
            font-size: 1.1rem;
        }

    @keyframes badgeAppear {
        from

    {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

    }

    .verification-required-hint {
        display: flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        margin-top: 8px;
        font-size: 0.9rem;
        font-weight: 500;
        animation: hintPulse 2s infinite;
    }

    @keyframes hintPulse {
        0%, 100%

    {
        box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(237, 137, 54, 0.5);
    }

    }

    .btn-submit-disabled {
        position: relative;
        overflow: hidden;
    }

        .btn-submit-disabled::after {
            content: '✓ Verify Email First';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            animation: slideInRight 0.3s ease-out;
        }

    @keyframes slideInRight {
        from

    {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }

    }

    .landing-route-loader {
        position: fixed;
        inset: 0;
        z-index: 10000;
        min-height: 100dvh;
        display: grid;
        grid-template-rows: auto 1fr;
        overflow: hidden;
        background:
            linear-gradient(135deg, rgba(99, 102, 241, 0.08), transparent 42%),
            linear-gradient(315deg, rgba(139, 92, 246, 0.12), transparent 40%),
            #f8fafc;
        color: #111827;
        font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .landing-route-loader::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .72), transparent 78%);
    }

    .landing-loader-nav {
        position: relative;
        z-index: 1;
        min-height: 78px;
        display: flex;
        align-items: center;
        padding: 0 clamp(18px, 5vw, 70px);
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(18px);
        box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    }

    .landing-loader-brand {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        color: #111827;
        font-weight: 800;
    }

    .landing-loader-logo {
        width: 78px;
        height: 58px;
        display: grid;
        place-items: center;
        overflow: hidden;
    }

    .landing-loader-logo img {
        width: auto;
        height: 58px;
        display: block;
    }

    .landing-loader-brand span {
        color: #4b5563;
        font-size: .92rem;
        font-weight: 700;
        letter-spacing: 0;
    }

    .landing-loader-body {
        position: relative;
        z-index: 1;
        display: grid;
        place-items: center;
        padding: 28px;
    }

    .landing-loader-panel {
        width: min(440px, 100%);
        display: grid;
        justify-items: center;
        gap: 18px;
        padding: 34px 30px;
        border: 1px solid rgba(99, 102, 241, 0.16);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
        text-align: center;
    }

    .landing-loader-mark {
        position: relative;
        width: 112px;
        height: 112px;
        display: grid;
        place-items: center;
    }

    .landing-loader-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: conic-gradient(from 90deg, #6366f1, #8b5cf6, #06b6d4, #6366f1);
        animation: landingLoaderSpin 1.1s linear infinite;
    }

    .landing-loader-ring::after {
        content: "";
        position: absolute;
        inset: 7px;
        border-radius: inherit;
        background: #fff;
    }

    .landing-loader-mark img {
        position: relative;
        z-index: 1;
        width: 82px;
        height: auto;
        display: block;
        filter: drop-shadow(0 12px 20px rgba(99, 102, 241, 0.2));
    }

    .landing-loader-copy {
        display: grid;
        gap: 6px;
    }

    .landing-loader-copy strong {
        color: #111827;
        font-size: clamp(1.15rem, 3vw, 1.55rem);
        line-height: 1.15;
        font-weight: 850;
    }

    .landing-loader-copy span {
        color: #64748b;
        font-size: .95rem;
        line-height: 1.45;
        font-weight: 600;
    }

    .landing-loader-progress {
        width: min(260px, 100%);
        height: 5px;
        overflow: hidden;
        border-radius: 999px;
        background: #e5e7eb;
    }

    .landing-loader-progress span {
        display: block;
        width: 44%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, #6366f1, #06b6d4);
        animation: landingLoaderProgress 1.15s ease-in-out infinite;
    }

    @keyframes landingLoaderSpin {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes landingLoaderProgress {
        0% {
            transform: translateX(-115%);
        }

        100% {
            transform: translateX(240%);
        }
    }

    @media (max-width: 575px) {
        .landing-loader-nav {
            min-height: 68px;
            padding: 0 18px;
        }

        .landing-loader-logo {
            width: 64px;
            height: 48px;
        }

        .landing-loader-logo img {
            height: 48px;
        }

        .landing-loader-brand span {
            font-size: .84rem;
        }

        .landing-loader-panel {
            padding: 28px 22px;
            border-radius: 18px;
        }
    }
