



























* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background: #f9f9f9;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0a4d1c;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.logo {
    color: #f7c948;
    font-size: 30px;
    font-weight: 700;





}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 20px;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.30), rgba(0,0,0,.30)),



url('imge/back-logo.webp');
                
   

background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 25px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #f7c948;
    color: #000;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: bold;
}

section {
    padding: 10px 8%;
}

.section-title {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-size: 38px;
}

.about {
    text-align: center;
    color: #FFFFFF;
    max-width: 1000px;
    margin: auto;
    line-height: 1.8;
}

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

.card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.card i {
    font-size: 50px;
    color: #0a4d1c;
    margin-bottom: 15px;
}

#team .section-title{
    color:#0a4d1c;
}

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

.member {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.member h3 {
    color: #0a4d1c;
}

.contact {
    background: #0a4d1c;
    color: #fff;
    text-align: center;
}

.contact h2 {
    color: #fff;
}

.contact p {
    margin: 10px 0;
}

footer {
    background: #062d11;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
}

/* Language Button */
.lang-box {
    position: relative;
    margin-left: 15px;
    z-index: 2000;
}

.lang-btn {
    background: #f7c948;
    color: #000;
    padding: 8px 14px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 38px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    overflow: hidden;
}

.lang-menu button {
    display: block;
    width: 130px;
    padding: 10px;
    border: 0;
    background: white;
    cursor: pointer;
    text-align: left;
}

.lang-menu button:hover {
    background: #f1f1f1;
}

/* Why Choose Us / Additional Styles */
.section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f5132, #198754);
    color: white;
    text-align: center;
}

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

h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.2);
}

.card h3 {
    margin-bottom: 10px;
    color: #ffd700;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }
    nav {
        display: none;
    }
}
.gallery-item{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

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

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






#products img{
    width:100%;
    height:180px;
    object-fit: contain
    display:block;
}