
        :root {
            --primary-color: #7c4dff; 
            --secondary-color: #00e5ff;
            --background-dark: #0d1b2a; 
            --background-mid: #1b263b; 
            --background-light: #415a77;
            --text-light: #e0e0e0; 
            --shadow-color: rgba(124, 77, 255, 0.3); 
 
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-mid) 50%, var(--background-light) 100%);
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
           padding: 0 20px;
        }


.navbar {
       background: rgb(22 44 69 / 80%) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(124, 77, 255, 0.2);
    padding: 15px 0;
    transition: all 0.4s ease;
    position: relative;
    z-index:999;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img{
    width: 200px;
}




.nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }

        .nav-links a:hover { color: var(--secondary-color); }

       
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1100;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--background-light);
            transition: 0.3s;
        }

       @media (max-width: 768px) {
   html{
    overflow-x: hidden;
   }
    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

 
    .nav-links {
      display: none;
    }

    .nav-links.active {
        right: 0;
          position: fixed;
        top: 0;
       
        width: 80%; 
        height: 100vh;
        background: #0d1b2a;
        border-left: 1px solid rgba(124, 77, 255, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 120px 40px; 
        gap: 25px;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        border-radius: 40px 0 0 40px;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
         z-index: 1000;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links a {
        font-size: 16px !important;
        font-weight: 700;
        color: #ffffff !important;
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }
.nav-links .unique-btn {
        margin-top: 30px;
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: center;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        border: none;
        font-size: 1.1rem;
    }
    .nav-links a::before {
        content: '→';
        font-size: 1rem;
        color: var(--secondary-color);
        transition: transform 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(124, 77, 255, 0.1);
        border-color: var(--primary-color);
        transform: translateX(10px);
    }

    .nav-links a:hover::before {
        transform: translateX(5px);
    }

 
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.7);
        display: none;
        z-index: 1000;
    }
    
    .menu-overlay.show {
        display: block;
    }
    .is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .is-active span:nth-child(2) { opacity: 0; }
            .is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

   
.unique-btn {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: var(--text-light) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}


.btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}


.unique-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
   background: radial-gradient(circle, #7c4dff 0%, #6200ea 60%, #00e5ff 100%);
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
    border-radius: 40%; 
}

.unique-btn:hover {
    color: var(--background-dark) !important;
    border-color: var(--secondary-color);
    box-shadow: 0 0 25px var(--shadow-color);
    transform: translateY(-3px);
}

.unique-btn:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}


.btn-flare {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: none;
    z-index: 3;
}

.unique-btn:hover .btn-flare {
    left: 150%;
    transition: all 0.7s ease-in-out;
}


.unique-btn:active {
    transform: scale(0.95);
}
      



        .hero {
            background-size: cover;
            padding: 150px 0;
            text-align: center;
            color: var(--primary-color);
            position: relative;
            overflow: hidden;
        }
       .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="pulseGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230d1b2a;stop-opacity:1" /><stop offset="100%" style="stop-color:%231b263b;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="400" fill="url(%23pulseGrad)"/><path d="M0 200 Q300 150 600 200 T1200 200 V400 H0 Z" fill="%237c4dff" opacity="0.1"/><path d="M0 250 Q300 200 600 250 T1200 250 V400 H0 Z" fill="%2300e5ff" opacity="0.15"/><path d="M0 300 Q300 250 600 300 T1200 300 V400 H0 Z" fill="%23415a77" opacity="0.2"/></svg>')
    center / cover no-repeat;

    opacity: 0.26;   
    z-index: 0;
}

.hero {
    position: relative;
    padding: 100px 0 120px;
    text-align: center;
  
}


.hero-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--secondary-color);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
   
}


.hero h1 {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -2px;
     margin-top: 35px;
}

