'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 0; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3.5rem; margin-bottom: 20px; animation: fadeInDown 1s ease; } .hero p { font-size: 1.2rem; margin-bottom: 30px; animation: fadeInUp 1s ease; } .cta-button { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: var(--transition); animation: fadeIn 1.5s ease; } .cta-button:hover { background-color: #ffc107; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); } /* About Section */ .about { padding: 80px 0; background-color: white; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--secondary); } .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary-dark); } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature { display: flex; align-items: flex-start; gap: 15px; } .feature-icon { background-color: var(--light); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; flex-shrink: 0; } .feature-text h4 { margin-bottom: 5px; color: var(--dark); } /* Products Section */ .products { padding: 80px 0; background-color: var(--light-gray); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 200px; background-color: var(--primary); display: flex; align-items: center; justify-content: center; color: white; font-size: 3rem; } .product-content { padding: 20px; } .product-content h3 { margin-bottom: 10px; color: var(--primary-dark); } .product-content p { color: var(--gray); margin-bottom: 15px; } /* Certificates Section */ .certificates { padding: 80px 0; background-color: white; } .certificates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 30px; justify-items: center; } .certificate { background-color: var(--light); border-radius: 10px; padding: 20px; width: 100%; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .certificate-icon { font-size: 3rem; color: var(--primary); margin-bottom: 15px; } .certificate h4 { color: var(--dark); } /* Contact Section */ .contact { padding: 80px 0; background-color: var(--light-gray); } .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { display: flex; flex-direction: column; gap: 25px; } .contact-item { display: flex; align-items: flex-start; gap: 15px; } .contact-icon { background-color: var(--primary); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .contact-form { background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; color: var(--dark); font-weight: 500; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; transition: var(--transition); } .form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.1); } .form-group textarea { min-height: 120px; resize: vertical; } .submit-btn { background-color: var(--primary); color: white; border: none; padding: 12px 30px; border-radius: 5px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition); width: 100%; } .submit-btn:hover { background-color: var(--primary-dark); } /* Footer */ footer { background-color: var(--dark); color: white; padding: 60px 0 20px; } .footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; } .footer-col h3 { color: var(--secondary); margin-bottom: 20px; font-size: 1.3rem; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #ddd; text-decoration: none; transition: var(--transition); } .footer-col ul li a:hover { color: var(--secondary); padding-left: 5px; } .footer-col p { color: #bbb; line-height: 1.8; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #444; color: #999; font-size: 0.9rem; } /* Animations */ @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* Responsive Design */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-container { grid-template-columns: 1fr; } .footer-container { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { nav ul { display: none; } .menu-toggle { display: block; font-size: 1.5rem; cursor: pointer; } .hero h2 { font-size: 2.5rem; } .about-features { grid-template-columns: 1fr; } .footer-container { grid-template-columns: 1fr; } }
Lulu Machinery specializes in designing and manufacturing high-quality automated packaging equipment for food, beverage, pharmaceutical, and chemical industries.
Request a QuoteFounded in 2005, Lulu Machinery has grown to become a leading manufacturer of packaging equipment in China. With over 18 years of industry experience, we have developed a reputation for reliability, innovation, and exceptional customer service.
Our state-of-the-art manufacturing facility in Fujian, China, covers more than 15,000 square meters and utilizes advanced production technologies. We maintain strict quality control throughout the manufacturing process to ensure every machine meets international standards.
Our team of 150+ experienced engineers and technicians is dedicated to continuous innovation, developing solutions that increase efficiency, reduce waste, and maximize productivity for our clients worldwide.
Machines exported to 45+ countries across 6 continents
150+ engineers and technical specialists
ISO 9001 certified manufacturing processes
Tailored packaging systems for unique requirements
Automatic filling systems for beverages, oils, chemicals, and pharmaceuticals with precision volume control.
High-speed packaging solutions for food powders, detergents, pharmaceuticals, and granular products.
Automatic labeling systems for bottles, containers, boxes and various packaging formats.
Capping, sealing and closing equipment including induction sealers, cappers and lidding machines.
Vertical and horizontal form-fill-seal machines for stand-up pouches and flexible packaging.
Integrated systems combining filling, capping, labeling, inspection and packaging operations.
Have questions about our packaging solutions? Our team is ready to assist you.
Industrial Park, Quanzhou, Fujian, China
+86 123 4567 8910