'); background-size: cover; background-position: center; color: white; height: 100vh; display: flex; align-items: center; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; padding-top: 80px; } .hero h1 { color: white; font-size: 3.5rem; margin-bottom: 20px; } .hero p { font-size: 1.3rem; margin-bottom: 35px; color: var(--secondary); } /* 关于我们部分 */ .about { background: white; } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-image { background: var(--secondary); height: 450px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--dark); font-weight: 700; font-size: 1.2rem; } .about-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; } .detail-box { background: var(--light); padding: 20px; border-radius: 8px; border-left: 4px solid var(--accent); } /* 产品部分 */ .products { background: var(--light); } .products-header { text-align: center; max-width: 800px; margin: 0 auto 50px; } .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); } .product-image { height: 250px; background: var(--secondary); display: flex; align-items: center; justify-content: center; color: var(--dark); font-weight: 700; } .product-info { padding: 20px; } .product-info h3 { font-size: 1.4rem; margin-bottom: 10px; } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; } .price { font-weight: 700; color: var(--primary); font-size: 1.2rem; } .moq { color: var(--dark); font-weight: 600; } .badge { display: inline-block; background: var(--accent); color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; } /* 生产能力部分 */ .capabilities { background: white; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; } .stat-box { padding: 30px 20px; background: var(--light); border-radius: 8px; } .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; } .quality-process { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 50px; align-items: center; } .process-steps { display: flex; flex-direction: column; gap: 20px; } .step { display: flex; gap: 15px; } .step-number { background: var(--primary); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; } /* 客户评价部分 */ .testimonials { background: linear-gradient(to bottom right, var(--dark), #2c241b); color: white; } .testimonials h2 { color: white; } .testimonials h2:after { background: var(--accent); } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .testimonial-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); } .testimonial-text { font-style: italic; margin-bottom: 20px; position: relative; } .testimonial-text:before { content: '"'; font-size: 4rem; position: absolute; top: -20px; left: -15px; opacity: 0.1; } .client-info { display: flex; align-items: center; } .client-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--accent); margin-right: 15px; display: flex; align-items: center; justify-content: center; font-weight: 700; } /* 政策部分 */ .policies { background: var(--light); } .policy-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .policy-box { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .policy-box h3 { margin-bottom: 20px; color: var(--primary); } .policy-list { list-style-type: none; } .policy-list li { margin-bottom: 12px; padding-left: 25px; position: relative; } .policy-list li:before { content: '•'; position: absolute; left: 0; color: var(--accent); font-size: 1.5rem; top: -5px; } /* 页脚样式 */ footer { background: var(--dark); color: white; padding: 70px 0 0; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; } .footer-column h3 { color: var(--secondary); font-size: 1.4rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-column h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #bbb; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--secondary); } .contact-info { display: flex; flex-direction: column; gap: 15px; } .contact-item { display: flex; gap: 12px; align-items: flex-start; } .contact-icon { color: var(--accent); font-size: 1.2rem; margin-top: 2px; } .copyright { text-align: center; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.1); color: #999; font-size: 0.9rem; } /* 响应式设计 */ @media (max-width: 992px) { .about-content, .quality-process, .policy-content { grid-template-columns: 1fr; } .about-image { height: 350px; } .hero h1 { font-size: 2.8rem; } } @media (max-width: 768px) { .nav-links { display: none; } .about-details { grid-template-columns: 1fr; } h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } section { padding: 50px 0; } .hero { height: 80vh; } }
Premium 100% Raw Indian Temple Hair Extensions & Wigs. Unprocessed. Cuticle Aligned. Single Donor. Ethically Sourced.
Explore Our CollectionADITYA GLOBAL INDUSTRIES (AGI) is India's premier manufacturer and wholesale supplier of authentic Indian Temple Hair. Founded in 2022, we've quickly become recognized for our unmatched quality and ethical sourcing practices.
As the recipient of "India's Best Human Hair Extension Manufacturer" award, we're committed to providing 100% raw, unprocessed hair with cuticles perfectly aligned in one direction. Our hair is ethically sourced from South India's most revered temples including Tirupathi, Madurai Meenakshi Amman Temple, and Tirutani.
Alibaba A&V Certified Supplier with 99.4% Response Rate
Serving clients across 5 continents with fast international shipping
Our 100% Raw Indian Temple Hair is ethically sourced and meticulously processed to maintain its natural integrity. Each product is single donor with cuticles aligned in one direction.
100% Virgin Raw Hair with double weft technique, cuticle aligned, single donor, natural colors.
Can be bleached to 613 Blonde, naturally curly texture with excellent volume retention.
Unprocessed natural hair wigs with various cap constructions for comfortable all-day wear.
Single donor, natural color, remy hair with undetectable HD lace for seamless integration.
With 8 years of hair manufacturing expertise, our state-of-the-art facility ensures consistent quality and timely delivery.
Every strand undergoes our rigorous 5-stage quality assurance process:
Direct partnerships with South India's most reputable temples
No harsh chemicals or high-temperature treatments
Precision alignment ensuring tangle-free performance
Medical-grade cleaning for health safety
Each piece examined by quality control specialists
Hear from our satisfied customers worldwide who trust our premium temple hair products.
USA - October 18, 2020
USA - Recent
March 19, 2020