Meta Description" name="description" />
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alutech Aluminum & Glass Works | Premium Fabrication & Installation</title>
<!-- Google Fonts & Font Awesome Icons -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* CSS RESET & VARIABLES */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
:root {
--primary: #0f172a; /* Deep Charcoal/Blue */
--secondary: #0284c7; /* Aluminum/Sky Blue Accent */
--accent: #38bdf8;
--light: #f8fafc;
--dark: #1e293b;
--gray: #64748b;
--whatsapp: #25d366;
}
body {
color: var(--dark);
background-color: #fff;
line-height: 1.6;
}
/* NAVIGATION */
header {
position: fixed;
top: 0;
width: 100%;
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(8px);
z-index: 1000;
padding: 1rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: #fff;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
}
.logo span {
color: var(--accent);
}
nav ul {
display: flex;
list-style: none;
gap: 2rem;
}
nav a {
color: #fff;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
nav a:hover {
color: var(--accent);
}
.btn-quote {
background: var(--secondary);
color: #fff;
padding: 0.6rem 1.2rem;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
transition: background 0.3s;
}
.btn-quote:hover {
background: #0369a1;
}
/* HERO SECTION */
.hero {
height: 100vh;
background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('https://images.unsplash.com/photo-1508873696983-2df515122519?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
padding: 0 1rem;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.25rem;
max-width: 600px;
margin-bottom: 2rem;
color: #e2e8f0;
}
.hero-btns {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.btn-primary {
background: var(--secondary);
color: #fff;
padding: 0.8rem 2rem;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
}
.btn-whatsapp {
background: var(--whatsapp);
color: #fff;
padding: 0.8rem 2rem;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
}
.btn-whatsapp:hover {
background: #1eb954;
}
/* SECTION STYLES */
section {
padding: 5rem 10%;
}
.section-title {
text-align: center;
font-size: 2.2rem;
margin-bottom: 1rem;
color: var(--primary);
}
.section-subtitle {
text-align: center;
color: var(--gray);
margin-bottom: 3rem;
}
/* ABOUT SECTION */
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
.about-text h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--primary);
}
.about-features {
margin-top: 1.5rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.feature-item {
display: flex;
align-items: center;
gap: 10px;
font-weight: 600;
}
.feature-item i {
color: var(--secondary);
}
.about-img img {
width: 100%;
border-radius: 10px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
/* SERVICES SECTION */
.services {
background-color: var(--light);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.service-card {
background: #fff;
padding: 2.5rem 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
transition: transform 0.3s, box-shadow 0.3s;
text-align: center;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
}
.service-card i {
font-size: 3rem;
color: var(--secondary);
margin-bottom: 1.5rem;
}
.service-card h3 {
margin-bottom: 1rem;
}
/* PROJECTS GALLERY */
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.gallery-item {
position: relative;
border-radius: 8px;
overflow: hidden;
height: 250px;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.gallery-item:hover img {
transform: scale(1.1);
}
.gallery-overlay {
position: absolute;
inset: 0;
background: rgba(15, 23, 42, 0.7);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #fff;
opacity: 0;
transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
opacity: 1;
}
/* CONTACT SECTION */
.contact {
background: var(--light);
}
.contact-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.info-item {
display: flex;
align-items: center;
gap: 1.5rem;
}
.info-item i {
font-size: 1.5rem;
background: #fff;
color: var(--secondary);
padding: 1rem;
border-radius: 50%;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.info-item a {
color: var(--dark);
text-decoration: none;
transition: color 0.3s;
}
.info-item a:hover {
color: var(--secondary);
}
.contact-form form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid #cbd5e1;
border-radius: 5px;
outline: none;
}
.contact-form button {
background: var(--secondary);
color: #fff;
border: none;
padding: 1rem;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}
.contact-form button:hover {
background: var(--primary);
}
/* FOOTER */
footer {
background: var(--primary);
color: #94a3b8;
text-align: center;
padding: 2rem 1rem;
border-top: 1px solid #334155;
}
/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
header {
flex-direction: column;
gap: 1rem;
}
nav ul {
gap: 1rem;
}
.hero h1 {
font-size: 2.2rem;
}
.about-content,
.contact-container {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- NAVBAR -->
<header>
<a href="#" class="logo"><i class="fa-solid fa-cubes"></i> ALUTECH <span>GLASS</span></a>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<a href="#contact" class="btn-quote">Get a Quote</a>
</header>
<!-- HERO SECTION -->
<section class="hero" id="home">
<h1>Precision Aluminum & Glass Solutions</h1>
<p>Architectural glass systems, aluminum structural fabrication, and custom installations engineered to perfection.</p>
<div class="hero-btns">
<a href="#services" class="btn-primary">Our Services</a>
<a href="https://wa.me/923072656913" target="_blank" class="btn-whatsapp"><i class="fa-brands fa-whatsapp"></i> Chat on WhatsApp</a>
</div>
</section>
<!-- ABOUT SECTION -->
<section id="about">
<h2 class="section-title">About Alutech</h2>
<p class="section-subtitle">Crafting strength, safety, and elegance into modern architectural spaces.</p>
<div class="about-content">
<div class="about-text">
<h3>Leading Aluminum & Glass Specialists</h3>
<p>Managed by <strong>Shahzad Ahmed</strong>, Alutech Aluminum & Glass Works provides top-tier structural solutions including design, fabrication, and installation for both residential and commercial property developments.</p>
<div class="about-features">
<div class="feature-item"><i class="fa-solid fa-circle-check"></i> High Precision</div>
<div class="feature-item"><i class="fa-solid fa-circle-check"></i> Premium Grade Materials</div>
<div class="feature-item"><i class="fa-solid fa-circle-check"></i> Certified Installers</div>
<div class="feature-item"><i class="fa-solid fa-circle-check"></i> On-Time Delivery</div>
</div>
</div>
<div class="about-img">
<img src="https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=800&q=80" alt="Modern Glass Architecture">
</div>
</div>
</section>
<!-- SERVICES SECTION -->
<section class="services" id="services">
<h2 class="section-title">Our Specialty Services</h2>
<p class="section-subtitle">Custom solutions tailored for modern structures</p>
<div class="services-grid">
<div class="service-card">
<i class="fa-solid fa-table-cells-large"></i>
<h3>Curtain Wall Systems</h3>
<p>High-performance structural glass facades engineered for energy efficiency and modern aesthetics.</p>
</div>
<div class="service-card">
<i class="fa-solid fa-border-all"></i>
<h3>Aluminum Windows & Doors</h3>
<p>Sliding, casement, folding, and tilt-and-turn windows built with heavy-duty aluminum frames.</p>
</div>
<div class="service-card">
<i class="fa-solid fa-shield-halved"></i>
<h3>Frameless Glass Partitions</h3>
<p>Sleek, tempered glass office partitions, shower enclosures, and modern room dividers.</p>
</div>
<div class="service-card">
<i class="fa-solid fa-bars-staggered"></i>
<h3>Glass & Aluminum Railings</h3>
<p>Durable balcony, staircase, and terrace glass balustrades with aluminum handrails.</p>
</div>
</div>
</section>
<!-- PROJECTS GALLERY -->
<section id="projects">
<h2 class="section-title">Recent Works</h2>
<p class="section-subtitle">Take a look at some of our completed installations.</p>
<div class="gallery-grid">
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=600&q=80" alt="Glass Villa Facade">
<div class="gallery-overlay">
<h3>Residential Facade</h3>
<p>Modern Glass & Frame Integration</p>
</div>
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=600&q=80" alt="Office Glass Partitions">
<div class="gallery-overlay">
<h3>Commercial Office</h3>
<p>Frameless Glass Enclosures</p>
</div>
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1541888946425-d0fbb186a5b3?auto=format&fit=crop&w=600&q=80" alt="Aluminum Doors">
<div class="gallery-overlay">
<h3>Structural Glazing</h3>
<p>Aluminum Framing Systems</p>
</div>
</div>
</div>
</section>
<!-- CONTACT SECTION -->
<section class="contact" id="contact">
<h2 class="section-title">Contact Us</h2>
<p class="section-subtitle">Get in touch with us for site visits, quotes, or inquiries.</p>
<div class="contact-container">
<div class="contact-info">
<div class="info-item">
<i class="fa-solid fa-user"></i>
<div>
<h4>Contact Person</h4>
<p><strong>Shahzad Ahmed</strong></p>
</div>
</div>
<div class="info-item">
<i class="fa-solid fa-phone"></i>
<div>
<h4>Call / Phone</h4>
<p>
<a href="tel:+923072656913">+92 307 2656913</a><br>
<a href="tel:+923210019922">+92 321 0019922</a>
</p>
</div>
</div>
<div class="info-item">
<i class="fa-brands fa-whatsapp"></i>
<div>
<h4>WhatsApp Direct</h4>
<p>
<a href="https://wa.me/923072656913" target="_blank">+92 307 2656913 (Click to Chat)</a>
</p>
</div>
</div>
</div>
<div class="contact-form">
<form id="contactForm">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<input type="tel" placeholder="Phone Number" required>
<textarea rows="5" placeholder="Project details or requirements..." required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<p>© 2026 Alutech Aluminum and Glass Works | Contact: Shahzad Ahmed (+92 307 2656913)</p>
</footer>
<!-- JAVASCRIPT -->
<script>
// Simple form submission handler
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you! Your message has been sent to Shahzad Ahmed at Alutech Glass Works.');
this.reset();
});
</script>
</body>
</html>
13
5
413KB
496KB
315.0ms
400.0ms
667.0ms