:root {
            --primary: #0b68e0;
            --accent: #ff6b00;
            --dark: #0f1224;
            --dark-2: #171a33;
            --light: #f8f9fc;
            --text: #2c2f39;
            --muted: #7a8296;
            --white: #ffffff;
            --border: #e7ebf3;
            --shadow-sm: 0 4px 12px rgba(15, 18, 36, 0.08);
            --shadow-md: 0 8px 24px rgba(15, 18, 36, 0.12);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
     
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white);
            box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--dark);
            cursor: pointer;
        }

        /* Machine Navigation */
        .machine-nav {
            position: sticky;
            top: 80px;
            background: var(--white);
            box-shadow: var(--shadow-sm);
            z-index: 49;
            padding: 15px 0;
            margin-bottom: 40px;
        }

        .machine-nav-container {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .machine-nav a {
            text-decoration: none;
            color: var(--muted);
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 30px;
            transition: var(--transition);
        }

        .machine-nav a:hover, .machine-nav a.active {
            background: var(--primary);
            color: var(--white);
        }

        /* Machine Detail Styles */
        .machine-detail {
            padding: 180px 0 60px;
        }
        
        .machine-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .machine-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .machine-header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .machine-header p {
            color: var(--muted);
            font-size: 1.1rem;
            margin-top: 30px;
        }
        
        .machine-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .machine-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 500px;
        }
        
        .machine-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .machine-image:hover img {
            transform: scale(1.03);
        }
        
        .machine-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .machine-info h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary);
        }
        
        .machine-info p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .machine-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(11, 104, 224, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            font-size: 22px;
            color: var(--primary);
        }
        
        .feature-content h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        
        /* Technical Specifications */
        .specs-section {
            background: var(--white);
            border-radius: 16px;
            padding: 50px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 80px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .specs-card {
            background: rgba(11, 104, 224, 0.03);
            border-radius: 12px;
            padding: 30px;
            transition: var(--transition);
        }
        
        .specs-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
        }
        
        .specs-card h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .specs-card h3 i {
            color: var(--accent);
        }
        
        .specs-list {
            list-style: none;
        }
        
        .specs-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dashed var(--border);
        }
        
        .specs-list li:last-child {
            border-bottom: none;
        }
        
        .spec-name {
            font-weight: 500;
        }
        
        .spec-value {
            font-weight: 600;
            color: var(--dark);
        }
        
        /* Applications Section */
        .applications-section {
            margin-bottom: 80px;
        }
        
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .app-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        .app-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }
        
        .app-image {
            height: 200px;
            overflow: hidden;
        }
        
        .app-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .app-card:hover .app-image img {
            transform: scale(1.1);
        }
        
        .app-content {
            padding: 25px;
        }
        
        .app-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* Custom Solutions */
        .custom-solutions {
            background: linear-gradient(135deg, var(--dark-2), var(--dark));
            color: var(--white);
            padding: 80px 0;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            margin-bottom: 80px;
        }
        
        .custom-solutions::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
            filter: blur(40px);
        }
        
        .custom-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            position: relative;
            z-index: 2;
        }
        
        .custom-header h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .custom-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }
        
        .custom-process {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 30px;
            width: 100%;
            max-width: 250px;
            text-align: center;
            transition: var(--transition);
        }
        
        .process-step:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-10px);
            border-color: var(--accent);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
        }
        
        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--white);
        }
        
        /* CTA Section */
        .machine-cta {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .machine-cta h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .machine-cta p {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .btn-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
        }
        
        .btn-primary {
            background: var(--accent);
            color: var(--white);
            box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: rgba(11, 104, 224, 0.05);
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .machine-overview {
                grid-template-columns: 1fr;
            }
            
            .machine-image {
                height: 400px;
            }
            
            .feature-item {
                gap: 12px;
            }
            
            .machine-nav {
                top: 70px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
         
            
           
            .machine-header h1 {
                font-size: 2.2rem;
            }
            
            .specs-section {
                padding: 30px 20px;
            }
            
            .machine-features {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .machine-nav-container {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 480px) {
            .machine-header h1 {
                font-size: 1.8rem;
            }
            
            .machine-image {
                height: 300px;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .logo-text {
                font-size: 18px;
            }
        }