Ikon Metals | Sustainable LD Slag Aggregates
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root {
--primary-color: #2a6e3f;
--secondary-color: #4c956c;
--accent-color: #ff9b42;
--dark-color: #2d3a3a;
--light-color: #f8f9fa;
--gray-color: #6c757d;
}
body {
line-height: 1.6;
color: #333;
background-color: white;
overflow-x: hidden;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header Styles */
header {
background-color: white;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
padding: 15px 0;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}
.logo-icon {
color: var(--primary-color);
font-size: 2.8rem;
}
.logo-text {
font-size: 2rem;
font-weight: 800;
color: var(--dark-color);
line-height: 1;
}
.logo-text span {
color: var(--primary-color);
display: block;
font-size: 1.4rem;
font-weight: 600;
margin-top: 3px;
}
.nav-links {
display: flex;
list-style: none;
gap: 35px;
align-items: center;
}
.nav-links a {
text-decoration: none;
color: var(--dark-color);
font-weight: 600;
font-size: 1.1rem;
transition: color 0.3s;
position: relative;
padding: 5px 0;
}
.nav-links a:hover {
color: var(--primary-color);
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--primary-color);
transition: width 0.3s;
}
.nav-links a:hover::after {
width: 100%;
}
.contact-btn {
background-color: var(--primary-color);
color: white;
padding: 12px 28px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s;
border: 2px solid var(--primary-color);
}
.contact-btn:hover {
background-color: transparent;
color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(42, 110, 63, 0.2);
}
.mobile-menu-btn {
display: none;
font-size: 1.8rem;
cursor: pointer;
color: var(--dark-color);
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
background-size: cover;
background-position: center;
background-attachment: fixed;
color: white;
text-align: center;
padding: 150px 20px;
position: relative;
overflow: hidden;
}
.hero-content {
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 3.8rem;
margin-bottom: 25px;
line-height: 1.2;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero h1 .highlight {
color: var(--accent-color);
font-weight: 800;
}
.hero p {
font-size: 1.4rem;
margin-bottom: 35px;
opacity: 0.9;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 25px;
margin-top: 40px;
flex-wrap: wrap;
}
.btn {
padding: 18px 35px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-width: 200px;
}
.btn-primary {
background-color: var(--accent-color);
color: white;
border: 2px solid var(--accent-color);
}
.btn-primary:hover {
background-color: #e88a2e;
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
background-color: transparent;
color: white;
border: 2px solid white;
}
.btn-secondary:hover {
background-color: white;
color: var(--dark-color);
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* Stats Section */
.stats-section {
padding: 80px 0;
background-color: white;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
text-align: center;
}
.stat-card {
padding: 40px 20px;
border-radius: 10px;
background-color: var(--light-color);
transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.stat-icon {
font-size: 3.5rem;
color: var(--primary-color);
margin-bottom: 20px;
}
.stat-value {
font-size: 3rem;
font-weight: 700;
color: var(--dark-color);
margin-bottom: 10px;
}
.stat-label {
font-size: 1.2rem;
color: var(--gray-color);
font-weight: 600;
}
/* About Section */
.about-section {
padding: 100px 0;
background-color: #f0f7f2;
}
.section-title {
text-align: center;
margin-bottom: 60px;
}
.section-title h2 {
font-size: 2.8rem;
color: var(--dark-color);
margin-bottom: 20px;
position: relative;
display: inline-block;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background-color: var(--primary-color);
}
.section-title p {
color: var(--gray-color);
max-width: 700px;
margin: 0 auto;
font-size: 1.2rem;
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.about-text h3 {
font-size: 2.2rem;
color: var(--dark-color);
margin-bottom: 25px;
}
.about-text p {
margin-bottom: 25px;
color: var(--gray-color);
font-size: 1.1rem;
line-height: 1.8;
}
.features-list {
margin-top: 30px;
}
.feature-item {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
}
.feature-icon {
color: var(--primary-color);
font-size: 1.5rem;
margin-right: 15px;
margin-top: 5px;
}
.about-image {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
height: 500px;
background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
background-size: cover;
background-position: center;
position: relative;
}
/* Benefits Section */
.benefits-section {
padding: 100px 0;
background-color: white;
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-top: 50px;
}
.benefit-card {
background-color: white;
border-radius: 15px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
border-top: 5px solid var(--primary-color);
transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
transform: translateY(-15px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.benefit-icon {
width: 80px;
height: 80px;
border-radius: 50%;
background-color: rgba(42, 110, 63, 0.1);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
color: var(--primary-color);
font-size: 2.5rem;
}
.benefit-card h3 {
font-size: 1.6rem;
margin-bottom: 20px;
color: var(--dark-color);
}
.benefit-card p {
color: var(--gray-color);
line-height: 1.7;
}
/* Applications Section */
.applications-section {
padding: 100px 0;
background-color: #f0f7f2;
}
.applications-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 50px;
}
.application-card {
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
transition: transform 0.3s;
}
.application-card:hover {
transform: translateY(-10px);
}
.app-image {
height: 200px;
background-size: cover;
background-position: center;
}
.app-content {
padding: 25px;
}
.app-content h3 {
font-size: 1.4rem;
margin-bottom: 15px;
color: var(--dark-color);
}
.app-content p {
color: var(--gray-color);
font-size: 0.95rem;
}
/* CTA Section */
.cta-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
text-align: center;
padding: 100px 20px;
position: relative;
overflow: hidden;
}
.cta-section h2 {
font-size: 3rem;
margin-bottom: 25px;
}
.cta-section p {
font-size: 1.3rem;
max-width: 800px;
margin: 0 auto 40px;
opacity: 0.9;
}
.cta-btn {
background-color: white;
color: var(--primary-color);
padding: 20px 45px;
border-radius: 5px;
text-decoration: none;
font-weight: 700;
font-size: 1.2rem;
display: inline-flex;
align-items: center;
gap: 12px;
transition: all 0.3s;
border: 2px solid white;
}
.cta-btn:hover {
background-color: transparent;
color: white;
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* Contact Info Section */
.contact-info-section {
padding: 80px 0;
background-color: white;
}
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}
.contact-item {
display: flex;
align-items: flex-start;
padding: 30px;
background-color: var(--light-color);
border-radius: 10px;
transition: transform 0.3s;
}
.contact-item:hover {
transform: translateY(-5px);
}
.contact-icon-box {
background-color: var(--primary-color);
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
color: white;
font-size: 1.5rem;
flex-shrink: 0;
}
.contact-details h3 {
font-size: 1.4rem;
margin-bottom: 10px;
color: var(--dark-color);
}
.contact-details p, .contact-details a {
color: var(--gray-color);
text-decoration: none;
line-height: 1.6;
}
.contact-details a:hover {
color: var(--primary-color);
text-decoration: underline;
}
/* Footer */
footer {
background-color: var(--dark-color);
color: white;
padding: 80px 0 30px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 50px;
}
.footer-column h3 {
font-size: 1.4rem;
margin-bottom: 25px;
position: relative;
padding-bottom: 10px;
}
.footer-column h3::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 3px;
background-color: var(--accent-color);
}
.footer-column p {
margin-bottom: 20px;
opacity: 0.8;
line-height: 1.7;
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 12px;
}
.footer-column a {
color: #ddd;
text-decoration: none;
transition: color 0.3s;
opacity: 0.8;
}
.footer-column a:hover {
color: var(--accent-color);
opacity: 1;
}
.social-links {
display: flex;
gap: 15px;
margin-top: 25px;
}
.social-links a {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
transition: all 0.3s;
}
.social-links a:hover {
background-color: var(--accent-color);
transform: translateY(-5px);
}
.copyright {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #aaa;
font-size: 0.95rem;
}
/* Responsive Styles */
@media (max-width: 992px) {
.hero h1 {
font-size: 3rem;
}
.about-content {
grid-template-columns: 1fr;
gap: 40px;
}
.about-image {
height: 400px;
}
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.mobile-menu-btn {
display: block;
}
.hero {
padding: 120px 20px;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.2rem;
}
.btn {
padding: 16px 25px;
min-width: 180px;
}
.section-title h2 {
font-size: 2.2rem;
}
.cta-section h2 {
font-size: 2.2rem;
}
.cta-section p {
font-size: 1.1rem;
}
}
@media (max-width: 576px) {
.hero h1 {
font-size: 2rem;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.btn {
width: 100%;
max-width: 300px;
}
.stats-grid {
grid-template-columns: 1fr;
}
.benefits-grid {
grid-template-columns: 1fr;
}
.applications-grid {
grid-template-columns: 1fr;
}
.contact-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
}
}
Sustainable LD Slag Aggregates for Modern Construction
Eco-friendly, cost-effective alternative to traditional stone aggregates. Superior performance with 40-60% cost savings and 75% reduced carbon footprint.
75%
Reduced Carbon Footprint
What Are LD Slag Aggregates?
Transforming steel industry byproducts into sustainable construction solutions
Eco-Friendly Construction Material
LD Slag (Linz-Donawitz slag) is a byproduct of steel manufacturing, now repurposed as high-performance aggregates for construction. This innovative approach reduces landfill waste and preserves natural resources.
Our specialized processing transforms LD slag into superior aggregates that match or exceed traditional stone aggregates in strength, durability, and performance.
Superior Quality
Meets all IS standards for construction aggregates
Cost Effective
Significantly lower cost than natural aggregates
Sustainable
100% recycled material with minimal environmental impact
Key Benefits
Why choose LD slag aggregates over traditional materials
Eco-Friendly
Reduces quarrying of natural resources and minimizes landfill waste. Contributes to green building certifications.
Cost Effective
40-60% savings compared to natural aggregates without compromising on quality or performance.
High Performance
Superior strength, durability, and load-bearing capacity. Excellent for concrete and road construction.
Consistent Supply
Steady availability from steel plants ensures timely delivery for all your construction needs.
Lightweight
Lower density reduces transportation costs and makes handling easier on site.
Certified Quality
Meets IS 383 standards and certified for various construction applications across India.
Applications
Versatile uses across construction and infrastructure projects
Concrete Production
High-quality aggregates for residential, commercial, and industrial concrete applications.
Road Construction
Base and sub-base materials for highways, rural roads, and urban pavement projects.
Railway Ballast
Durable aggregates for railway track beds with excellent drainage properties.
Land Development
Fill material for landscaping, embankments, and foundation works.
Ready to Build Sustainably?
Join hundreds of construction companies switching to LD slag aggregates. Get a free quote and sample today.
Request Free Quote
// Mobile menu toggle
const mobileMenuBtn = document.getElementById('mobileMenuBtn');
const navLinks = document.getElementById('navLinks');
mobileMenuBtn.addEventListener('click', function() {
navLinks.style.display = navLinks.style.display === 'flex' ? 'none' : 'flex';
mobileMenuBtn.innerHTML = navLinks.style.display === 'flex'
? '
'
: '
';
if (navLinks.style.display === 'flex')