.hero h1 span {
    background: linear-gradient(135deg, #00e5ff 0%, #7c4dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 0 20px rgba(124, 77, 255, 0.3));
}


.hero-desc {
   
    margin: 0 auto 50px;
    font-size: 1.3rem;
    color: #94a3b8;
    line-height: 1.7;
    font-weight: 400;
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
}
      
  .hero-actions{
    display: flex;
justify-content: center;
gap: 50px;
}     
      
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: rgba(98, 0, 234, 0.05); 
    color: #d1b3ff !important; 
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(124, 77, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    cursor: pointer;
}

.btn::after {
    content: '';
    position: absolute;
    aspect-ratio: 1/1;
    width: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 20%,
        #7c4dff 50%, 
        #00e5ff 70%, 
        transparent 100%
    );
    animation: rotateBeam 4s linear infinite;
    z-index: -2;
    opacity: 0.5;
}

@keyframes rotateBeam {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.btn::before {
    content: '';
    position: absolute;
    top: 120%;
    left: -25%; 
    width: 150%;
    height: 400%; 
    background: linear-gradient(45deg, #6200ea, #7c4dff, #00e5ff); 
    transform: rotate(0deg);
    border-radius: 42%; 
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}


.btn:hover {
    color: white !important;
    transform: translateY(-8px) scale(1.05); 
    border-color: #00e5ff; 
   
}

.btn:hover::before {
    top: -150%; 
    transform: rotate(380deg); 
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
}
   
.btn-outline {
    position: relative;
    min-width: 180px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05); 
    color: #00e5ff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1; 
    cursor: pointer;
}


.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 229, 255, 0.3),
        transparent
    );
    transition: 0.6s;
    z-index: -1; 
    pointer-events: none; 
}

.btn-outline:hover {
    transform: translateY(-5px);
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
    color: #ffffff !important; 
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:active {
    transform: translateY(-2px) scale(0.98);
}
@media (max-width:520px) {
    .hero-actions{
            gap: 20px;
    flex-direction: column;
    }
    .trust-bar{
            align-items: baseline;
    flex-direction: column;
    gap: 0px;
    }
    .hero-badge{
            font-size: 11px !important;

    }
    .hero{
            text-align: left;
            padding: 70px 0;
    }
        .hero h1 {
        font-size: 36px !important;
        line-height: 1.4;

        }
        .cta-section, .mechanical-tech,     .premium-faq, .contact-premium {
            padding: 100px 0 !important;
        }
        .flow-header h2, .mech-header h2{
              font-size: 22px !important;
        line-height: 1.4;
        letter-spacing: 0 !important;
        }
        .module-content, .feature-strip {
            flex-direction: column; 
               }
    .display-title {
        font-size: 30px !important;
    }
            .mech-engine-wrap {
    grid-template-columns: repeat(1, 1fr) !important;
}
}
      
        section {
            padding: 80px 0;
            background: rgba(13, 27, 42, 0.9);
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 2px 10px var(--shadow-color);
        }
       
        .services {
            background: rgba(27, 38, 59, 0.9);
        }
    .hero-terminal {
 
   
    display: flex;
    align-items: center;
    overflow: hidden;
        padding: 120px 8%;
}

.terminal-grid {
        display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    /* align-items: center; */
    width: 100%;
}



.content-side{
    margin-top: 0px;
}

.power-title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
   margin-top: 30px;
   margin-bottom: 30px;
}

.hero-p{
    margin-bottom: 40px;
}

.visual-side {
  width: 50%;
}

.engine-container {
    width: 600px;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
  
    overflow: hidden;
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5);
}

.laser-scanner {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #3b82f6;
    box-shadow: 0 0 15px #3b82f6;
    z-index: 10;
    animation: scanLine 3s infinite linear;
}


.transaction-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    animation: scrollStack 10s infinite linear;
}

.t-row {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-left: 3px solid #3b82f6;
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.8rem;
    color: #64748b;
}

