.header{
position:fixed;
top:0;
width:100%;
background:white;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
z-index:1000;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
}

.logo{
display:flex;
align-items:center;
gap:10px;
cursor:pointer;
}

.brand{
font-size:24px;
font-weight:bold;
color:#1f2937;
}

.icon{
font-size:28px;
color:#b45309;
}

.nav-links button{
background:none;
border:none;
margin-left:30px;
font-size:16px;
font-weight:500;
cursor:pointer;
color:#374151;
transition:0.3s;
}

.nav-links button:hover{
color:#b45309;
}

.menu-btn{
display:none;
font-size:26px;
cursor:pointer;
}

.mobile-menu{
display:none;
flex-direction:column;
padding:20px;
background:white;
border-top:1px solid #eee;
}

.mobile-menu button{
background:none;
border:none;
text-align:left;
padding:10px 0;
font-size:16px;
cursor:pointer;
}

.mobile-menu button:hover{
color:#b45309;
}

@media(max-width:768px){

.nav-links{
display:none;
}

.menu-btn{
display:block;
}

.mobile-menu.show{
display:flex;
}

}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
background-image:url("https://media.istockphoto.com/id/1084227758/photo/a-group-of-office-chairs-representing-the-concepts-of-leadership-stand-out-from-the-crowd.jpg?s=612x612&w=0&k=20&c=vnl8PnsjickPu-G0eTwolH0lJg2BWWrVFoYGzVYspjw=");
background-size:cover;
background-position:center;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.5);
}

.hero-content{
position:relative;
z-index:2;
color:white;
max-width:900px;
padding:20px;
}

.hero h1{
font-size:60px;
font-weight:700;
margin-bottom:20px;
line-height:1.1;
}

.hero-subtitle{
font-size:24px;
color:#e5e7eb;
margin-bottom:20px;
}

.hero-description{
font-size:20px;
line-height:1.6;
max-width:700px;
margin:auto;
margin-bottom:40px;
}

