.services-section{
    padding:60px 10%;
    text-align:center;
}

.services-section h2{
    font-size:36px;
    margin-bottom:10px;
    color:#222;
}

.services-section p{
    color:#555;
    margin-bottom:40px;
}

.services-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.service-content{
    padding:20px;
}

.service-content h3{
    margin:0;
    color:#111;
}

.service-content p{
    font-size:14px;
    color:#666;
    margin:15px 0;
}

.service-content button{
    background:#0066ff;
    border:none;
    color:white;
    padding:10px 18px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}


.service-content a{
    background:#0066ff;
    border:none;
    color:white;
    padding:10px 18px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}


.service-content button:hover{
    background:#004ecc;
}

/* Responsive */
@media(max-width:768px){
    .services-section{
        padding:40px 5%;
    }
}