.t-row strong { color: #22c55e; }
.t-row em { color: #fff; font-style: normal; }


.engine-base {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: #020202;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    text-align: center;
}

.base-text {
    font-family: monospace;
    color: #3b82f6;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.base-glow {
    position: absolute;
    top: -50px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
    filter: blur(20px);
}


@keyframes scanLine {
    0% { top: 0; }
    100% { top: 100%; }
}

@keyframes scrollStack {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.transaction-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    animation: scrollStack 20s linear infinite; 
}



@media (max-width: 992px) {
    .terminal-grid { grid-template-columns: 1fr; }
    .visual-side { display: none; }
}

:root {

    --card-bg: rgba(255, 255, 255, 0.03);
    --border-soft: rgba(255, 255, 255, 0.08);
}

#command-center {
  
    padding: 100px 20px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.module {
       background: rgba(255, 255, 255, 0.02);
    
    backdrop-filter: blur(10px);
    border-radius: 24px; 
    padding: 20px 30px;
    position: relative;
    display: flex;
    flex-direction: column;

    transition: all 0.5s cubic-bezier(0.24, 1, 0.32, 1);
    overflow: hidden;
    cursor: pointer;
    /* border: 1px solid var(--border-soft);  */
}


.module::before, 
.module::after {
 
    background: var(--border-soft);
    
    content: '';
    position: absolute;
    transition: all 0.5s ease-in-out;
    z-index: 5;
    box-shadow: 0 0 15px var(--background-light);
}


.module::before {
    left: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
}


.module::after {
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
}


.module:hover::before {
    left: auto;
    right: 0;   
    top: 0;
    height: 100%;
    box-shadow: 0 0 15px var(--background-dark);
}

.module:hover::after {
    bottom: auto;
    top: 0;    
    right: 0;
    width: 100%;
    box-shadow: 0 0 15px var(--border-soft);
}


.module:hover {
    transform: translateY(-12px);
        background: linear-gradient(218deg, rgb(92 119 246 / 18%) 0%, rgb(255 255 255 / 0%) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: transparent;
}


.module-icon {
    font-size:25px;
    margin-bottom: 25px;
    margin-top: 25px;
    transition: transform 0.5s ease;
    z-index: 2;
}



.module-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.module-text p {
    color: #8892b0;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
}



@keyframes floatIcon {
    0%, 100% { transform: translateY(0) scale(1.1); }
    50% { transform: translateY(-12px) scale(1.1); }
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .command-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .command-grid { grid-template-columns: 1fr; }
}

/* #command-center {
    padding: 160px 0;
 
    color: #fff;
    min-height: 100vh;
}

.header-minimal { margin-bottom: 100px; }
.header-minimal h2 { font-size: 3.5rem; font-weight: 300; letter-spacing: -2px; }
.header-minimal h2 span { font-weight: 800; color: #8b5cf6; }

.line-animate {
    width: 100px; height: 4px; background: #8b5cf6; margin-top: 20px;
    position: relative; overflow: hidden;
}
.line-animate::after {
    content: ''; position: absolute; left: -100%; width: 100%; height: 100%;
    background: #fff; animation: lineFlow 3s infinite;
}

@keyframes lineFlow { 100% { left: 100%; } }


.command-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    margin-bottom: 50px;
}

.module {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--m-color); 
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: crosshair;
}


.module::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: linear-gradient(90deg, var(--m-color), transparent);
    opacity: 0.05; transition: 0.5s; z-index: 0;
}

.module:hover {
    transform: translateX(15px);
    background: rgba(255, 255, 255, 0.05);
}

.module:hover::before { width: 100%; }

.module-number {
    font-family: monospace; font-size: 0.9rem; color: var(--m-color);
    opacity: 0.6; margin-bottom: 20px; letter-spacing: 2px;
}

.module-content { display: flex; gap: 30px; align-items: flex-start; position: relative; z-index: 1; }

.module-icon { font-size: 2.2rem; color: var(--m-color); transition: 0.5s; }

.module:hover .module-icon { transform: scale(1.2); filter: drop-shadow(0 0 15px var(--m-color)); }

.module-text h3 { font-size: 1.6rem; margin-bottom: 10px; font-weight: 700; }
.module-text p { color: #8892b0; font-size: 1rem; line-height: 1.6; max-width: 400px; }


.module-status {
    margin-top: 30px; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 2px; color: #8892b0; display: flex; align-items: center; gap: 10px;
}

.status-dot {
    width: 6px; height: 6px; background: var(--m-color); border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }


@media (max-width: 992px) { .command-grid { grid-template-columns: 1fr; } }



.module {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--m-color);
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: crosshair;
    overflow: hidden; 
}


.module::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.05),
        var(--m-color),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

.module:hover::after {
    opacity: 0.2;
    animation: scanMove 2s linear infinite;
}

@keyframes scanMove {
    0% { top: -100%; }
    100% { top: 100%; }
}


.module::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--m-color) transparent transparent;
    opacity: 0;
    transition: 0.5s;
    filter: blur(15px);
}

.module:hover::before {
    opacity: 0.15;
    width: 40px;
    height: 40px;
}


.module:hover .module-text h3 {
    letter-spacing: 1px;
    color: var(--m-color);
    transition: 0.4s;
}

.module:hover .module-icon {
    animation: floatIcon 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--m-color));
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) scale(1.2); }
    50% { transform: translateY(-10px) scale(1.2); }
}



@keyframes glitchText {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}


.module-status {
    position: relative;
    z-index: 2;
}

.module-icon {
    position: relative;
    z-index: 1;
}

.module-icon::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    border: 1px solid var(--m-color);
    border-radius: 50%;
    animation: ripple 3s infinite; 
    opacity: 0;
    pointer-events: none;
}

@keyframes ripple {
    0% { width: 40px; height: 40px; opacity: 0.5; }
    100% { width: 100px; height: 100px; opacity: 0; }
} */






        .about {
            background: rgba(13, 27, 42, 0.9);
        }
     


.power-flow {

    padding: 120px 0;
    color: white;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}


.flow-header {
    text-align: center;
    margin-bottom: 80px;
      margin-top: 50px;
}

.flow-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-top: 15px;
    color: #fff;
}

.flow-header h2 span {
    background: linear-gradient(90deg, #00d2ff, #9d50bb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

.header-desc {
    font-size: 1.1rem;
    color: #8a8a8a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.grid-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.icon-sphere {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.sphere-inner {
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--node-color);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    position: relative;
}

.power-node.active .sphere-inner,
.power-node:hover .sphere-inner {
   
    border-color: var(--node-color);
    box-shadow: 0 0 30px var(--node-color);
    transform: scale(1.1);
}


.orbit {
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 1px dashed var(--node-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}


.power-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
    position: relative;
    top: -50px; 
}

.pulse {
    position: absolute;
    width: 50px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--node-color), transparent);
    animation: flow 3s infinite linear;
}


.content-block {
    text-align: center;
}

.step-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--node-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.content-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.content-block p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}


