*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    line-height:1.6;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#0e3d2b;
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:60px;
}

.nav-menu{
    display:flex;
    gap:25px;
    align-items:center;
}

.nav-menu a{
    color:#fff;
    font-weight:500;
}

.btn{
    background:#d7f06a;
    color:#0e3d2b !important;
    padding:10px 18px;
    border-radius:5px;
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

footer{
    background:#0e3d2b;
    color:#fff;
    margin-top:50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    padding:50px 0;
}

.footer-logo{
    width:120px;
}

.footer-grid a{
    color:#fff;
}

.footer-grid li{
    margin-bottom:10px;
}

.copyright{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.2);
}

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:#fff;
    padding:14px 20px;
    border-radius:50px;
    font-weight:600;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        display:none;
        flex-direction:column;
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#0e3d2b;
        padding:20px;
    }

    .nav-menu.active{
        display:flex;
    }
}
.hero{
    background:linear-gradient(135deg,#0e3d2b,#14523b);
    color:#fff;
    padding:80px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 16px;
    border-radius:50px;
    margin-bottom:20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero h1 span{
    color:#d7f06a;
}

.hero p{
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-outline{
    border:2px solid #d7f06a;
    color:#d7f06a;
    padding:10px 18px;
    border-radius:5px;
}

.hero-image img{
    width:100%;
    max-width:420px;
    display:block;
    margin:auto;
}

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
    margin-bottom:10px;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card,
.product-card,
.portfolio-card,
.stat-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stats{
    margin-top:-40px;
    position:relative;
    z-index:5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.stat-card{
    text-align:center;
}

.stat-card h2{
    color:#0e3d2b;
    margin-bottom:10px;
}

.products-section{
    background:#f8f9fa;
    padding:80px 0;
}

.text-center{
    text-align:center;
    margin-top:40px;
}

.cta{
    background:#0e3d2b;
    color:#fff;
    text-align:center;
    padding:80px 0;
}

.cta h2{
    font-size:38px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:30px;
}

@media(max-width:768px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero h1{
        font-size:36px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .section-title h2{
        font-size:30px;
    }
}
.page-banner{
    background:#0e3d2b;
    color:#fff;
    padding:70px 0;
    text-align:center;
}

.page-banner h1{
    font-size:42px;
    margin-bottom:15px;
}

.page-banner p{
    max-width:700px;
    margin:0 auto;
}

.feature-list{
    margin-top:20px;
}

.feature-list li{
    margin-bottom:10px;
}

@media(max-width:768px){

    .page-banner h1{
        font-size:32px;
    }

}
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:6px;
    font-family:'Poppins',sans-serif;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

.alert{
    padding:15px;
    margin-bottom:25px;
    border-radius:6px;
}

.success{
    background:#e8f7ec;
    color:#1f6b2b;
}

.error{
    background:#fdeaea;
    color:#a32020;
}

@media(max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

.project-logo img{
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/*
.project-logo{
    text-align: center;
    margin-bottom: 20px;
}

.project-logo img{
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.project-logo img:hover{
    transform: scale(1.05);
}
*/


.product-card p{
    margin-bottom: 25px;
    line-height: 1.8;
}


.product-card{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-btn{
    align-self: flex-start;
    margin-top: auto;
}

.tm{
    font-size: 0.45em;
    vertical-align: super;
    font-weight: 600;
    margin-left: 2px;
}