/*==========================
    SERVICES HERO
===========================*/

.services-hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
    linear-gradient(
        90deg,
        rgba(5,15,35,.92) 0%,
        rgba(5,15,35,.82) 35%,
        rgba(5,15,35,.45) 65%,
        rgba(5,15,35,.15) 100%
    ),
    url("../images/services/services-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:30px;
    margin-bottom:60px;
}

.hero-content{
    width:100%;
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:90px 50px;
    position:relative;
    z-index:2;
}

.hero-left{
    flex:1;
    max-width:650px;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-weight:600;
    backdrop-filter:blur(15px);
    margin-bottom:30px;
}

.hero-tag i{
    color:#3b82f6;
}

.hero-left h1{
    font-size:72px;
    line-height:1.05;
    color:#fff;
    margin-bottom:25px;
    font-weight:800;
}

.hero-left h1 span{
    color:#3b82f6;
}

.hero-left p{
    color:#d8e0ee;
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.btn-primary,
.btn-outline{
    padding:18px 34px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#2563eb;
    color:#fff;
}

.btn-primary:hover{
    background:#1d4ed8;
}

.btn-outline{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#2563eb;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.feature-box i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(37,99,235,.18);
    color:#3b82f6;
    font-size:22px;
}

.feature-box h4{
    color:#fff;
    margin:0 0 8px;
}

.feature-box p{
    margin:0;
    color:#c8d3e8;
    font-size:15px;
    line-height:1.6;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-right img{
    width:100%;
    max-width:620px;
    border-radius:25px;
    box-shadow:0 35px 80px rgba(0,0,0,.45);
}

/*==========================
      RESPONSIVE
===========================*/

@media(max-width:991px){

.hero-content{
    flex-direction:column;
    text-align:center;
    padding:80px 30px;
}

.hero-left{
    max-width:100%;
}

.hero-left h1{
    font-size:52px;
}

.hero-buttons{
    justify-content:center;
}

.hero-features{
    grid-template-columns:1fr;
}

.hero-right{
    margin-top:40px;
}

}

@media(max-width:768px){

.services-hero{
    min-height:auto;
}

.hero-left h1{
    font-size:40px;
}

.hero-left p{
    font-size:17px;
}

.hero-content{
    padding:60px 20px;
}

.hero-right img{
    max-width:100%;
}

}