@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes flow {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}


@media (max-width: 768px) {
    .grid-wrapper { flex-direction: column; gap: 80px; }
    .power-line { display: none; }
}


.sticky-why-us {
  
    color: white;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.sticky-wrapper {
    display: flex;
    gap: 80px;
    position: relative;
}


.sticky-left {
    flex: 1;
    height: fit-content;
    position: sticky;
    top: 100px; 
}

.sticky-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.sticky-content h2 span {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-content p {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 450px;
}


.scroll-right {
    flex: 1;
}

.feature-strip {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 30px;
    transition: 0.4s;
}

.feature-strip:hover {
    transform: translateX(10px);
}

.f-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

.f-info i {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    display: block;
}

.f-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.f-info p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    transition: 0.3s;
}

.feature-strip:hover p {
    color: #aaa;
}


@media (max-width: 991px) {
    .sticky-wrapper { flex-direction: column; }
    .sticky-left { position: relative; top: 0; }
    .sticky-content h2 { font-size: 2.5rem; }
    .feature-strip { padding: 40px 0; }
}
  
.mechanical-tech {
    padding: 140px 8%;
   
    position: relative;
    overflow: hidden;
}

.tech-canvas-bg {
    position: absolute;
    width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 119, 255, 0.05) 0%, transparent 40%);
    top: 0; left: 0;
}

