.ground_content_one {
	width:100%;
	height:50px;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#faf8f3;
    color:#333;
    overflow-x:hidden;
}

/* Hero Section */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 8%;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('../images/ground-net1.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero-content{
    max-width:750px;
    color:#fff;
    animation:fadeUp 1.2s ease;
}

.hero h1{
    font-size:4rem;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero span{
    color:#f6c23e;
}

.hero p{
    font-size:1.1rem;
    margin-bottom:30px;
    line-height:1.8;
}

.btn{
    display:inline-block;
    background:#f6c23e;
    color:#000;
    padding:15px 35px;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(246,194,62,.4);
}

/* Sections */

section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    font-size:2.8rem;
    margin-bottom:15px;
    color:#7a4c00;
}

.subtitle{
    text-align:center;
    max-width:800px;
    margin:auto;
    color:#666;
    margin-bottom:60px;
}

/* Features */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.feature-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card h3{
    color:#7a4c00;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}

/* About */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.about-content h2{
    font-size:2.5rem;
    margin-bottom:20px;
    color:#7a4c00;
}

.about-content p{
    margin-bottom:15px;
    line-height:1.8;
    color:#555;
}

/* Benefits */

.benefits{
    background:#fff;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.benefit{
    background:linear-gradient(135deg,#fff9ea,#fff);
    padding:30px;
    border-radius:20px;
    border:1px solid #f3e3b0;
}

.benefit h4{
    color:#7a4c00;
    margin-bottom:10px;
}

/* Stats */

.stats{
    background:#7a4c00;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.stat h2{
    font-size:3rem;
    color:#f6c23e;
}

.stat p{
    margin-top:10px;
}

/* Packaging */

.packaging{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    justify-content:center;
}

.pack{
    background:#fff;
    padding:30px;
    width:260px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.pack h3{
    color:#7a4c00;
}

/* CTA */

.cta{
    background:linear-gradient(135deg,#7a4c00,#b67d0f);
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:3rem;
    margin-bottom:20px;
}

.cta p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* Footer */


.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:900px){
    .about{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.8rem;
    }
}