Build Green, Live Better

Find IGBC certified building materials that meet your project requirements, compare prices, and order directly from suppliers.

Browse by IGBC Criteria

Explore materials categorized according to different IGBC Green Building rating systems to find the perfect match for your project requirements.

Sustainable Sites

Materials for site development, hardscaping, and landscaping that reduce environmental impact.

Browse Materials

Water Efficiency

Water-saving fixtures, rainwater harvesting systems, and water treatment solutions.

Browse Materials

Energy Efficiency

Energy-efficient building materials, insulation, HVAC systems, and renewable energy solutions.

Browse Materials

Materials & Resources

Sustainable construction materials, recycled content products, and locally sourced materials.

Browse Materials

Indoor Air Quality

Low-VOC paints, adhesives, sealants, and materials that improve indoor environmental quality.

Browse Materials

Daylight & Views

Glazing systems, skylights, light shelves, and other daylighting solutions.

Browse Materials

Innovation in Design

Cutting-edge materials and technologies that push the boundaries of sustainable building.

Browse Materials

Regional Priority

Materials that address geographically specific environmental priorities for building sustainability.

Browse Materials

Filter Materials

IGBC Rating System

Material Type

Price Range

₹0 ₹10,000

Certification

Availability

In Stock Only

Featured Materials

Sort by:
Bamboo Flooring
IGBC Certified Flooring

Premium Bamboo Flooring

Sustainable bamboo flooring with natural finish, perfect for eco-friendly interiors.

₹2,450 /sq.m
(42)
Recycled Glass Countertop
IGBC Certified Countertops

Recycled Glass Countertop

Elegant countertop made from 80% recycled glass with a durable finish.

₹4,850 /sq.m
(28)
Solar Reflective Roof Tiles
IGBC Certified Roofing

Solar Reflective Roof Tiles

High SRI terracotta tiles that reduce heat island effect and cooling costs.

₹1,850 /sq.m
(56)
Low VOC Interior Paint
IGBC Certified Paints

Low VOC Interior Paint

Zero-VOC, non-toxic paint that improves indoor air quality and health.

₹550 /liter
(89)
Double Glazed Windows
IGBC Certified Windows

Double Glazed Windows

Energy-efficient windows with low-E coating and thermal break frames.

₹8,750 /unit
(34)
Recycled Composite Decking
IGBC Certified Decking

Recycled Composite Decking

Durable outdoor decking made from 95% recycled materials with natural wood look.

₹3,250 /sq.m
(47)

IGBC Points Calculator

Estimate how many IGBC points your project can achieve with our materials. Select your rating system and criteria to get started.

Estimated IGBC Points

Current Selection

42 Points

IGBC Gold Rating

Potential Points

53 Points

IGBC Platinum Rating

Knowledge Center

Enhance your understanding of green building materials and IGBC certification with our educational resources.

Understanding IGBC Criteria
Guide

Understanding IGBC Criteria for Material Selection

A comprehensive guide to interpreting IGBC criteria and selecting appropriate materials for your green building project.

Read Article
Cost-Benefit Analysis
Tutorial

Cost-Benefit Analysis of Green Building Materials

Learn how to evaluate the long-term economic benefits of investing in sustainable building materials for your projects.

Read Article
Video Tutorials
Video

Video Tutorials: Identifying Quality Green Materials

Watch our expert-led video series on how to identify and verify the quality and sustainability of building materials.

Watch Videos

What Our Customers Say

Read testimonials from architects, builders, and developers who have used our platform to source materials for their green building projects.

"GreenBuild helped us source all the materials needed for our IGBC Gold-rated office building. The price comparison tool saved us nearly 15% on our material costs while ensuring we met all certification requirements."

Rajesh Mehta

Project Director, Eco Structures Ltd

"As an architect focused on sustainable design, I've found this platform invaluable. The knowledge resources and product specifications helped me make informed decisions for my clients' projects."

Priya Sharma

Principal Architect, Green Spaces

"The IGBC points calculator was a game-changer for our residential project. We were able to achieve Platinum rating by optimizing our material selections based on the platform's recommendations."

Vikram Patel

CEO, Sustainable Homes India

Ready to start your green building project?

Create an account to access our full range of IGBC-compliant materials, price comparison tools, and project management features.

Water Efficiency Materials

Water-saving fixtures and systems for sustainable building projects

`; } // Function to get Materials page HTML function getMaterialsPageHTML() { return ` Materials Catalog - GreenBuild

Complete Materials Catalog

Browse our comprehensive collection of IGBC certified building materials

`; } // Function to get Knowledge Center page HTML function getKnowledgeCenterPageHTML() { return ` Knowledge Center - GreenBuild

Knowledge Center

Learn about green building materials, IGBC certification, and sustainable construction practices

`; } // Function to get Energy Efficiency page HTML function getEnergyEfficiencyPageHTML() { return ` Energy Efficiency Materials - GreenBuild

Energy Efficiency Materials

Discover IGBC-certified materials that reduce energy consumption and improve building performance

240+
Products Available
15-30%
Energy Savings
85+
Certified Suppliers
12
IGBC Points Available

