.landscaping-services{
    margin-top: 45px;
    padding:60px 9%;
    background:#f9f9f9;
}

.landscaping-services .heading{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.landscaping-services .heading span{
    color:#2e8b57;
}

.intro-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:70px;
}

.intro-text p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:20px;
}

.services-list{
    list-style:none;
}

.services-list li{
    font-size:17px;
    margin:10px 0;
}

.services-list i{
    color:#2e8b57;
    margin-right:10px;
}

.intro-image img{
    width:100%;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.gallery-title{
    text-align:center;
    margin-bottom:30px;
}

.gallery-title h2{
    font-size:28px;
    margin-bottom:10px;
}

.gallery-title p {
    font-size: 1.7rem;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-item{
    height:220px;
    overflow:hidden;
    border-radius:10px;
    background:#ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.3s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.placeholder{
    border:2px dashed #bbb;
    color:#777;
    font-size:18px;
}

@media (max-width:900px){

    .intro-container{
        grid-template-columns:1fr;
    }

}