.hydroponic{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(255,255,255,.93),rgba(255,255,255,.93)),
    url(images/pattern.png);
    background-size:cover;
    padding:60px 0;
    overflow:hidden;
}

.hydroponic .container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 40px;
}

.hydro-header{
    margin-bottom:25px;
}

.hydro-header span{
    display:block;
    color:#5d78d4;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.hydro-header h2{
    color:#1743a6;
    font-size:50px;
    line-height:1;
    font-weight:800;
    letter-spacing:2px;
}

.hydro-grid{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:45px;
    align-items:start;
}

.hydro-left{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.image-large,
.image-small{
    width:100%;
    height:210px;
    /* border-radius:24px; */
    overflow:hidden;
}

.image-large img,
.image-small img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:15px;
    margin-top:5px;
}

.product-row img{
    width:30%;
    object-fit:contain;
}

.description{
    color:#222;
    font-size:16px;
    line-height:1.75;
}

.description p{
    margin-bottom:18px;
}

.description strong{
    font-weight:700;
}

.stats{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.stat-item{
    display:grid;
    grid-template-columns:70px 1fr;
    align-items:center;
    column-gap:22px;
}

.icon{
    width:70px;
    height:70px;
    border:2px solid #4f69d9;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#3455d5;
    font-size:30px;
    margin:auto;
}

.text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.text span{
    display:block;
    color:#666;
    font-size:14px;
    line-height:1.3;
}

.text h4{
    color:#111;
    font-size:20px;
    line-height:1.2;
    margin-top:4px;
    font-weight:700;
}

@media (max-width:1200px){

    .hydroponic{
        min-height:auto;
        padding:60px 0;
        overflow:visible;
    }

    .hydroponic .container{
        width:100%;
        max-width:none;
        padding:0 60px;
    }

    .hydro-header h2{
        font-size:50px;
    }

    .hydro-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .image-large{
        height:260px;
    }

    .image-small{
        display:none;
    }

    .product-row{
        justify-content:center;
        gap:20px;
    }

    .product-row img{
        width:28%;
        max-width:120px;
    }

}

@media (max-width:991px){

    .hydroponic{
        min-height:auto;
        padding:60px 0;
    }

    .hydroponic .container{
        padding:0 40px;
    }

    .hydro-header{
        text-align:center;
    }

    .hydro-header h2{
        font-size:42px;
    }

    .description{
        text-align:justify;
        font-size:15px;
    }

    .image-large{
        height:240px;
    }

    .stats{
        margin-top:25px;
        gap:20px;
    }

    .stat-item{
        grid-template-columns:60px 1fr;
        column-gap:18px;
    }

    .icon{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .text h4{
        font-size:18px;
    }

}

@media (max-width:768px){

    .hydroponic{
        padding:50px 0;
    }

    .hydroponic .container{
        padding:0 24px;
    }

    .hydro-header h2{
        font-size:34px;
    }

    .image-large{
        height:210px;
        /* border-radius:18px; */
    }

    .product-row{
        gap:12px;
    }

    .product-row img{
        width:30%;
        max-width:95px;
    }

    .description{
        font-size:14px;
        line-height:1.75;
    }

    .stat-item{
        grid-template-columns:55px 1fr;
        column-gap:14px;
    }

    .icon{
        width:52px;
        height:52px;
        font-size:20px;
    }

    .text span{
        font-size:12px;
    }

    .text h4{
        font-size:17px;
    }

}

@media (max-width:480px){

    .hydroponic{
        padding:40px 0;
    }

    .hydroponic .container{
        padding:0 18px;
    }

    .hydro-header{
        margin-bottom:20px;
    }

    .hydro-header h2{
        font-size:28px;
        line-height:1.05;
    }

    .image-large{
        height:190px;
    }

    .product-row{
        gap:10px;
    }

    .product-row img{
        width:31%;
        max-width:80px;
    }

    .description{
        font-size:14px;
        line-height:1.7;
    }

    .stats{
        margin-top:18px;
        gap:16px;
    }

    .stat-item{
        grid-template-columns:48px 1fr;
        column-gap:12px;
    }

    .icon{
        width:46px;
        height:46px;
        font-size:18px;
    }

    .text span{
        font-size:11px;
    }

    .text h4{
        font-size:15px;
        margin-top:2px;
    }

}