html, body {
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}

img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}

section, div, header, footer {
    max-width: 100vw;
}
body{
font-family: 'Inter', sans-serif;
}

#pageLoader{
transition:opacity .4s ease;
}
.nav-link{
position:relative;
padding-bottom:6px;
transition:color .3s;
}

.nav-link:hover{
color:#16770b;
}

.nav-link::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0%;
height:2px;
background:#43841f;
transition:width .3s ease;
}

.nav-link:hover::after{
width:100%;
}

.mobile-link{
display:block;
padding:16px 24px;
border-bottom:1px solid #eee;
font-weight:500;
}

.mobile-link:hover{
background:#f6f6f6;
color:#16770b;
}
.footer-title{
font-size:19px;
font-weight:600;
margin-bottom:18px;
color:white;
}

.footer-links li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.footer-links li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #9ca3af;
  font-weight: 600;
}

.footer-links a{
color:#ffffff;
font-size:15px;
transition:0.3s;
}

.footer-links a:hover{
color:#43841f;
}

.social-icon{
width:38px;
height:38px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#774626;
color:white;
font-size:14px;
transition:0.3s;
}

.social-icon:hover{
background:#43841f;
transform:translateY(-3px);
}
.footer-link{
position:relative;
transition:.3s;
color: #f0f2f0;
}

.footer-link::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:#43841f;
transition:.35s;
}

.footer-link:hover::after{
width:100%;
}
.contact-item{
display:flex;
align-items:flex-start;
gap:12px;
line-height:1.5;
transition:all .3s ease;
}

.footer-contact .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  transition: transform 0.3s, background 0.3s;
}

.footer-contact .contact-item:hover .contact-icon {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
}

.footer-contact .contact-icon svg{
width:16px;
height:16px;
color:#ffffff;
}

.contact-icon{
display:flex;
align-items:center;
justify-content:center;
width:34px;
height:34px;
border-radius:8px;
background:#1b3315;
color:#43841f;
flex-shrink:0;
}

.contact-item:hover{
color:white;
transform:translateX(3px);
}
.cta-button{
position:relative;
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 34px;
font-weight:600;
color:#16770b;
background:white;
border-radius:999px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
transition:all .35s ease;
overflow:hidden;
}
.cta-button:hover{
transform:translateY(-3px);
box-shadow:0 14px 35px rgba(0,0,0,0.3);
}

.cta-button::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,.6),transparent);
transition:all .6s;
}

.cta-button:hover::before{
left:100%;
}
.hero-btn-primary{
display:inline-block;
padding:14px 30px;
border-radius:999px;
font-weight:600;
color:white;
background:linear-gradient(90deg,#16770b,#43841f);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:all .35s ease;
}

.hero-btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.hero-btn-outline{
display:inline-block;
padding:14px 30px;
border-radius:999px;
font-weight:600;
color:#16770b;
border:2px solid #16770b;
transition:all .3s ease;
}

.hero-btn-outline:hover{
background:#16770b;
color:white;
transform:translateY(-3px);
}

@media (max-width:768px)
{
    .mobile-hero-padding{
        padding-right: 20px;
    }
}


@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.animate-fadeUp{
animation:fadeUp 1s ease forwards;
}

@keyframes float{
0%{transform:translateY(0px)}
50%{transform:translateY(-12px)}
100%{transform:translateY(0px)}
}

.animate-float{
animation:float 6s ease-in-out infinite;
}

.why-card{
background:#f7faf6;
padding:22px;
border-radius:14px;
transition:all .35s ease;
border:1px solid #edf2ea;
}

.why-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.why-icon{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
background:#e9f4e6;
border-radius:10px;
font-size:18px;
margin-bottom:10px;
}

.floating-badge{
animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge{
0%{transform:translateY(0)}
50%{transform:translateY(-6px)}
100%{transform:translateY(0)}
}

.feature-card{
display:flex;
gap:16px;
padding:18px;
border-radius:14px;
background:white;
border:1px solid #eef2ec;
transition:all .3s ease;
}

.feature-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.feature-icon{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
background:#e9f5e7;
border-radius:12px;
color:#16770b;
flex-shrink:0;
}


.product-card{
background:white;
border-radius:16px;
overflow:hidden;
border:1px solid #edf1ea;
transition:all .35s ease;
cursor:pointer;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.product-img{
width:100%;
height:190px;
object-fit:cover;
}

.product-title{
padding:16px;
font-weight:600;
text-align:center;
color:#1f2937;
}

/* INDUSTRY CARD */

.industry-card{
background:white;
padding:40px 32px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.05);
transition:all .35s ease;
position:relative;
overflow:hidden;
}

.industry-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}
.industry-card-hover-default {
  transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);

}
.industry-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg,#16770b,#43841f);
opacity:0;
transition:0.35s;
z-index:0;
}

.industry-card-hover-default::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg,#16770b,#43841f);
opacity:0;
transition:0.35s;
z-index:0;
}

.industry-card:hover::before{
opacity:.05;
}

