*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
overflow-x:hidden;
}

/* Navbar */

.navbar{
background:#000;
padding:15px 0;
}

.navbar-brand{
font-size:32px;
font-weight:800;
color:#fff !important;
}

.nav-link{
color:#fff !important;
margin-left:25px;
font-weight:500;
transition:0.3s;
}

.nav-link:hover{
color:#ff9800 !important;
}

/* Hero */

.hero{
min-height:100vh;

background:
linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop');

background-size:cover;
background-position:center;

display:flex;
align-items:center;

padding:120px 0;
}

.hero-content{
position:relative;
z-index:2;
}

.hero-content h1{
font-size:70px;
font-weight:800;
color:#fff;
line-height:1.2;
max-width:900px;
}

.hero-content p{
font-size:20px;
color:#eee;
margin-top:25px;
line-height:1.9;
max-width:700px;
}

.hero-btn{
display:inline-block;
margin-top:35px;
padding:15px 40px;
background:#ff9800;
color:#fff;
text-decoration:none;
border-radius:50px;
font-weight:600;
transition:0.3s;
}

.hero-btn:hover{
background:#fff;
color:#000;
}

/* Sections */

.section-title{
font-size:52px;
font-weight:800;
text-align:center;
margin-bottom:20px;
}

.section-sub{
text-align:center;
max-width:850px;
margin:auto;
color:#666;
font-size:18px;
line-height:1.9;
margin-bottom:70px;
}

/* About */

.about{
padding:100px 0;
}

.about img{
width:100%;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.about-text h3{
font-size:42px;
font-weight:700;
margin-bottom:25px;
}

.about-text p{
color:#666;
line-height:2;
font-size:17px;
}

/* Products */

.products{
padding:100px 0;
background:#f8f8f8;
}

.product-card{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.4s;
height:100%;
}

.product-card:hover{
transform:translateY(-12px);
}

.product-card img{
width:100%;
height:300px;
object-fit:cover;
}

.product-content{
padding:35px;
}

.product-content h3{
font-size:30px;
font-weight:700;
margin-bottom:15px;
}

.product-content p{
color:#666;
line-height:1.9;
}

.product-btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
background:#000;
color:#fff;
text-decoration:none;
border-radius:40px;
transition:0.3s;
}

.product-btn:hover{
background:#ff9800;
}

/* Gallery */

.gallery{
padding:100px 0;
}

.gallery img{
width:100%;
height:300px;
object-fit:cover;
border-radius:20px;
transition:0.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* Contact */

.contact{
padding:100px 0;
background:#111;
}

.contact-box{
background:#1b1b1b;
padding:60px;
border-radius:30px;
}

.form-control{
height:58px;
border:none;
border-radius:12px;
padding-left:20px;
margin-bottom:20px;
}

textarea.form-control{
height:170px;
padding-top:15px;
}

.send-btn{
background:#ff9800;
color:#fff;
padding:15px 40px;
border:none;
border-radius:50px;
font-weight:600;
transition:0.3s;
}

.send-btn:hover{
background:#fff;
color:#000;
}

/* Footer */

footer{
background:#000;
padding:35px 0;
color:#fff;
text-align:center;
}

/* Responsive */

@media(max-width:768px){

.hero{
text-align:center;
padding:100px 20px;
}

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:17px;
}

.section-title{
font-size:36px;
}

.about-text h3{
font-size:32px;
}

.contact-box{
padding:30px;
}

}