/*
=========================================
SERVICES
=========================================
*/

.service-hero{
    padding:80px 0 60px!important;
    border-bottom:1px solid rgba(255,255,255,.08);
    text-align:center;
}

.service-hero .container{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.service-icon{
    width:110px;
    height:110px;
    margin:0 auto 40px;
    border-radius:24px;
    background:rgba(37,99,235,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.service-icon:hover{
    transform:translateY(-6px);
    background:#2563EB;
}

.service-icon:hover i{
    color:#fff;
}

.service-icon i{
    font-size:50px;
    color:#2563EB;
    transition:.3s;
}

h1.service-title{
    font-size:3.6rem;
    font-weight:700;
    margin:0 0 25px;
    text-align:center;
    width:100%;
}

.service-short-description{
    max-width:760px;
    margin:0 auto;
    text-align:center;
    font-size:1.25rem;
    line-height:1.9;
    color:var(--text-secondary);
}

.service-actions{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.service-content-section{
    padding:90px 0;
}

.service-content{
    max-width:900px;
    margin:auto;
}

.service-content p{
    margin-bottom:1.7rem;
    line-height:1.9;
}

.service-content h2{
    margin-top:3rem;
    margin-bottom:1rem;
    font-size:2rem;
}

.service-content h3{
    margin-top:2.5rem;
    margin-bottom:1rem;
    font-size:1.5rem;
}

.service-content ul,
.service-content ol{
    margin:1.5rem 0;
    padding-left:28px;
}

.service-content li{
    margin-bottom:12px;
}

.service-content img{
    display:block;
    margin:50px auto;
    max-width:100%;
    border-radius:16px;
}

.service-content blockquote{
    margin:40px 0;
    padding:25px 30px;
    border-left:4px solid #2563EB;
    background:#111827;
    border-radius:10px;
}

.service-content code{
    background:#111827;
    padding:2px 8px;
    border-radius:4px;
}

.related-services{
    padding:100px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.related-services h2{
    text-align:center;
    margin-bottom:60px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.related-card{
    background:#111827;
    border-radius:20px;
    padding:35px;
    transition:.3s;
}

.related-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.related-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(37,99,235,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.related-icon i{
    color:#2563EB;
    font-size:30px;
}

.related-card h3{
    margin-bottom:15px;
}

.related-card h3 a{
    color:#fff;
    text-decoration:none;
}

.related-card h3 a:hover{
    color:#2563EB;
}

.related-card p{
    color:var(--text-secondary);
    line-height:1.8;
}

@media(max-width:991px){

    .service-header{
        padding:90px 0 70px;
    }
    
    .service-header h1{
        font-size:2.8rem;
    }
    
    .service-short-description{
        font-size:1.1rem;
    }
    
    .related-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .service-header{
        padding:70px 0 60px;
    }
    
    .service-icon{
        width:90px;
        height:90px;
    }
    
    .service-icon i{
        font-size:42px;
    }
    
    .service-header h1{
        font-size:2.2rem;
    }
    
    .service-short-description{
        font-size:1rem;
    }
    
    .service-actions{
        flex-direction:column;
        align-items:center;
    }
    
    .service-actions .btn{
        width:220px;
    }
    
    .service-content-section{
        padding:70px 0;
    }
    
    .related-services{
        padding:70px 0;
    }

}