.mech-header { text-align: center; margin-bottom: 120px; }
.mech-label {  letter-spacing: 5px; font-weight: 800; font-size: 0.7rem; text-transform: uppercase; color:#2563eb !important; }
.mech-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; font-weight: 900; margin-top: 15px; }
.mech-header h2 span { color: transparent; -webkit-text-stroke: 1px #2563eb; }

.mech-engine-wrap {
    display: grid;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 40px;
    grid-template-columns: repeat(3, 3fr);
}

.mech-part {
    position: relative;
    flex: 1;
    z-index: 5;
}

.part-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -50px; left: -20px;
}

.part-body {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 40px;
    border-radius: 0 40px 0 40px; 
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.mech-part:hover .part-body {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.03);
    transform: translateY(-10px);
}

.part-icon { font-size: 3rem; color: #00d4ff; margin-bottom: 25px; }
.part-info h4 { color: #fff; font-size: 1.6rem; margin-bottom: 15px; font-weight: 800; }
.part-info p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }


.magnetic-arm {
    position: absolute;
    top: 50%; right: -40px;
    width: 40px; height: 1px;
    background: rgba(0, 212, 255, 0.3);
    z-index: 1;
}

.shift-up { transform: translateY(-50px); }


@media (max-width: 991px) {
    .mech-engine-wrap { flex-direction: column; }
    .shift-up { transform: translateY(0); }
    .magnetic-arm { display: none; }
}
.premium-faq {
    padding: 100px 5%;
    color: #fff;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.faq-info {
    position: sticky;
    top: 100px;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.faq-title span {
    color: transparent;
    -webkit-text-stroke: 1px #2563eb;
}

.faq-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.faq-cta-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    max-width: 250px;
}

.contact-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.faq-head {
    padding: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq-index {
    color: #2563eb;
    font-weight: 900;
    font-size: 0.85rem;
    margin-right: 20px;
}

.faq-head h4 {
    flex: 1;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.plus-icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.plus-icon::before, .plus-icon::after {
    content: '';
    position: absolute;
    background: #00d4ff;
    transition: 0.3s;
}

.plus-icon::before {
    width: 100%;
    height: 2px;
    top: 8px;
    left: 0;
}

.plus-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 8px;
}

.faq-item.active {
    background: rgba(37, 99, 235, 0.08);
    border-bottom: 1px solid #2563eb;
}

.faq-item.active .plus-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px 0 65px;
    color: #94a3b8;
    line-height: 1.6;
}

.faq-item.active .faq-body {
    max-height: 1000px;
    padding-bottom: 25px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

@media (max-width: 992px) {
    .premium-faq {
        padding: 60px 5%;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-info {
        position: relative;
        top: 0;
        text-align: center;
    }
    .faq-cta-card {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }
    .contact-link {
        justify-content: center;
    }
    .faq-body {
        padding: 0 20px 0 20px;
        font-size: 0.95rem;
    }
    .faq-head h4 {
        font-size: 1rem;
    }
}
.cta-section {
    padding: 100px 8%;
    position: relative;
    z-index: 10;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(5, 10, 48, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px; 
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin: 20px 0;
    line-height: 1.1;
}

.cta-title span {
    color: transparent;
    -webkit-text-stroke: 1px #2563eb; 
}

.cta-content p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



.btn-outline, .btn {
    
    gap: 10px;
}


.cta-bg-icon {
    position: absolute;
    right: -50px;
    bottom: -50px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-15deg);
    z-index: -1;
}


@media (max-width: 768px) {
    .cta-card { padding: 50px 20px; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
.contact-premium {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title span {
    color: transparent;
    -webkit-text-stroke: 1px #2563eb;
}

.contact-subtitle {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
    transform: translateX(10px);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.info-text span {
    display: block;
    font-size: 0.75rem;
    color: #2563eb;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-text p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    color: #fff;
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.02);
    padding: clamp(20px, 5vw, 40px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-box {
    margin-bottom: 20px;
}

.input-box input, 
.input-box textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 18px;
    border-radius: 12px;
    color: white;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.input-box input:focus, 
.input-box textarea:focus {
    border-color: #2563eb;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

@media (max-width: 991px) {
    .contact-premium {
        padding: 60px 5%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-subtitle {
        margin-bottom: 30px;
    }
    .section-title {
         margin-bottom: 30px;
          margin-top: 30px;
    }
    .info-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .info-item {
        padding: 15px;
        gap: 15px;
    }
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .contact-form-wrap {
        padding: 25px 20px;
    }
}
.service-pulse {
    padding: 100px 0;
 
    color: #fff;
    border-top: 1px solid #111;
}

.pulse-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.display-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 25px;
}

.lead-text {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 400px;
}


.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {

    border: 1px solid #222;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #3b82f6;
    font-weight: 600;
}


.pulse-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {

    border: 1px solid #3b82f6;
    padding: 30px;
    border-radius: 2px;
    transition: 0.3s;
}

.stat-card:hover {
    border-color: #2563eb;
   
}

.stat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stat-top i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.trend {
    font-size: 0.7rem;
    font-family: monospace;
    color: #64748b;
    border: 1px solid #222;
    padding: 2px 8px;
}

.trend.green { color: #22c55e; border-color: rgba(34, 197, 94, 0.2); }

.stat-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .pulse-wrapper { grid-template-columns: 1fr; }
    .display-title { font-size: 3rem; }
    .pulse-stats-grid { grid-template-columns: 1fr; }
}

.site-footer {
    background-color: #030712; 
    padding: 80px 0 30px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}


.site-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-logo::after {
    content: '.';
    color: #2563eb; 
}

.footer-desc {
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
}


.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #2563eb;
    transform: translateX(5px);
}


.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}


.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
}

.footer-contact i {
    color: #2563eb;
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-contact a {
    color: #94a3b8 !important;
    transform: none !important; 
}

.footer-contact a:hover {
    color: #fff !important;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom .footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom .footer-links a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .power-title{
        font-size: 40px;
    }
    .site-footer {
        padding: 60px 0 30px;
    }
}
       
        @media (max-width: 768px) {
            .hero h1 , .flow-header h2 {
                font-size: 2.5em;
            }
            .hero-terminal{
                padding: 80px 0 !important;
            }
            .mech-engine-wrap {
   
    grid-template-columns: repeat(2, 2fr)
}
            .hero p {
                font-size: 1.1em;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 10px 0;
            }
        }
      
.stats-counter {
  
    padding: 60px 0 100px;
    position: relative;
    
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    background-image: linear-gradient(rgb(10 15 30 / 70%), rgb(10 15 30 / 76%)), linear-gradient(135deg, rgb(111 70 205 / 30%), rgb(0 222 255 / 30%));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.stat-card:hover {
    background: rgba(139, 92, 246, 0.05);
        border-color: #4b1cb8;
    transform: translateY(-8px);
}

.stat-icon-shape {
    min-width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 25px 5px 25px 25px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #8b5cf6; 
}

.stat-info .num-box {
    display: flex;
    align-items: center;
}

.stat-info h2 {
    font-size: 32px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.stat-info span {
    font-size: 24px;
    color: #8b5cf6;
    font-weight: 700;
    margin-left: 2px;
}

.stat-info p {
    color: #a0aec0;
    font-size: 14px;
    margin: 5px 0 0;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 25px; }
}






.stat-card:hover {
    transform: translateY(-8px);
        background-image: linear-gradient(rgb(20 31 64), rgb(20 33 74)), linear-gradient(135deg, #8b5cf6, #00d2ff);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}




