

.ngr-hero{
    padding:100px 0;
    background:linear-gradient(135deg,#1b4332 0%,#2d6a4f 100%);
    position:relative;
    overflow:hidden;
}

.ngr-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-220px;
    right:-120px;
}

.ngr-hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-150px;
    left:-120px;
}

.ngr-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.ngr-title{
    font-size:4rem;
    line-height:1.15;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.ngr-title span{
    display:block;
    color:#95d5b2;
}

.ngr-description{
    color:#e7f5ec;
    font-size:1.1rem;
    line-height:1.9;
    margin-bottom:35px;
    max-width:700px;
}

.ngr-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.ngr-btn-primary{
    display:inline-block;
    padding:14px 32px;
    background:#95d5b2;
    color:#1b4332;
    font-weight:700;
    text-decoration:none;
    border-radius:10px;
    transition:.3s ease;
}

.ngr-btn-primary:hover{
    transform:translateY(-3px);
    color:#1b4332;
    background:#b7e4c7;
}

.ngr-btn-secondary{
    display:inline-block;
    padding:14px 32px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s ease;
}

.ngr-btn-secondary:hover{
    background:#fff;
    color:#1b4332;
}

.ngr-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    padding:40px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.2);
}

.ngr-card h3{
    color:#fff;
    font-size:2rem;
    font-weight:700;
    margin-bottom:25px;
}

.ngr-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.ngr-card ul li{
    color:#eef8f1;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.ngr-card ul li:last-child{
    border-bottom:none;
}

.ngr-card ul li::before{
    content:"✓";
    color:#95d5b2;
    font-weight:bold;
    margin-right:10px;
}

.ngr-stat{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:30px;
    text-align:center;
    margin-top:25px;
}

.ngr-stat h3{
    color:#95d5b2;
    font-size:2.3rem;
    font-weight:800;
    margin-bottom:8px;
}

.ngr-stat p{
    margin:0;
    color:#eef8f1;
}

/* SERVICES */

.ngr-services{
    padding:100px 0;
    background:#f8faf9;
}

.ngr-services h2{
    font-size:3rem;
    font-weight:800;
    color:#1b4332;
}

.ngr-services p{
    color:#5f6d65;
}

.ngr-service-box{
    height:100%;
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s ease;
}

.ngr-service-box:hover{
    transform:translateY(-10px);
}

.ngr-service-box i{
    font-size:50px;
    color:#2d6a4f;
    margin-bottom:20px;
}

.ngr-service-box h4{
    font-size:1.35rem;
    font-weight:700;
    margin-bottom:15px;
    color:#1b4332;
}

.ngr-service-box p{
    line-height:1.8;
    margin:0;
}

/* INDUSTRIES */

.ngr-industries{
    padding:100px 0;
    background:#fff;
}

.ngr-industries h2{
    font-size:3rem;
    font-weight:800;
    color:#1b4332;
}

.ngr-industry{
    height:100%;
    padding:40px 20px;
    background:#f8faf9;
    border-radius:20px;
    text-align:center;
    transition:.3s ease;
    border:1px solid #edf1ef;
}

.ngr-industry:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.ngr-industry i{
    font-size:48px;
    color:#2d6a4f;
    margin-bottom:15px;
}

.ngr-industry h5{
    margin:0;
    font-size:1.15rem;
    font-weight:700;
    color:#1b4332;
}

/* CTA */

.ngr-cta{
    padding:100px 0;
    text-align:center;
    background:linear-gradient(135deg,#2d6a4f,#1b4332);
}

.ngr-cta h2{
    color:#fff;
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
}

.ngr-cta p{
    max-width:750px;
    margin:0 auto 35px;
    color:#eaf7ef;
    line-height:1.9;
    font-size:1.1rem;
}

/* RESPONSIVE */

@media(max-width:991px){

    .ngr-title{
        font-size:3rem;
    }

    .ngr-card{
        margin-top:30px;
    }

    .ngr-services h2,
    .ngr-industries h2,
    .ngr-cta h2{
        font-size:2.4rem;
    }
}

@media(max-width:768px){

    .ngr-hero{
        padding:70px 0;
        text-align:center;
    }

    .ngr-title{
        font-size:2.4rem;
    }

    .ngr-description{
        font-size:1rem;
    }

    .ngr-buttons{
        justify-content:center;
    }

    .ngr-services,
    .ngr-industries,
    .ngr-cta{
        padding:70px 0;
    }

    .ngr-services h2,
    .ngr-industries h2,
    .ngr-cta h2{
        font-size:2rem;
    }

    .ngr-card{
        padding:30px;
    }
}

@media(max-width:480px){

    .ngr-title{
        font-size:2rem;
    }

    .ngr-btn-primary,
    .ngr-btn-secondary{
        width:100%;
        text-align:center;
    }

    .ngr-services h2,
    .ngr-industries h2,
    .ngr-cta h2{
        font-size:1.8rem;
    }

    .ngr-stat h3{
        font-size:1.8rem;
    }
}
```
