
    .service-card {
        position: relative;
        margin-bottom: 30px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        background: #fff;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .card-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 200px;
    }

    .card-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-card:hover .card-image-wrapper img {
        transform: scale(1.1);
    }

    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    }

    .content_box {
        padding: 25px;
        position: relative;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #6e8efb, #a777e3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -50px auto 20px;
        color: #fff;
        font-size: 24px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .content_box h2 {
        font-size: 22px;
        margin-bottom: 15px;
        text-align: center;
    }

    .content_box h2 a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .service-card:hover .content_box h2 a {
        color: #6e8efb;
    }

    .content_box p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
    }

    .service-link {
        display: inline-block;
        color: #6e8efb;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
    }

    .service-link i {
        margin-left: 5px;
        transition: margin-left 0.3s ease;
    }

    .service-link:hover {
        color: #a777e3;
    }

    .service-link:hover i {
        margin-left: 10px;
    }
    
