
.services-section{
    padding:100px 7%;
    background:#050913;
    position:relative;
    overflow:hidden;
}

.services-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,229,255,.08);
    filter:blur(150px);
    top:-150px;
    right:-150px;
}

.services-header{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:70px;
}

.service-tag{
    display:inline-block;
    padding:10px 20px;
    border:1px solid rgba(0,229,255,.25);
    border-radius:50px;
    color:#00e5ff;
    font-size:14px;
    margin-bottom:20px;
    background:rgba(0,229,255,.05);
}

.services-header h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
    font-weight:800;
}

.services-header h2 span{
    color:#00e5ff;
}

.services-header p{
    color:#b8c4d4;
    line-height:1.8;
    font-size:17px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.service-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:20px 20px;
    backdrop-filter:blur(12px);
    transition:.4s;
    position:relative;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#00e5ff;
    box-shadow:0 20px 40px rgba(0,229,255,.15);
}

 
}

.service-card h3{
    color:#fff;
    font-size:10px;
    margin-bottom:5px;
}

 

@media(max-width:768px){

    .services-section{
        padding:70px 5%;
    }

    .services-header h2{
        font-size:34px;
    }

    .service-card{
        padding:28px 22px;
    }

    .service-card h3{
        font-size:20px;
    }
}
