body{
    margin:0;
    font-family:Arial, sans-serif;
}

header{
    background:#ffffff;
    padding:12px 30px;
}

.container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    height:85px;
}

nav a{
    text-decoration:none;
    margin-left:25px;
    color:#0b5d3b;
    font-weight:bold;
}
.btn{
    display:inline-block;
    background:#d4a017;
    color:white;
    padding:14px 30px;
    text-decoration:none;
    border-radius:5px;
    margin:10px;
}

.btn-outline{
    background:transparent;
    border:2px solid white;
}
.top-bar{
    background:#0b5d3b;
    color:white;
    display:flex;
    justify-content:space-around;
    padding:10px;
    font-size:14px;
}

.stats{
    background:#0b5d3b;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:45px;
    padding:8px 0;
    margin-top:0;
}

.stat-box{
    display:flex;
    align-items:center;
    gap:12px;
    color:white;
}

.stat-box h2{
    margin:0;
    color:white;
    font-size:34px;
    line-height:1;
}

.stat-box p{
    margin:0;
    font-size:13px;
    line-height:1.3;
    color:white;
}

.stat-box span{
    font-size:28px;
}

.divider{
    width:1px;
    height:35px;
    background:rgba(255,255,255,.3);
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#2f4f3f;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    position:relative;
}

.section-title span::before,
.section-title span::after{
    content:"";
    display:inline-block;
    width:80px;
    height:1px;
    background:#d4a017;
    vertical-align:middle;
    margin:0 15px;
}

.section-title h2{
    margin-top:10px;
    color:#0b5d3b;
    font-size:36px;
    font-family:Georgia, serif;
}

.hero{
    background:url('../images/hero-banner.png');
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    min-height:610px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    text-align:left;
    color:white;
    position:relative;
    margin-bottom:0;
}

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

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

.hero-buttons{
    position:absolute;

    left:20px;
    bottom:85px;

    display:flex;
    gap:35px;
}

.hero-btn{
    width:290px;
    height:62px;

    display:flex;
    justify-content:center;
    align-items:center;

    border:2px solid #d4a017;
    border-radius:8px;

    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
}

.hero-btn:hover{
    background:#d4a017;
}

.btn-primary{
    background:#d4a017;
    color:white;
    padding:14px 30px;
    text-decoration:none;
    border-radius:5px;
}

.btn-secondary{
    border:2px solid white;
    color:white;
    padding:14px 30px;
    text-decoration:none;
    border-radius:5px;
}

.products{
    padding:80px 5%;
    text-align:center;
}

.products h2{
    color:#006b3c;
    font-size:42px;
    margin-bottom:40px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}

.product-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    text-align:center;
    padding-bottom:15px;
    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.product-card h3{
    font-size:24px;
    color:#006b3c;
    margin:20px 0 10px;
    padding:10px;
}

.product-card p{
    font-size:14px;
    color:#666;
    line-height:1.5;
    padding:0 15px 20px;
    margin:0;
}

.more-products{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    min-height:320px;
}

.plus-sign{
    font-size:80px;
    font-weight:bold;
    color:#d4a017;
    line-height:1;
}

.more-card{
    text-decoration:none;
    color:#006b3c;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.more-card h3{
    margin-top:15px;
    font-size:24px;
    color:#006b3c;
}

.about-why{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 5% 80px;
    max-width:1600px;
    margin:auto;
}

.about-box{
    flex:1;
    max-width:650px;
    margin-right:auto;
    margin-left:0;
}

.why-box{
    flex:1;
    max-width:500px;
    margin-left:auto;
}

.about-box h2,
.why-box h2{
    color:#0b5d3b;
    font-size:36px;
    margin-bottom:25px;
}

.about-box p{
    color:#444;
    line-height:1.8;
    margin-bottom:20px;
}

.about-divider{
    width:1px;
    height:240px;
    background:#d8d8d8;
}

.why-box ul{
    list-style:none;
    padding:0;
}

.why-box li{
    margin-bottom:18px;
    font-size:19px;
    color:#333;
}

.read-btn{
    display:inline-block;
    background:#0b5d3b;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border-radius:5px;
    margin-top:10px;
}

.read-btn:hover{
    background:#d4a017;
}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:1000px;
    margin:auto;
}

.features div{
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    font-size:20px;
    font-weight:bold;
    color:#0b5d3b;
}

.features div:hover{
    transform:translateY(-5px);
    transition:0.3s;
}

.markets{
    padding:80px 20px;
    background:#ffffff;
    text-align:center;
}

.markets h2{
    color:#0b5d3b;
    font-size:42px;
    margin-bottom:40px;
}

.market-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:900px;
    margin:auto;
}

.market-grid div{
    background:#f8f8f8;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    font-size:22px;
    font-weight:bold;
    color:#0b5d3b;
}

.market-grid div:hover,
.features div:hover,
.product-card:hover{
    transform: translateY(-8px);
    transition: 0.3s;
}

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:999;
}