Filter by Category

Material Type

Energy Efficiency Products

240 products found
Sort by:
Thermal Insulation Panels
IGBC Certified 5 Star

Thermal Insulation Panels

High-performance polyurethane insulation with R-value of 8.0 per inch

₹3,450 /sq.m
30% Energy Savings
vs Standard Insulation
`; } // Pagination Configuration const paginationConfig = { totalItems: 24, // Total number of items itemsPerPage: 6, // Items to show per page currentPage: 1, totalPages: Math.ceil(24 / 6) }; // Initialize Pagination function initPagination() { const pageNumbers = document.getElementById('pageNumbers'); const prevButton = document.getElementById('prevPage'); const nextButton = document.getElementById('nextPage'); // Clear existing page numbers pageNumbers.innerHTML = ''; // Generate page numbers for(let i = 1; i <= paginationConfig.totalPages; i++) { const pageButton = document.createElement('button'); pageButton.className = `w-10 h-10 flex items-center justify-center rounded-full mr-2 ${ i === paginationConfig.currentPage ? 'bg-primary text-white' : 'border border-gray-300 text-gray-700 hover:bg-gray-100' }`; pageButton.textContent = i; pageButton.addEventListener('click', () => changePage(i)); pageNumbers.appendChild(pageButton); } // Update button states prevButton.disabled = paginationConfig.currentPage === 1; nextButton.disabled = paginationConfig.currentPage === paginationConfig.totalPages; // Add event listeners to prev/next buttons prevButton.onclick = () => changePage(paginationConfig.currentPage - 1); nextButton.onclick = () => changePage(paginationConfig.currentPage + 1); } // Change Page Function function changePage(pageNumber) { if(pageNumber < 1 || pageNumber > paginationConfig.totalPages) return; paginationConfig.currentPage = pageNumber; // Show loading state const toast = document.createElement('div'); toast.className = 'fixed top-4 right-4 bg-gray-800 text-white px-6 py-3 rounded-lg shadow-lg z-50 animate-fade-in-out'; toast.textContent = `Loading page ${pageNumber}...`; document.body.appendChild(toast); // Simulate page change delay setTimeout(() => { toast.remove(); initPagination(); // Scroll to top of product section document.querySelector('.material-card').scrollIntoView({ behavior: 'smooth' }); }, 500); } // Initialize pagination on load initPagination(); // Handle navigation clicks document.addEventListener('click', function(e) { const link = e.target.closest('a'); if (!link) return; const href = link.getAttribute('href'); const linkText = link.textContent.trim(); // Handle specific page navigation if (linkText === 'Materials' || href === '#materials') { e.preventDefault(); loadMaterialsPage(); return; } if (linkText === 'Knowledge Center' || href === '#knowledge-center') { e.preventDefault(); loadKnowledgeCenterPage(); return; } if (linkText === 'Water Efficiency' || href === '#water-efficiency') { e.preventDefault(); loadWaterEfficiencyPage(); return; } // Handle category card clicks const categoryCard = link.closest('.category-card'); if (categoryCard) { e.preventDefault(); const categoryTitle = categoryCard.querySelector('h3').textContent; if (categoryTitle === 'Energy Efficiency') { loadEnergyEfficiencyPage(); return; } if (categoryTitle === 'Water Efficiency') { loadWaterEfficiencyPage(); return; } if (categoryTitle === 'Materials & Resources') { loadMaterialsPage(); return; } } // Default behavior for other links if (href && href !== '#') { e.preventDefault(); const toast = document.createElement('div'); toast.className = 'fixed top-4 right-4 bg-gray-800 text-white px-6 py-3 rounded-lg shadow-lg z-50 animate-fade-in-out'; toast.textContent = `Opening ${linkText} page...`; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }); // Initialize Charts const pointsChart = document.getElementById('pointsChart'); if (pointsChart) { const chart = echarts.init(pointsChart); const option = { animation: false, tooltip: { trigger: 'axis', backgroundColor: 'rgba(255, 255, 255, 0.8)', textStyle: { color: '#1f2937' } }, grid: { top: 10, right: 0, bottom: 0, left: 0, containLabel: true }, xAxis: { type: 'category', data: ['Site', 'Water', 'Energy', 'Materials', 'Indoor', 'Innovation'], axisLine: { lineStyle: { color: '#d1d5db' } }, axisLabel: { color: '#1f2937' } }, yAxis: { type: 'value', max: 20, axisLine: { show: false }, axisLabel: { color: '#1f2937' }, splitLine: { lineStyle: { color: '#e5e7eb' } } }, series: [ { name: 'Current Points', type: 'bar', data: [8, 7, 12, 6, 5, 4], itemStyle: { color: 'rgba(87, 181, 231, 1)', borderRadius: 6 } }, { name: 'Potential Points', type: 'bar', data: [10, 9, 15, 8, 6, 5], itemStyle: { color: 'rgba(141, 211, 199, 1)', borderRadius: 6 } } ] }; chart.setOption(option); window.addEventListener('resize', function() { chart.resize(); }); } });