'); background-size: cover; background-position: center; color: white; padding: 180px 0 100px; text-align: center; } .hero h1 { color: white; font-size: 3.5rem; margin-bottom: 20px; } .hero p { font-size: 1.4rem; max-width: 700px; margin: 0 auto 40px; opacity: 0.9; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } /* About Section */ .about { background-color: var(--light); } .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-image { flex: 1; background: linear-gradient(45deg, var(--primary), var(--secondary)); height: 450px; border-radius: 10px; display: flex; justify-content: center; align-items: center; color: white; font-size: 1.2rem; font-weight: 600; text-align: center; padding: 20px; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; } .service-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .service-icon { height: 200px; background: linear-gradient(45deg, var(--primary), var(--secondary)); display: flex; justify-content: center; align-items: center; font-size: 3rem; color: white; } .service-content { padding: 25px; } .service-content h3 { font-size: 1.5rem; margin-bottom: 15px; } /* Process Section */ .process { background: linear-gradient(to bottom, #f0f7ff, #ffffff); } .process-steps { display: flex; justify-content: space-between; margin-top: 50px; flex-wrap: wrap; } .step { width: 23%; text-align: center; padding: 30px 20px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .step:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .step-number { width: 50px; height: 50px; background: var(--primary); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 1.2rem; margin: 0 auto 20px; } /* Certifications */ .certifications { background-color: var(--light); } .certs-container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; margin-top: 40px; } .cert-item { background: white; padding: 25px; border-radius: 10px; text-align: center; width: 180px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .cert-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; } /* Testimonials */ .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 50px; } .testimonial { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .testimonial:before { content: '"'; position: absolute; top: 20px; left: 20px; font-size: 5rem; color: rgba(26, 95, 180, 0.1); font-family: Georgia, serif; line-height: 1; } .testimonial-content { margin-top: 30px; position: relative; z-index: 1; } .client-info { display: flex; align-items: center; margin-top: 20px; } .client-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--secondary); margin-right: 15px; display: flex; justify-content: center; align-items: center; color: white; font-weight: bold; } /* Contact Section */ .contact { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; } .contact h2 { color: white; } .contact h2:after { background: var(--accent); } .contact-container { display: flex; gap: 50px; } .contact-info { flex: 1; } .contact-form { flex: 1; background: white; padding: 40px; border-radius: 10px; } .contact-form h3 { color: var(--dark); margin-bottom: 30px; } .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: 4px; font-size: 1rem; } .form-group textarea { height: 150px; } .contact-details { margin-top: 30px; } .contact-item { display: flex; align-items: center; margin-bottom: 20px; } .contact-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 15px; font-size: 1.2rem; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; } .footer-col h3 { color: white; font-size: 1.4rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--accent); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 12px; } .footer-col ul li a { color: #aaa; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: white; } .copyright { text-align: center; padding-top: 30px; margin-top: 40px; border-top: 1px solid #444; color: #aaa; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content, .contact-container { flex-direction: column; } .step { width: 48%; margin-bottom: 20px; } h1 { font-size: 2.8rem; } h2 { font-size: 2.2rem; } } @media (max-width: 768px) { .hero-btns { flex-direction: column; align-items: center; } .step { width: 100%; } nav ul { display: none; } .mobile-menu-btn { display: block; } h1 { font-size: 2.3rem; } h2 { font-size: 1.8rem; } }
Custom-designed packaging for cosmetics, gifts and food with 20+ years of manufacturing excellence
Founded in 2003, MadeShine has grown into a leading packaging manufacturer specializing in custom solutions for global brands. With our state-of-the-art 20,000m² factory equipped with advanced machinery, we deliver premium packaging that elevates brands and delights customers.
Our expertise spans multiple packaging categories including luxury cosmetic containers, elegant gift boxes, and functional food packaging. We combine innovative design with sustainable materials to create packaging solutions that stand out in competitive markets.
At MadeShine, we pride ourselves on our commitment to quality, sustainability, and customer satisfaction. Our team of 150+ packaging experts and designers work closely with clients to transform concepts into market-ready products.
Learn More About UsPremium bottles, jars, compacts, and tubes for skincare, makeup, and fragrance products. Custom shapes, finishes, and materials including glass, acrylic, and sustainable alternatives.
Elegant boxes, bags, and presentation solutions for jewelry, luxury goods, and special occasions. Custom printing, foiling, embossing, and special finishes.
Functional and attractive packaging solutions for gourmet foods, confectionery, tea, coffee, and health products. Food-safe materials with barrier properties.
We discuss your requirements, budget, and timeline to create a customized solution.
Our designers create 3D mockups and physical prototypes for your approval.
We source premium materials based on your specifications and sustainability needs.
Our advanced manufacturing facility produces your packaging with precision.
Every piece undergoes rigorous inspection to ensure perfection.
Efficient global logistics ensure your packaging arrives on time.
Quality Management
Sustainable Materials
Social Compliance
Food Safety
"MadeShine transformed our skincare line with their innovative cosmetic packaging. Their attention to detail and commitment to sustainability aligned perfectly with our brand values."
CEO, Skincare Essentials
"The custom gift boxes they created for our luxury chocolates exceeded expectations. The quality, design, and timely delivery helped us stand out during the holiday season."
Owner, Chocolatier Deluxe
"We've partnered with MadeShine for three years across multiple product lines. Their expertise in sustainable packaging solutions has been invaluable to our brand evolution."
Product Director, Green Beauty Co.
Ready to discuss your packaging project? Our team is here to help you create the perfect packaging solution for your products.
123 Packaging Avenue, Shenzhen, China 518000
+86 755 1234 5678
Monday-Friday: 8:30 AM - 6:00 PM (GMT+8)