.right-about-two .span-two {
    background-color: #19a4631a;
    border-radius: 20px;
    color: #19a463;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin: 0px 0px 20px;
    padding: 10px 22px;
}


.right-about-two .btn-contact-now {
    background-color: #17677b;
        border-radius: 30px;
        color: #fff;
        display: inline-block;
        font-family: Inter;
        font-weight: 700;
        line-height: 30px;
        padding: 15px 30px;
}

/*==============================
Service Cards
==============================*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    height: 310px;
    box-shadow: 0px 8px 17px rgba(10, 42, 105, 0.06);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    z-index: 1;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(218deg, rgba(0, 0, 0, 0) 10.18%, #000000 111.68%);
    z-index: 2;
    transform-origin: bottom right;
    transform: rotate(-25.52deg) scale(1.5);
}

.service-card-content {
    position: relative;
    z-index: 3;
    padding: 26px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 39px;
    margin-bottom: 8px;
    color: #ffffff;
}

.service-card .subtitle {
    font-size: 26px;
    color: #81DBEF;
}
.service-card .subtitle.color-tim {
    color: #FEB0D7;
}
.service-card .subtitle.color-chanh {
    color: #CED85B;
}

.service-card .subtitle-white {
    color: white;
}
.fz-24 {
    font-size: 24px !important;
}
.service-card p {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 19px;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 320px;
    }

    .service-card h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .service-card .subtitle,
    .service-card .subtitle-white {
        font-size: 20px;
    }
}