:root{
    --primary:#006B4F;
    --secondary:#8BC34A;
    --dark:#0E2A22;
    --light:#F7FAF9;
}

*{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:#333;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--dark);
}

.small-title{
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.card-hover{
    transition:.35s;
    border:none;
    border-radius:18px;
}

.card-hover:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.icon-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#E8F5EF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:auto;
}

.counter{
    font-size:44px;
    font-weight:700;
    color:var(--primary);
}
/* ===== QUALITY SECTION ===== */

/* QUALITY COMMITMENT */

.quality-section{
    background:#F8FBFA;
}

.quality-tag{
    color:#0B8A5A;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.quality-heading{
    font-size:46px;
    font-weight:700;
    color:#15352C;
    line-height:1.2;
}

.quality-para{
    color:#647067;
    font-size:17px;
    line-height:1.9;
}

.quality-section img{
    width:100%;
    height:520px;
    object-fit:cover;
}

/* ===========================
   LARANELL NETWORK
=========================== */

.network-section{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:linear-gradient(180deg,#ffffff,#F4FBF8);
}

.network-bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.25;
}

.network-bg-circle.one{
    width:260px;
    height:260px;
    background:#2ecc71;
    top:-60px;
    left:-60px;
}

.network-bg-circle.two{
    width:320px;
    height:320px;
    background:#16a085;
    bottom:-120px;
    right:-100px;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:auto auto 70px;
}

.section-heading span{
    color:#0B8A5A;
    font-weight:700;
    letter-spacing:3px;
    font-size:13px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    color:#15352C;
    margin:18px 0;
}

.section-heading p{
    color:#647067;
    line-height:1.9;
    font-size:17px;
}

.network-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.network-card{
    background:rgba(255,255,255,.65);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.5);
    border-radius:24px;
    overflow:hidden;
    transition:.45s ease;
    transform-style:preserve-3d;
    cursor:pointer;
    box-shadow:0 20px 40px rgba(0,0,0,.05);
}

.network-card:hover{
    transform:translateY(-12px);
    box-shadow:0 35px 60px rgba(0,0,0,.12);
}

.network-image{
    overflow:hidden;
}

.network-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:transform .8s ease;
}

.network-card:hover img{
    transform:scale(1.08);
}

.network-content{
    padding:26px;
}

.network-content h3{
    color:#15352C;
    font-weight:700;
    margin-bottom:10px;
}

.network-content p{
    color:#647067;
    line-height:1.7;
    font-size:15px;
}

/* Reveal Animation */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s cubic-bezier(.2,.8,.2,1);
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}