        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

        /* =========================================
           1. Base Styles & Typography
           ========================================= */
        :root {
            --primary-blue: #022d8a;
            --secondary-cyan: #2580ff;
            --accent-amber: #fbbf24;
            --trace-color: #3b82f6;
            --trace-color-alt: #0ea5e9;
            --transition-reveal: cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
            color: #0f172a;
            margin: 0;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .font-mono-tech {
            font-family: 'JetBrains Mono', monospace;
        }

        /* =========================================
           Reveal Animation Styles
           ========================================= */
        .reveal {
            opacity: 0;
            pointer-events: none;
        }

        .reveal-visible {
            animation: motion-revealIn 1.8s var(--transition-reveal) forwards;
            pointer-events: auto;
        }

        .reveal:nth-child(2) {
            animation-delay: 0.15s;
        }

        .reveal:nth-child(3) {
            animation-delay: 0.3s;
        }

        .reveal:nth-child(4) {
            animation-delay: 0.45s;
        }

        .reveal:nth-child(5) {
            animation-delay: 0.60s;
        }

        @keyframes motion-revealIn {
            0% {
                opacity: 0;
                clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
                transform: translateY(0);
            }
        }

        /* Helpers & Animations */
        .vision-gradient {
            color: #000;
        }

        .icon-blue {
            stroke: var(--primary-blue);
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        /* =========================================
           2. Unified Header & Navigation
           ========================================= */
        header {
            height: 70px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px;
            border-bottom: 1px solid #eaeaea;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo img {
            height: 42px;
            object-fit: contain;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            width: 40px;
            height: auto;
        }

        .logo-text h1 {
            margin: 0;
            font-size: 20px;
            font-weight:700;
            background-image: linear-gradient(to right, #0603ae, #ba1de1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            font-family: "Plus Jakarta Sans", sans-serif;

        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
            margin: 0;
            padding: 0;
        }

        nav a {
            text-decoration: none;
            color: #111;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #6344f5;
        }


        /* =========================================
           3. Ambient Background Effects
           ========================================= */
        .ambient-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(139, 92, 246, 0.15) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -2;
            -webkit-mask-image: radial-gradient(ellipse at 75% 50%, black 30%, transparent 65%);
            mask-image: radial-gradient(ellipse at 75% 50%, black 30%, transparent 65%);
        }

        .ambient-glow {
            position: absolute;
            top: 15%;
            right: 5%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
            z-index: -1;
            border-radius: 50%;
        }

        .mesh-bg {
            position: absolute;
            top: -40%;
            left: -40%;
            width: 180%;
            height: 180%;
            z-index: 0;
            filter: blur(120px);
            opacity: 0.7;
            background-image:
                radial-gradient(at 10% 20%, #bcd7ff 0px, transparent 45%),
                radial-gradient(at 80% 10%, #d8b7f8 0px, transparent 45%),
                radial-gradient(at 50% 50%, #b0ffd0 0px, transparent 45%),
                radial-gradient(at 20% 80%, #b6fbff 0px, transparent 45%),
                radial-gradient(at 90% 90%, #f4d7ab 0px, transparent 45%);
            animation: meshMove 20s ease-in-out infinite alternate;
        }

        .mesh-fade {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(to bottom,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.5) 50%,
                    rgba(255, 255, 255, 0.95) 100%);
        }

        /* =========================================
           4. Hero Section
           ========================================= */
        .main-section {
            flex-grow: 1;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 10;
            padding: 16px 32px 48px;
            overflow: hidden;
        }

        .main-container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            grid-column: span 5 / span 5;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            z-index: 20;
            transform: scale(0.9);
            transform-origin: left top;
        }

        .hero-title {
            font-size: 4.2rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #1e1b4b;
            margin-top: -60px;
            margin-bottom: 1.5rem;
        }

        .gradient-text {
            background-image: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }

        .hero-description {
            font-size: 1.35rem;
            line-height: 1.625;
            color: #040404;
            font-weight: 500;
            width: 680px;
            max-width: 100%;
            margin-bottom: 2.5rem;
        }

        /* =========================================
           5. 3D Hardware Board Section
           ========================================= */
        .hardware-container {
            grid-column: span 7 / span 7;
            display: flex;
            perspective: 1200px;
            width: 100%;
            height: 600px;
            align-items: center;
            padding-right: 100px;
            justify-content: flex-end;
        }

        .board-wrapper {
            position: relative;
            width: 420px;
            height: 480px;
            transform-style: preserve-3d;
            transition: transform 0.1s ease-out;
            transform: scale(clamp(0.6, 1vw, 1.1));
        }

        .pcb-base {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border: 2px solid #f8fafc;
            border-radius: 32px;
            box-shadow:
                -20px 30px 60px rgba(30, 27, 75, 0.08),
                inset 0 0 0 4px #ffffff;
            transform: translateZ(0px);
            overflow: hidden;
        }

        .pcb-traces {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0.7;
        }

        .trace {
            fill: none;
            stroke: #e2e8f0;
            stroke-width: 2;
        }

        .trace-glow {
            fill: none;
            stroke: #10b981;
            stroke-width: 2.5;
            stroke-dasharray: 15 30;
            animation: dataFlow 3s linear infinite;
        }

        @keyframes dataFlow {
            to {
                stroke-dashoffset: -100;
            }
        }

        .component {
            position: absolute;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
        }

        .cpu {
            width: 120px;
            height: 120px;
            top: 50%;
            left: 50%;
            margin-top: -60px;
            margin-left: -60px;
            border-radius: 20px;
            transform: translateZ(40px);
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            box-shadow:
                0 20px 40px rgba(30, 27, 75, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 1);
        }

        .cpu-inner {
            width: 80px;
            height: 80px;
            background: #1e1b4b;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .cpu-inner-title {
            color: white;
            font-weight: 800;
            font-size: 1.125rem;
            letter-spacing: -0.015em;
        }

        .cpu-inner-subtitle {
            color: #c4b5fd;
            font-family: 'JetBrains Mono', monospace;
            font-size: 8px;
            margin-top: 4px;
        }

        .cpu-pulse {
            position: absolute;
            inset: -4px;
            border-radius: 24px;
            border: 2px solid rgba(139, 92, 246, 0.5);
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
            animation: pulseChip 2s infinite cubic-bezier(0.66, 0, 0, 1);
        }

        @keyframes pulseChip {
            to {
                box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
            }
        }

        .radio-module {
            width: 70px;
            height: 90px;
            top: 40px;
            right: 40px;
            transform: translateZ(30px);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .radio-icon {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            background-color: #f8fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
        }

        .radio-indicator {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background-color: #3b82f6;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .radio-bars {
            display: flex;
            gap: 0.25rem;
        }

        .radio-bar {
            width: 0.25rem;
            height: 0.75rem;
            background-color: #cbd5e1;
            border-radius: 0.125rem;
        }

        .sensor-module {
            width: 60px;
            height: 60px;
            bottom: 50px;
            left: 50px;
            transform: translateZ(25px);
        }

        .sensor-ring {
            width: 2rem;
            height: 2rem;
            border: 2px solid #34d399;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sensor-core {
            width: 1rem;
            height: 1rem;
            background-color: #a7f3d0;
            border-radius: 50%;
        }

        .gpio-pins {
            width: 30px;
            height: 160px;
            top: 160px;
            left: 20px;
            background: #f8fafc;
            transform: translateZ(15px);
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 10px 0;
            align-items: center;
            border: 1px solid #e2e8f0;
        }

        .pin {
            width: 12px;
            height: 4px;
            background: #94a3b8;
            border-radius: 2px;
        }

        .spec-tag {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border: 1px solid #e2e8f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 700;
            color: #1e293b;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.08);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .spec-tag span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }

        .tag-1 {
            top: -20px;
            right: -60px;
            transform: translateZ(80px);
        }

        .tag-1 span {
            background-color: #3b82f6;
        }

        .tag-2 {
            bottom: 80px;
            right: -40px;
            transform: translateZ(60px);
        }

        .tag-2 span {
            background-color: #10b981;
        }

        .tag-3 {
            top: 100px;
            left: -50px;
            transform: translateZ(70px);
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: #7c3aed;
        }

        /* =========================================
           6. Philosophy Section
           ========================================= */
        .philosophy-section {
            background: #ffffff;
            padding: 70px 80px;
        }

        .philosophy-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: auto;
            max-width: 1200px;
        }

        .philosophy-image img {
            width: 300px;
            height: 300px;
            object-fit: cover;
            border-radius: 12px;
        }

        .philosophy-content {
            max-width: 520px;
        }

        .philosophy-top-text {
            font-size: 12px;
            letter-spacing: 2px;
            color: #0211c0;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .philosophy-main-heading {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.2;
            color: #120053;
        }

        .philosophy-side-text {
            max-width: 300px;
            font-size: 13px;
            color: #000000;
            line-height: 1.7;
        }

        /* =========================================
           7. Hardware Features Section
           ========================================= */
        .hardware-features-wrapper {
            background-color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hardware-features-wrapper .hw-container {
            display: flex;
            gap: 30px;
            width: 100%;
            min-height: 650px;
        }

        .hardware-features-wrapper .left-panel {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hardware-features-wrapper .card {
            background: rgba(80, 176, 255, 0.6);
            border-radius: 24px;
            position: relative;
            flex: 1;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid rgba(226, 232, 240, 0.8);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .hardware-features-wrapper .card-title {
            position: absolute;
            top: 30px;
            right: 30px;
            text-align: right;
            font-size: 1.6rem;
            font-weight: 500;
            text-transform: uppercase;
            color: #1e293b;
            line-height: 1.2;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .hardware-features-wrapper .card-desc {
            position: absolute;
            bottom: 30px;
            left: 30px;
            font-size: 1rem;
            font-weight: 500;
            color: #475569;
            max-width: 80%;
            line-height: 1.6;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .hardware-features-wrapper .card:hover {
            background: #2c2c7e;
            border-color: #2b2b2d;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .hardware-features-wrapper .card:hover .card-title,
        .hardware-features-wrapper .card:hover .card-desc {
            color: #ffffff;
        }

        .hardware-features-wrapper .card:hover .ball-container {
            opacity: 1;
            transform: translateY(0);
        }

        .hardware-features-wrapper .ball-container {
            position: absolute;
            bottom: 25px;
            right: 25px;
            display: flex;
            gap: 10px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .hardware-features-wrapper .ball {
            position: relative;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(45deg, red, orange, rgb(0, 255, 140), green, cyan, blue, violet, red);
            background-size: 300% 300%;
            animation: bounce 1.6s infinite cubic-bezier(.5, .05, .2, 1), gradientShift 4s infinite linear;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4), inset -6px -6px 12px rgba(0, 0, 0, 0.4), inset 4px 4px 10px rgba(255, 255, 255, 0.3);
        }

        .hardware-features-wrapper .ball::before {
            content: "";
            position: absolute;
            top: 5px;
            left: 8px;
            width: 15px;
            height: 10px;
            border-radius: 50%;
            background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2), transparent);
            filter: blur(1px);
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        .hardware-features-wrapper .ball:nth-child(2) {
            animation-delay: 0.2s, 0s;
        }

        .hardware-features-wrapper .ball:nth-child(3) {
            animation-delay: 0.4s, 0s;
        }

        .hardware-features-wrapper .right-panel {
            flex: 1.3;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .hardware-features-wrapper .right-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hardware-features-wrapper .overlay-content {
            position: absolute;
            top: 30px;
            left: 30px;
            text-align: left;
            color: rgb(255, 255, 255);
            z-index: 2;
        }

        .hardware-features-wrapper .overlay-content h1 {
            font-size: 3.5rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(230, 218, 255, 0.5), 0 0 15px rgba(59, 69, 158, 0.5);
        }

        /* =========================================
           8. Manufacturing Vision Section
           ========================================= */
        .manufacturing-section {
            position: relative;
            width: 100%;
            padding: 6rem 0;
            background-color: #ffffff;
            border-top: 1px solid #f1f5f9;
        }

        .manufacturing-container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .manufacturing-container {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .manufacturing-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            z-index: 20;
        }

        .manufacturing-title {
            font-size: 2.25rem;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -0.025em;
            color: #0f172a;
            margin-bottom: 1.5rem;
            background-image: linear-gradient(135deg, #003a98 0%, #4c00ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }

        @media (min-width: 768px) {
            .manufacturing-title {
                font-size: 3rem;
                line-height: 1;
            }
        }

        .manufacturing-desc {
            font-size: 1.125rem;
            color: #64748b;
            line-height: 1.625;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .manufacturing-features {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 1.5rem;
            width: 100%;
        }

        @media (min-width: 640px) {
            .manufacturing-features {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .feature-icon-wrapper {
            margin-top: 0.25rem;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 0.375rem;
            background-color: #eff6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-title {
            font-weight: 700;
            color: #0f172a;
            font-size: 15px;
        }

        .feature-desc {
            font-size: 13px;
            color: #64748b;
            margin-top: 0.25rem;
            font-weight: 500;
        }

        /* Manufacturing Graphics */
        .manufacturing-graphic-wrapper {
            position: relative;
            width: 100%;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .manufacturing-graphic-card {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 400px;
            background-color: #f8f8fc;
            border: 1px solid #e2e8f0;
            border-radius: 1.5rem;
            padding: 1.5rem;
            box-shadow: 0 1px 2px 0 rgba(221, 193, 252, 0.759);
            overflow: hidden;
            background-image: radial-gradient(#001c3d 1px, transparent 1px);
            background-size: 20px 20px;
        }

        .manufacturing-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.4;
        }

        .trace-line {
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            stroke: var(--trace-color);
            animation: drawTrace 3s ease-in-out infinite alternate;
        }

        .trace-line-delayed {
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            stroke: var(--trace-color-alt);
            animation: drawTrace 3s ease-in-out infinite alternate 1.5s;
        }

        @keyframes drawTrace {
            0% {
                stroke-dashoffset: 100;
            }

            100% {
                stroke-dashoffset: 0;
            }
        }

        .manufacturing-cpu-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }

        .manufacturing-cpu-box {
            width: 8rem;
            height: 8rem;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .manufacturing-cpu-core {
            width: 5rem;
            height: 5rem;
            background-color: #0f172a;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .cpu-core-title {
            display: block;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.125rem;
            letter-spacing: -0.025em;
        }

        .cpu-core-subtitle {
            display: block;
            color: #ffffff;
            font-family: 'JetBrains Mono', monospace;
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.125rem;
        }

        .cpu-pin {
            position: absolute;
            width: 0.5rem;
            height: 0.25rem;
            background-color: var(--accent-amber);
        }

        .cpu-pin.top {
            top: -0.25rem;
            border-top-left-radius: 0.125rem;
            border-top-right-radius: 0.125rem;
        }

        .cpu-pin.bottom {
            bottom: -0.25rem;
            border-bottom-left-radius: 0.125rem;
            border-bottom-right-radius: 0.125rem;
        }

        .cpu-pin.l-1 {
            left: 1rem;
        }

        .cpu-pin.l-2 {
            left: 2rem;
        }

        .cpu-pin.r-1 {
            right: 1rem;
        }

        .cpu-pin.r-2 {
            right: 2rem;
        }

        .manufacturing-module {
            position: absolute;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 0.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            width: 4rem;
            height: 4rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .manufacturing-module.sensor {
            top: 2rem;
            left: 2rem;
        }

        .manufacturing-module.comm {
            bottom: 2rem;
            right: 2rem;
        }

        .module-icon-bg {
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.25rem;
        }

        .module-icon-bg.emerald {
            background-color: #d1fae5;
        }

        .module-icon-bg.blue {
            background-color: #dbeafe;
        }

        .module-indicator {
            width: 0.5rem;
            height: 0.5rem;
            background-color: #10b981;
            border-radius: 50%;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .module-label {
            font-size: 8px;
            font-weight: 700;
            color: #000000;
            text-transform: uppercase;
        }

        /* =========================================
           9. Unified Footer Section
           ========================================= */
        .footer {
            border-top: 1px solid #e5e5e5;
            padding: 30px 56px;
            background: #ffffff;
            color: #111;
            margin-top: 30px;
            position: relative;
            z-index: 5;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .footer-brand img {
            width: 140px;
            margin-bottom: 16px;
        }

        .subtext {
            font-size: 13px;
            line-height: 1.6;
            color: #444;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col li {
            font-size: 13px;
            margin-bottom: 8px;
            cursor: pointer;
            color: #222;
        }

        .footer-col a {
            text-decoration: none;
            color: #222;
        }

        .footer-col a:hover {
            text-decoration: none;
            color: #0004ff;
        }


        .address {
            font-size: 13px;
            line-height: 1.6;
            color: #333;
        }

        .btn-footer-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
            color: #ffffff;
            background: linear-gradient(180deg, #8b6dfa 0%, #6344f5 100%);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: inherit;
            text-decoration: none;
            width: max-content;
        }

        .btn-footer-cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 8%;
            width: 84%;
            height: 40%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
            border-radius: 50px;
            pointer-events: none;
        }

        .btn-footer-cta:hover {
            transform: translateY(-2px) scale(1.02);
            background: linear-gradient(180deg, #997eff 0%, #7053ff 100%);
        }

        .btn-footer-cta:active {
            transform: scale(0.98);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) inset;
        }

        .footer-bottom {
            margin-top: 60px;
            display: flex;
            justify-content: center;
            font-size: 12px;
            color: #555;
        }
        
.footer-brand .logo {
    display: flex;
    flex-direction: row;    
    align-items: center;    
    justify-content: flex-start; 
    gap: 12px;                
    margin-bottom: 16px;    
}

.footer-brand .logo img {
    width: 35px;             
    height: auto;
    margin-bottom: 0 !important; 
    display: block;
}


.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
   font-weight: 700;
  background-image: linear-gradient(to right, #0603ae, #ba1de1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0;
    white-space: nowrap;     
}
        .address span.reveal {
            display: block;
        }
        /* =========================================
           10. Media Queries (Cleaned & Unified)
           ========================================= */

        @media (max-width: 1024px) {
            header {
                padding: 0 40px;
            }

            nav ul {
                gap: 20px;
            }

            .main-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-content {
                grid-column: span 12;
                transform: scale(1);
                margin-top: 0;
            }

            .hero-title {
                font-size: 3rem;
                margin-top: 0;
            }

            .hero-description {
                width: 100%;
                font-size: 1.15rem;
            }

            .hardware-container {
                grid-column: span 12;
                justify-content: center;
                padding-right: 0;
                height: auto;
            }

            .board-wrapper {
                transform: scale(0.9);
            }

            .philosophy-section {
                padding: 60px 40px;
            }

            .philosophy-container {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .philosophy-image img {
                width: 260px;
                height: 260px;
            }

            .philosophy-main-heading {
                font-size: 32px;
            }

            .philosophy-side-text {
                max-width: 500px;
            }

            .hardware-features-wrapper {
                padding: 40px 20px;
            }

            .hardware-features-wrapper .hw-container {
                flex-direction: column;
            }

            .hardware-features-wrapper .right-panel {
                height: 360px;
            }

            .hardware-features-wrapper .overlay-content h1 {
                font-size: 2.4rem;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 950px) {
            .hardware-features-wrapper .hw-container {
                flex-direction: column;
                height: auto;
                min-height: auto;
            }

            .hardware-features-wrapper .left-panel,
            .hardware-features-wrapper .right-panel {
                width: 100%;
            }

            .hardware-features-wrapper .card {
                height: 180px;
                flex: none;
            }

            .hardware-features-wrapper .right-panel {
                height: 400px;
                flex: none;
            }

            .hardware-features-wrapper .overlay-content h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            header {
                height: auto;
                min-height: 60px;
                padding: 15px 2px;
                flex-direction: column;
                gap: 15px;
                justify-content: center;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .hero-title {
                font-size: 2.4rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .board-wrapper {
                transform: scale(0.75);
            }

            .philosophy-section {
                padding: 50px 20px;
            }

            .philosophy-image img {
                width: 220px;
                height: 220px;
            }

            .philosophy-main-heading {
                font-size: 26px;
            }

            .philosophy-top-text {
                font-size: 11px;
            }

            .philosophy-side-text {
                font-size: 12px;
            }

            .hardware-features-wrapper {
                padding: 30px 16px;
            }

            .hardware-features-wrapper .card {
                height: 170px;
            }

            .hardware-features-wrapper .card-title {
                font-size: 1.2rem;
                top: 20px;
                right: 20px;
            }

            .hardware-features-wrapper .card-desc {
                font-size: 0.9rem;
                bottom: 20px;
                left: 20px;
            }

            .hardware-features-wrapper .overlay-content h1 {
                font-size: 2rem;
            }

            .manufacturing-graphic-card {
                max-width: 320px;
            }

            .manufacturing-graphic-wrapper {
                height: 380px;
            }

            /* Footer Centered View */
            .footer {
                padding: 48px 5% 24px;
                text-align: center;
            }

            .footer-top {
                flex-direction: column;
                gap: 40px;
                align-items: center;
            }

            .footer-brand,
            .footer-col {
                min-width: 100%;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-brand img {
                width: 120px;
            }

            .footer-brand .logo {
                display: flex;
                justify-content: center;
            }

            .footer-brand .subtext {
                max-width: 100%;
                margin: 0 auto;
            }

            .footer-col ul {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 0;
            }

            .btn-footer-cta {
                margin: 0 auto;
            }

            .footer-bottom {
                margin-top: 30px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 5px 1px;
            }

            nav ul {
                gap: 10px;
            }

            nav a {
                font-size: 11px;
            }

           .logo img {

        height: 40px; 

        width: auto;

    }

    .logo-text h1 {

        font-size: 20px;

    }     

            .hero-content {
                width: 380px;
                overflow-wrap: break-word;
                word-wrap: break-word;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-description {
                font-size: 0.9rem;
            }

            .board-wrapper {
                margin-right: 100px;
            }

            .philosophy-image img {
                width: 180px;
                height: 180px;
            }

            .philosophy-main-heading {
                font-size: 22px;
            }

            .hardware-features-wrapper .overlay-content h1 {
                font-size: 1.6rem;
            }

            .hardware-features-wrapper .card-title {
                font-size: 1rem;
            }

            .hardware-features-wrapper .card-desc {
                font-size: 0.8rem;
            }

            .manufacturing-graphic-card {
                max-width: 280px;
            }

            .manufacturing-graphic-wrapper {
                height: 320px;
            }

            .subtext,
            .footer-col li {
                font-size: 12px;
            }

            .btn-footer-cta {
                width: 100%;
                padding: 14px 30px;
                font-size: 1.1rem;
                white-space: nowrap;
            }
             .footer-brand .logo{
    margin-left: 30px;
  } 
        }