.whatsapp-float img{
    width:65px;
    height:65px;
    border-radius:50%;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    transition:0.3s;
}

.whatsapp-float img:hover{
    transform:scale(1.1);
}

.footer{
    background:#0b5d3b;
    color:white;
    margin:auto;
    
}

.footer-container{
    max-width:1800px;
    margin:auto;
    padding:35px 40px;
    width:100%;
    display:grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap:80px;
}

.footer-box{
    text-align:left;
}

.footer-box h3{
    color:#d4a017;
    margin-bottom:20px;
    font-size:32px;
}

.footer-box p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:12px;
}

.footer-box a{
    display:block;
    color:white;
    text-decoration:none;
    margin-bottom:12px;
    font-size:20px;
    transition:0.3s;
}

.footer-box:first-child{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.footer-box a:hover{
    color:#d4a017;
}

.footer-logo{
    width:400px;
    height:auto;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    text-align:center;
    padding:20px;
    font-size:20px;
}

/* =========================
   PRODUCTS PAGE BANNER
========================= */

.products-banner{
    background:
        linear-gradient(
            rgba(11,93,59,0.75),
            rgba(11,93,59,0.75)
        ),
        url("../images/about-company.png");

    background-size:cover;
    background-position:center;

    color:white;
    text-align:center;

    padding:100px 20px;
}

.products-banner h1{
    font-size:50px;
    margin-bottom:15px;
}

.products-banner p{
    font-size:22px;
    margin:0;
}

.all-products{
    width:95%;
    margin:auto;
}

.all-products h2{
    text-align:center;
    color:#0b5d3b;
    font-size:38px;
    margin:50px 0 40px;
}

.products-page{
    padding:60px 40px;
}
.packaging{
    padding:80px 0;
    text-align:center;
}

.packaging h2{
    color:#0b5d3b;
    font-size:42px;
    margin-bottom:40px;
}

.packaging-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.pack-box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    border:1px solid #e5e5e5;
    font-size:18px;
    font-weight:600;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.pack-box h3{
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.pack-box h3::after{
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #d4a017;
    margin: 10px auto 0;
    border-radius: 5px;
}

.pack-box:hover{
    transform:translateY(-5px);
    border-color:#0b5d3b;
}

/* PRODUCT SPECIFICATIONS */
.specifications{
    padding:80px 8%;
}

.specifications h2{
    text-align:center;
    color:#0b5d3b;
    font-size:48px;
    margin-bottom:40px;
}

.spec-table{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.spec-row{
    display:flex;
    justify-content:space-between;
    padding:18px 25px;
    border-bottom:1px solid #e5e5e5;
}

.spec-row:last-child{
    border-bottom:none;
}

.spec-row span:first-child{
    font-weight:700;
    color:#0b5d3b;
}

.spec-row span:last-child{
    color:#555;
}

.info-row{
    display:flex;
    gap:40px;
    padding:60px 8%;
    align-items:flex-start;
}

.packaging,
.specifications{
    flex:1;
    padding:0;
}

.packaging-benefits{
    margin-top:30px;
    text-align:left;
}

.packaging-benefits h3{
    font-size:28px;
    color:#006241;
    margin-bottom:20px;
}

.packaging-benefits ul{
    list-style:none;
    padding:0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.packaging-benefits li{
    background:#fff;
    padding:15px 20px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    font-size:16px;
    font-weight:500;
}

/* Quote Form */

.quote-form{
    margin-top:40px;
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    border-top:4px solid #d4a017;
}

.quote-form h2{
    text-align:center;
    color:#0b5d3b;
    margin-bottom:25px;
}

.quote-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.quote-form input,
.quote-form textarea{
    width:100%;
    padding:12px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    font-size:15px;
    font-family:inherit;
}

.quote-form input:focus,
.quote-form textarea:focus{
    outline:none;
    border-color:#0b5d3b;
}

.quote-form button{
    background:#0b5d3b;
    color:white;
    border:none;
    padding:14px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    width:100%;
}

.quote-form button:hover{
    background:#d4a017;
}

.name-row{
    display:flex;
    gap:15px;
}

.name-row input{
    flex:1;
}
.quote-text{
    text-align:center;
    color:#666;
    margin-bottom:20px;
    font-size:15px;
}

/* ABOUT PAGE */

.about-company{
    display:flex;
    align-items:center;
    gap:60px;
    padding:80px 8%;
}

.about-company-image{
    flex:1;
}

.about-company-image img{
    width:100%;
    max-height:570px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.12);
}

.about-company-content{
    flex:0.9;
}

.about-tag{
    color:#d4a017;
    font-weight:bold;
    font-size:36px;
    line-height:1.2;
    margin:15px 0 25px;
    letter-spacing:2px;
}

.about-company-content h2{
    color:#0b5d3b;
    font-size:36px;
    line-height:1.2;
    margin:15px 0 25px;
}

.about-company-content p{
    color:#555;
    line-height:1.9;
    font-size:18px;
    margin-bottom:20px;
}

.about-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.about-points div{
    background:#f8f8f8;
    padding:15px;
    border-radius:8px;
    font-weight:600;
    color:#0b5d3b;
}

.mission-section{
    padding:20px 8% 80px;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:1800px;
    margin:auto;
}

.mission-card{
    background:#ffffff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    border-top:4px solid #d4a017;
}

.mission-card h3{
    color:#0b5d3b;
    font-size:28px;
    margin-bottom:20px;
}

.mission-card p{
    color:#555;
    line-height:1.8;
    font-size:18px;
    margin-bottom:20px;
}

.why-choose{
    padding:20px 8% 80px;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.choose-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.choose-card:hover{
    transform:translateY(-5px);
}

.choose-card h3{
    color:#0b5d3b;
    margin-bottom:15px;
}

.choose-card p{
    color:#555;
    line-height:1.7;
}

.about-cta{
    background:
        linear-gradient(
           rgba(11,93,59,0.35),
           rgba(11,93,59,0.35)
        ),
        url("../images/footer-cta.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:white;
    text-align:center;

    padding:60px 20px;
}


.about-cta h2{
    font-size:32px;
    margin-bottom:10px;
}

.about-cta p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:15px;
    margin-bottom:15px;
}

.cta-btn{
    display:inline-block;
    background:#d4a017;
    color:white;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.cta-btn:hover{
    opacity:0.9;
}

.contact-banner{
    background:
        linear-gradient(
            rgba(11,93,59,0.65),
            rgba(11,93,59,0.65)
        ),
        url("../images/contact-banner.png");

    background-size:cover;
    background-position:center;

    text-align:center;
    color:white;

    padding:80px 20px;
}

.contact-banner h1{
    font-size:60px;
    margin-bottom:15px;
}

.contact-banner p{
    font-size:24px;
}

.contact-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    padding:80px 5%;
}

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

.info-card h3{
    color:#0b5d3b;
    margin-bottom:15px;
}

.contact-form-section{
    padding:20px 8% 80px;
}

.contact-form{
    max-width:1000px;
    background:#ffffff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:0;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.contact-form button{
    background:#0b5d3b;
    color:white;
    border:none;
    padding:18px;
    border-radius:8px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
}

.contact-form button:hover{
    background:#08452c;
}

.contact-benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:0 8% 80px;
}

.benefit-card{
    background:#ffffff;
    padding:25px;
    text-align:center;
    border-radius:10px;
    font-weight:600;
    color:#0b5d3b;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}
.benefit-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.map-section{
    padding:60px 8%;
    margin-bottom:60px;
}

.map-section iframe{
    max-width:2000px;
    height:250px;
    border:none;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    display:block;
    transition:0.3s;
}

.map-section:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.section-divider{
    height:50px;
    background:#f5f5f5;
}

.info-card a,
.footer-contact a{
    color: inherit;
    text-decoration: none;
}

html,
body{
    overflow-x: hidden;
}

@media (max-width: 768px) {

header .container{
    flex-direction: column;
    gap: 15px;
}

nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.top-bar{
    flex-direction:column;
    gap:8px;
    text-align:center;
}

.hero-buttons{
    display:none;
}

.hero-buttons a{
    width: 90%;
    text-align: center;
}

.hero{
    height: auto;
    min-height: 500px;
    background-position:60% center;
}

.hero-content{
    padding: 30px 20px;
}
.stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    padding:20px 10px;
}

.divider{
    display:none;
}

.product-grid{
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product-card img{
    height:140px;
}

.products .section-title h2{
    font-size:42px;
    line-height:1.2;
}

.section-title span::before,
.section-title span::after{
    width:40px;
    margin:0 8px;
}

.about-why{
    display:block;
    padding:40px 5% 40px;
}

.about-divider{
    display:none;
}

.about-box{
    margin-bottom:80px;
}

.market-grid{
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.footer-logo img{
    max-width:100px;
    width:100%;
    height:auto;
}

.footer-container{
    grid-template-columns:1fr;
    gap:15px;
}

.footer-box{
    text-align:left;
}

.whatsapp-float{
    right:80px !important;
    bottom:15px !important;
}

.whatsapp-float img{
    width:50px;
    height:50px;
}

.footer-logo{
    max-width:200px;
    width:100%;
    height:auto;
}

.about-company{
    flex-direction:column;
    gap:30px;
    padding:40px 5%;
}

.choose-grid{
        grid-template-columns:1fr;
        gap:20px;
}


.spec-row{
    flex-direction:column;
    gap:8px;
    text-align:left;
}

.info-row{
    flex-direction:column;
    gap:30px;
}

.packaging-grid{
    grid-template-columns:1fr;
}

.packaging-benefits ul{
    grid-template-columns:1fr;
}

.spec-row{
    flex-direction:column;
    gap:8px;
}

.contact-info{
    grid-template-columns:1fr;
    gap:20px;
}

.info-card{
    padding:20px;
}

.info-card p,
.info-card a{
    word-break:break-word;
}

.contact-benefits{
    grid-template-columns:1fr;
}

}