/* ==================================================
   HOME SERVICES
   NETPROG.CH
================================================== */


/* ==================================================
   SECTION
================================================== */

.home-services{

    padding:110px 0;

    background:#ffffff;

}


/* ==================================================
   HEADING
================================================== */

.home-services .section-heading{

    max-width:860px;

    margin:0 auto 70px;

    text-align:center;

}

.home-services .section-heading p{

    max-width:760px;

    margin:0 auto;

}


/* ==================================================
   GRID
================================================== */

.home-services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:32px;

    margin-top:60px;

}


/* ==================================================
   CARD
================================================== */

.home-service-card{

    position:relative;

    padding:42px;

    background:linear-gradient(180deg,#ffffff 0%,#fcfcfd 100%);

    border:1px solid rgba(15,23,42,.08);

    border-radius:24px;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

    transition:all .35s ease;

    overflow:hidden;

}

.home-service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:70px;

    height:4px;

    background:var(--accent-color);

    transition:.35s ease;

}

.home-service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(213,43,30,.18);

    box-shadow:0 30px 70px rgba(15,23,42,.10);

}

.home-service-card:hover::before{

    width:100%;

}

.home-service-card:hover .home-service-icon{

    color:var(--accent-hover);

    transform:scale(1.08);

}


.home-service-icon{

    transition:.3s ease;

}


/* ==================================================
   HEADER
================================================== */

.home-service-header{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:26px;

}

.home-service-icon{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.6rem;

    color:var(--accent-color);

    flex-shrink:0;

}


/* ==================================================
   CONTENT
================================================== */

.home-service-card h3{

    margin:0;

    font-size:1.6rem;

    line-height:1.25;

}

.home-service-card p{

    margin:0;

    line-height:1.9;

    color:var(--text-light);

}


/* ==================================================
   BUTTON
================================================== */

.home-services-button{

    margin-top:60px;

    text-align:center;

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width:991px){

    .home-services-grid{

        grid-template-columns:1fr;

    }

}


@media (max-width:768px){

    .home-services{

        padding:80px 0;

    }

    .home-services .section-heading{

        margin-bottom:50px;

    }

    .home-services-grid{

        gap:24px;

        margin-top:50px;

    }

    .home-service-card{

        padding:32px;

    }

    .home-service-header{

        gap:14px;

        margin-bottom:22px;

    }

    .home-service-icon{

        width:40px;

        height:40px;

        font-size:1.4rem;

    }

    .home-service-card h3{

        font-size:1.45rem;

    }

    .home-services-button{

        margin-top:50px;

    }

}