/* ABOUT SECTION */
.about-section{
    padding:80px 0;
    background:;
}

.about-wrapper{
    display:flex;
    align-items:flex-start;
    gap:50px;
}

.about-image{
    flex:0 0 40%;
    position:sticky;
    top:100px;
}

.about-image img{
    width:100%;
    border-radius:20px;
    display:block;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-content{
    flex:0 0 60%;
}

.about-tag{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:42px;
    font-weight:700;
    color:#1b5e20;
    margin-bottom:25px;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:#444;
    margin-bottom:18px;
}

.variety-box{
    background:#fff;
    padding:20px;
    border-left:5px solid #2e7d32;
    border-radius:10px;
    margin:25px 0;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.variety-box h5{
    color:#1b5e20;
    font-weight:700;
    margin-bottom:12px;
}

.variety-box ul{
    margin:0;
    padding-left:20px;
}

.variety-box li{
    margin-bottom:8px;
    color:#555;
}

.biotech-title{
    font-size:30px;
    color:#1b5e20;
    font-weight:700;
    margin-top:40px;
    margin-bottom:20px;
}

.tagline{
    background:#2e7d32;
    color:#fff;
    text-align:center;
    padding:18px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    margin-top:30px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .about-wrapper{
        flex-direction:column;
    }

    .about-image,
    .about-content{
        flex:0 0 100%;
        width:100%;
    }

    .about-image{
        position:relative;
        top:0;
    }

    .about-content h2{
        font-size:32px;
    }
}