*{
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
background:#f4f4f4;
}

/* TOP BAR */

.topbar{
background:#1e5f56;
color:white;
padding:10px 30px;
text-align:right;
}

.topbar a{
color:white;
margin-left:15px;
text-decoration:none;
font-size:14px;
}

/* HEADER */

header{
position:sticky;
top:0;
z-index:1000;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#dceaea;
flex-wrap:wrap;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.logo-section{
display:flex;
align-items:center;
gap:15px;
}

.logo-section img{
height:70px;
}

.logo-section h2{
margin:0;
color:#125b50;
}

.logo-section p{
margin:0;
font-size:14px;
}

/* MENU */

.menu{
list-style:none;
display:flex;
gap:25px;
margin:0;
padding:0;
align-items:center;
}

.menu li{
position:relative;
}

.menu a{
text-decoration:none;
font-weight:bold;
color:#125b50;
padding:8px 12px;
display:block;
}

/* DROPDOWN */

.dropdown-content{
display:none;
position:absolute;
background:white;
min-width:200px;
top:100%;
left:0;
box-shadow:0 4px 8px rgba(0,0,0,0.2);
z-index:999;
}

.dropdown-content li{
display:block;
}

.dropdown-content a{
padding:10px;
color:black;
}

.dropdown-content a:hover{
background:#f2f2f2;
}

.dropdown:hover .dropdown-content{
display:block;
}

/* HERO */

.hero{
background-image:url("images/export-bg.png");
background-size:cover;
background-position:center;
height:550px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

.hero-content{
position:relative;
z-index:2;
max-width:800px;
padding:30px;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
line-height:1.6;
margin-bottom:25px;
}

.hero-btn{
background:#f4c542;
color:black;
padding:12px 25px;
text-decoration:none;
border-radius:25px;
font-weight:bold;
}

.hero-btn:hover{
background:#e0b534;
}

/* PRODUCT CAROUSEL */

.product-carousel{
background:white;
padding:60px;
text-align:center;
overflow:hidden;
}

.carousel-track{
display:flex;
gap:40px;
animation:scrollProducts 20s linear infinite;
align-items:center;
}

.carousel-item{
min-width:200px;
text-align:center;
text-decoration:none;
color:#125b50;
display:block;
}

.carousel-item img{
height:120px;
display:block;
margin:auto;
transition:transform 0.3s;
}

.carousel-item:hover img{
transform:scale(1.1);
}

.carousel-item p{
margin-top:10px;
font-weight:bold;
}

/* ANIMATION */

@keyframes scrollProducts{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* CERTIFICATIONS */

.certifications{
background:white;
padding:60px;
text-align:center;
}

.certifications p{
max-width:700px;
margin:auto;
margin-bottom:30px;
line-height:1.6;
}

.cert-image{
max-width:800px;
width:100%;
margin-top:20px;
}

/* EXPORT MARKETS */

.export-markets{
background:#f9f9f9;
padding:60px;
text-align:center;
}

.export-markets img{
max-width:700px;
width:100%;
margin-top:20px;
}

/* EXPORT STATS */

.stats{
background:#125b50;
color:white;
padding:60px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
text-align:center;
max-width:900px;
margin:auto;
}

.stat h3{
font-size:36px;
margin-bottom:10px;
}

/* CONTACT FORM */

.contact-form{
padding:60px;
text-align:center;
background:white;
}

.contact-form form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
margin-top:20px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:1px solid #ccc;
border-radius:5px;
font-size:14px;
}

.contact-form textarea{
min-height:120px;
}

.contact-form button{
background:#125b50;
color:white;
padding:12px;
border:none;
border-radius:5px;
cursor:pointer;
font-weight:bold;
}

.contact-form button:hover{
background:#0f4b43;
}

/* WHATSAPP */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* ABOUT PAGE */

.about-banner{
background-image:url("images/about-bg.png");
background-size:cover;
background-position:center;
height:300px;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:50px;
font-weight:bold;
}

.about-section{
padding:80px 40px;
background:#f4f4f4;
}

.about-container{
display:flex;
align-items:center;
justify-content:center;
gap:60px;
max-width:1100px;
margin:auto;
flex-wrap:wrap;
}

.about-image img{
width:350px;
border-radius:20px;
}

.about-text{
max-width:500px;
font-size:18px;
line-height:1.7;
}

.about-text p{
margin-bottom:20px;
}

/* TRANSLATOR */

.translator-item{
margin-left:10px;
}

#google_translate_element select{
padding:6px 8px;
border-radius:4px;
border:1px solid #ccc;
font-size:13px;
}

/* FOOTER */

footer{
background:#125b50;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}
.product-columns{
display:flex;
gap:50px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.product-columns ul{
list-style:disc;
text-align:left;
}

.product-showcase{
padding:60px;
background:white;
text-align:center;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
margin-top:40px;
}

.product-card{
background:#fff;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
padding:20px;
text-decoration:none;
color:#125b50;
transition:transform 0.3s;
}

.product-card:hover{
transform:translateY(-6px);
}

.product-card img{
width:100%;
height:150px;
object-fit:contain;
}

.product-card h3{
margin-top:15px;
}

.export-markets{
background:#f9f9f9;
padding:60px;
text-align:center;
}

.export-markets img{
max-width:700px;
width:100%;
margin-top:20px;
}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}
.contact-form{
padding:60px;
text-align:center;
background:white;
}

.contact-form form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
margin-top:20px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:1px solid #ccc;
border-radius:5px;
}

.contact-form button{
background:#125b50;
color:white;
padding:12px;
border:none;
border-radius:5px;
cursor:pointer;
}