body{
margin:0;
font-family:Arial;
background:#f4f6f9;
}


.logo a{
font-size:22px;
font-weight:bold;
text-decoration:none;
color:#333;

}

.dropdown{
position:relative;
display:inline-block;
}

.dropdown-content{
display:none;
position:absolute;
background:white;
min-width:160px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.dropdown-content a{
display:block;
padding:10px;
text-decoration:none;
color:#333;
}

.dropdown:hover .dropdown-content{
display:block;
}


/* header */

.header{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 40px;
background:#f3f3f3;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.logo img{
height:50px;

}
.languages img{
width:22px;
margin-left:8px;
cursor:pointer;
}



/* LOGO */

.logo img{
height:55px;
}

/* MENU */
.menu{
display:flex;
gap:30px;
flex:1;
justify-content:center;
}
.menu a{
text-decoration:none;
color:#333;
font-size:16px;
font-weight:500;
}

.menu a:hover{
color:#c49a3a;
}



/* DROPDOWN */

.dropdown{
position:relative;
}

.dropdown-content{
display:none;
position:absolute;
top:30px;
left:0;
background:white;
min-width:160px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.dropdown-content a{
display:block;
padding:10px;
}

.dropdown:hover .dropdown-content{
display:block;
}


.logo{
margin-right:80px;
}



.languages{
display:flex;
gap:8px;
}

.languages img{
width:22px;
}
.hero{
height:600px;
background:url('../images/hero.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-content h1{
font-size:48px;
margin-bottom:20px;
}

.hero-content p{
font-size:20px;
margin-bottom:30px;
}

.hero-btn{
background:#c49a3a;
color:white;
padding:12px 30px;
text-decoration:none;
font-size:16px;
border-radius:4px;
}

.hero-btn:hover{
background:#a8822f;
}
.products{
padding:80px 40px;
text-align:center;
}

.products h2{
font-size:32px;
margin-bottom:40px;
}

.product-card{
background:white;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
padding:20px;
transition:0.3s;
}
.products-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1200px;
margin:auto;
}


.product-card img{
width:100%;
height:200px;
object-fit:cover;
margin-bottom:15px;
}

.product-card:hover{
transform:translateY(-8px);
}
.footer{
background:#f5f5f5;
margin-top:80px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:flex-start;
padding:40px 20px;
}

.footer-logo h3{
margin:0;
}

.footer-logo p{
color:#777;
}

.footer-menu{
display:flex;
gap:25px;
}

.footer-menu a{
text-decoration:none;
color:#333;
font-weight:500;
}

.footer-menu a:hover{
color:black;
}

.footer-contact{
text-align:right;
color:#666;
}

.footer-bottom{
text-align:center;
padding:15px;
border-top:1px solid #ddd;
color:#777;
font-size:14px;
}
.features{
max-width:1000px;
margin:-80px auto 0 auto;
overflow:hidden;
padding:60px 0;
position:relative;
z-index:2;
}

.features-slider{
display:flex;
gap:30px;
animation:slide 15s linear infinite;
}

.feature-card{
min-width:300px;
background:#f5f5f5;
padding:30px;
border-radius:6px;
}

.feature-card h3{
font-size:36px;
color:#cfcfcf;
margin-bottom:10px;
}

.feature-card p{
color:#666;
font-size:14px;
line-height:1.5;
}

@keyframes slide{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}
/* PROJECTS */

.projects{
padding:80px 20px;
}

.projects-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1200px;
margin:auto;
}

.project{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
}

.project img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.project h3{
margin:15px 0 5px;
font-size:20px;
}

.project p{
color:#777;
margin-bottom:20px;
}
.section-title{
text-align:center;
margin-bottom:40px;
font-size:32px;
}
.container {
    width: 90%;
    margin: auto;
}