.hero-btn{
background:#b45309;
color:white;
border:none;
padding:16px 32px;
font-size:18px;
font-weight:600;
border-radius:8px;
cursor:pointer;
transition:all 0.3s;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

.hero-btn:hover{
background:#92400e;
transform:scale(1.05);
}

@media(max-width:768px){

.hero h1{
font-size:40px;
}

.hero-subtitle{
font-size:18px;
}

.hero-description{
font-size:16px;
}

}

.products-section{
padding:80px 20px;
background:#f9fafb;
}

.products-container{
max-width:1200px;
margin:auto;
}

.products-header{
text-align:center;
margin-bottom:60px;
}

.products-header h2{
font-size:48px;
font-weight:bold;
color:#1f2937;
margin-bottom:10px;
}

.products-header p{
font-size:20px;
color:#6b7280;
max-width:600px;
margin:auto;
}

.products-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.product-card{
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.product-card:hover{
transform:scale(1.05);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.product-image{
position:relative;
height:260px;
overflow:hidden;
}

.product-image img{
width:100%;
height:100%;
object-fit:cover;
transition:0.3s;
}

.product-card:hover img{
transform:scale(1.1);
}

.category{
position:absolute;
top:15px;
right:15px;
background:#b45309;
color:white;
padding:6px 12px;
border-radius:20px;
font-size:14px;
font-weight:600;
}

.product-content{
padding:20px;
}

.product-content h3{
font-size:24px;
font-weight:bold;
color:#1f2937;
margin-bottom:10px;
}

.product-content p{
color:#6b7280;
margin-bottom:20px;
line-height:1.5;
}

.inquire-btn{
background:#b45309;
color:white;
border:none;
padding:10px 20px;
border-radius:8px;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.inquire-btn:hover{
background:#92400e;
}

.about-section{
padding:80px 20px;
background:white;
}

.about-container{
max-width:1200px;
margin:auto;
}

.about-title{
text-align:center;
margin-bottom:60px;
}

.about-title h2{
font-size:48px;
font-weight:bold;
color:#1f2937;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
margin-bottom:80px;
}

.about-image img{
width:100%;
height:400px;
object-fit:cover;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.about-text{
display:flex;
flex-direction:column;
justify-content:center;
}

.about-text h3{
font-size:32px;
font-weight:bold;
margin-bottom:20px;
color:#1f2937;
}

.about-text p{
font-size:18px;
color:#6b7280;
line-height:1.7;
margin-bottom:15px;
}

.features-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-bottom:80px;
}

.feature-card{
text-align:center;
padding:30px;
background:#f9fafb;
border-radius:12px;
}

.feature-icon{
display:inline-flex;
align-items:center;
justify-content:center;
width:70px;
height:70px;
background:#fde68a;
border-radius:50%;
margin-bottom:20px;
}

.feature-icon svg{
width:32px;
height:32px;
color:#b45309;
}

.feature-card h4{
font-size:22px;
font-weight:bold;
color:#1f2937;
margin-bottom:10px;
}

.feature-card p{
color:#6b7280;
}

.manufacturing-section{
background:linear-gradient(to right,#b45309,#78350f);
padding:60px;
border-radius:12px;
color:white;
}

.manufacturing-content{
max-width:800px;
margin:auto;
text-align:center;
}

.manufacturing-content h3{
font-size:32px;
margin-bottom:20px;
}

.manufacturing-content p{
font-size:18px;
line-height:1.7;
margin-bottom:15px;
}

@media(max-width:900px){

.about-grid{
grid-template-columns:1fr;
}

.about-image img{
height:300px;
}

}

.gallery-section{
padding:80px 20px;
background:#f9fafb;
}

.gallery-container{
max-width:1200px;
margin:auto;
}

.gallery-header{
text-align:center;
margin-bottom:60px;
}

.gallery-header h2{
font-size:48px;
font-weight:bold;
color:#1f2937;
margin-bottom:10px;
}

.gallery-header p{
font-size:20px;
color:#6b7280;
max-width:600px;
margin:auto;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-item{
position:relative;
height:260px;
overflow:hidden;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
cursor:pointer;
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

.gallery-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
padding:20px;
background:linear-gradient(to top,rgba(0,0,0,0.7),transparent);
opacity:0;
transition:0.3s;
}

.gallery-item:hover .gallery-overlay{
opacity:1;
}

.gallery-overlay h3{
color:white;
font-size:18px;
font-weight:600;
}

.stats-section{
margin-top:60px;
background:white;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
padding:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
text-align:center;
gap:30px;
}

.stat-box h3{
font-size:48px;
color:#b45309;
font-weight:bold;
margin-bottom:10px;
}

.stat-box p{
color:#6b7280;
font-size:18px;
}

.contact-section{
padding:80px 20px;
background:white;
}

.contact-container{
max-width:1200px;
margin:auto;
}

.contact-header{
text-align:center;
margin-bottom:60px;
}

.contact-header h2{
font-size:48px;
font-weight:bold;
color:#1f2937;
margin-bottom:10px;
}

.contact-header p{
font-size:20px;
color:#6b7280;
max-width:600px;
margin:auto;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

.contact-grid h3{
font-size:28px;
margin-bottom:20px;
color:#1f2937;
}

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
margin-bottom:6px;
font-weight:600;
color:#374151;
}

.form-group input,
.form-group textarea{
width:100%;
padding:12px;
border:1px solid #d1d5db;
border-radius:8px;
font-size:16px;
}

.form-group input:focus,
.form-group textarea:focus{
border-color:#b45309;
outline:none;
}

.submit-btn{
width:100%;
background:#b45309;
color:white;
border:none;
padding:16px;
font-size:18px;
font-weight:600;
border-radius:8px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}

.submit-btn:hover{
background:#92400e;
}

.contact-info{
margin-bottom:40px;
}

.info-item{
display:flex;
gap:15px;
margin-bottom:20px;
}

.info-icon{
background:#fde68a;
padding:12px;
border-radius:8px;
}

.info-icon svg{
color:#b45309;
}

.social-links{
display:flex;
gap:15px;
}

.social-links a{
padding:12px;
background:#f3f4f6;
border-radius:8px;
}

.social-links a:hover{
background:#b45309;
color:white;
}

#formMessage{
margin-bottom:15px;
font-weight:600;
}

@media(max-width:900px){

.contact-grid{
grid-template-columns:1fr;
}

}

.footer{
background:#111827;
color:white;
padding:60px 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
margin-bottom:40px;
}

.footer-brand p{
color:#9ca3af;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:22px;
font-weight:bold;
margin-bottom:15px;
}

.logo svg{
color:#b45309;
width:28px;
height:28px;
}

.footer h4{
margin-bottom:15px;
font-size:18px;
}

.footer ul{
list-style:none;
padding:0;
}

.footer ul li{
margin-bottom:8px;
color:#9ca3af;
}

.footer ul li a{
color:#9ca3af;
text-decoration:none;
}

.footer ul li a:hover{
color:#b45309;
}

.footer-bottom{
border-top:1px solid #1f2937;
padding-top:20px;
text-align:center;
color:#9ca3af;
}