.services-page {

    background: #08111f;
    padding: 140px 0 90px;

}

.container {

    width: 90%;
    max-width: 1200px;
    margin: auto;

}

.page-title {

    text-align: center;
    margin-bottom: 60px;

}

.page-title h5 {

    color: #28a9ff;
    letter-spacing: 2px;
    margin-bottom: 15px;

}

.page-title h1 {

    color: #fff;
    font-size: 50px;
    margin-bottom: 20px;

}

.page-title p {

    color: #cfcfcf;
    max-width: 700px;
    margin: auto;
    line-height: 30px;

}

.services-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.service-card {

    background: #111c2e;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: .3s;

}

.service-card:hover {

    transform: translateY(-10px);

}

.service-card img {

    width: 70px;
    margin-bottom: 20px;

}

.service-card h3 {

    color: #fff;
    margin-bottom: 15px;

}

.service-card p {

    color: #cfcfcf;
    line-height: 28px;

}

@media(max-width:992px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .services-grid {

        grid-template-columns: 1fr;

    }

    .page-title h1 {

        font-size: 35px;

    }

}