.industry-card-hover-default:hover::before{
opacity:.05;
}

.industry-icon{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
background:linear-gradient(135deg,#16770b,#43841f);
margin-bottom:18px;
position:relative;
z-index:2;
transition:.3s;
}

.industry-icon svg{
width:26px;
height:26px;
color:white;
}

.industry-card:hover .industry-icon{
transform:rotate(-6deg) scale(1.08);
}
.industry-card-hover-default .industry-icon{
transform:rotate(-6deg) scale(1.08);
}

.industry-card h3{
font-size:20px;
font-weight:600;
margin-bottom:10px;
color:#111;
position:relative;
z-index:2;
}

.industry-card p{
color:#666;
line-height:1.6;
font-size:15px;
position:relative;
z-index:2;
}
.industry-card{
animation:fadeUp .8s ease forwards;
opacity:0;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.modal-content{
opacity:0;
transform:scale(.9);
transition:all .35s ease;
}

.modal-show .modal-content{
opacity:1;
transform:scale(1);
}

.modal-overlay{
opacity:0;
transition:opacity .35s ease;
}

.modal-show .modal-overlay{
opacity:1;
}

.product-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:all .35s ease;
border:1px solid #f2f2f2;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.product-image-wrap{
position:relative;
overflow:hidden;
}

.product-image{
width:100%;
height:240px;
object-fit:cover;
transition:transform .6s ease;
}

.product-card:hover .product-image{
transform:scale(1.08);
}

.product-badge{
position:absolute;
top:16px;
left:16px;
background:white;
padding:6px 12px;
border-radius:30px;
font-size:12px;
font-weight:600;
display:flex;
align-items:center;
gap:6px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.product-content{
padding:28px;
}

.product-content h3{
font-size:22px;
font-weight:600;
margin-bottom:8px;
}

.product-desc{
color:#666;
font-size:15px;
margin-bottom:18px;
line-height:1.6;
}

.product-features{
display:flex;
flex-direction:column;
gap:12px;
margin-bottom:20px;
}

.feature-row{
display:flex;
align-items:flex-start;
gap:12px;
padding:12px 14px;
border-radius:12px;
background:#f8faf8;
transition:.25s;
}

.feature-row:hover{
background:#ddd;
}

.feature-icon{
width:36px;
height:36px;
border-radius:10px;
background:#e9f5ea;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
}

.feature-icon svg{
width:18px;
height:18px;
color:#16770b;
}

.feature-row h4{
font-size:14px;
font-weight:600;
margin-bottom:2px;
}

.feature-row p{
font-size:12px;
color:#666;
}

.use-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin-top:10px;
}

.use-item{
font-size:13px;
background:#f6f8f5;
padding:8px 10px;
border-radius:8px;
display:flex;
align-items:center;
gap:6px;
}

.use-item svg{
width:14px;
height:14px;
color:#16770b;
}

.material-card{
background:white;
padding:22px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:all .35s ease;
}

.material-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.benefit-card{
background:white;
padding:18px;
border-radius:12px;
display:flex;
align-items:center;
gap:10px;
font-size:14px;
font-weight:500;
color:#374151;
box-shadow:0 6px 18px rgba(0,0,0,0.05);
transition:all .3s;
}

.benefit-card i{
color:#16770b;
width:18px;
height:18px;
}

.benefit-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.service-card{
background:white;
padding:30px;
border-radius:14px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:all .35s ease;
}

.service-card i{
width:28px;
height:28px;
color:#16770b;
margin-bottom:14px;
}

.service-card h4{
font-weight:600;
margin-bottom:10px;
color:#111827;
}

.service-card p{
color:#6b7280;
font-size:14px;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.contact-card{
display:flex;
align-items:flex-start;
gap:16px;
background:white;
padding:20px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:all .3s ease;
}

.contact-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.contact-icon{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
background:#16770b10;
}

.contact-icon i{
width:20px;
height:20px;
color:#16770b;
}

.contact-card h4{
font-weight:600;
color:#111827;
margin-bottom:3px;
}

.contact-card p{
color:#6b7280;
font-size:16px;
}



.contact-form-wrap{
background:white;
padding:40px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.contact-form-wrap input,
.contact-form-wrap textarea{
width:100%;
padding:12px 14px;
border:1px solid #e5e7eb;
border-radius:8px;
font-size:14px;
outline:none;
transition:.2s;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus{
border-color:#16770b;
box-shadow:0 0 0 2px #16770b15;
}

.contact-btn{
background:#16770b;
color:white;
padding:14px;
width:100%;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.contact-btn:hover{
background:#125f09;
}



.map-wrap{
margin-top:25px;
border-radius:14px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.map-wrap iframe{
width:100%;
height:260px;
border:0;
}
@keyframes blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px, -10px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}
.animate-blob {
  animation: blob 8s infinite;
}
.animation-delay-2000 {
  animation-delay: 2s;
}
.animation-delay-4000 {
  animation-delay: 4s;
}








