*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

/* SECTION */

.services-section{
    position:relative;
    padding:90px 0;
    overflow:hidden;

    background:black;
    
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* heading */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:#ff8c2b;
    font-size:42px;
    font-family:'Oswald',sans-serif;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    line-height:1;
    text-shadow:
    0 4px 0 rgba(0,0,0,.3),
    0 8px 20px rgba(0,0,0,.5);
}

.section-title p{
    max-width: 850px;
    margin: 15px auto 0;
    
    color: rgba(255,255,255,0.85);
    
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    
    text-align: center;
    
    letter-spacing: 0.5px;
}

/* container */

.services-container{
    width:95%;
    max-width:1700px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

/* card */

.service-card{
    background:#f2f2f2;
    overflow:hidden;

    border:8px solid rgba(255,255,255,.95);

    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.service-image{
    width:100%;
    height:280px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

/* content */

.service-content{
    padding:25px;
}

.service-content h3{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.service-content p{
    color:#333;
    font-size:18px;
    line-height:1.7;
    margin-bottom:25px;
}

/* button */

.read-btn{
    display:inline-block;

    background:#f12d00;
    color:#fff;

    text-decoration:none;

    padding:16px 32px;

    font-family:'Oswald',sans-serif;
    font-size:22px;
    font-weight:600;

    text-transform:uppercase;
    letter-spacing:1px;

    border-radius:8px;

    transition:.3s;
}

.read-btn:hover{
    background:#d82200;
    transform:translateY(-3px);
}

/* Tablet */

@media(max-width:1200px){

    .services-container{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:60px;
    }

}

/* Mobile */

@media(max-width:768px){

    .services-section{
        padding:70px 0;
    }

    .services-container{
        grid-template-columns:1fr;
        width:92%;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:42px;
        letter-spacing:2px;
    }

    .service-image{
        height:240px;
    }

    .service-content h3{
        font-size:20px;
    }

    .service-content p{
        font-size:16px;
    }

    .read-btn{
        font-size:20px;
        padding:14px 26px;
    }

}
@media (max-width: 768px){

    .section-title p{
        max-width: 95%;
        font-size: 16px;
        line-height: 1.7;
        padding: 0 10px;
    }

}