
    .service-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    .service-card img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .service-card:hover img {
        transform: scale(1.1);
    }

    .overlay {
        top: 0;
        left: 0;
        z-index: 1;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 1) 100%);
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .service-card:hover .overlay {
        opacity: 0 !important;
    }

    .service-title {
        position: absolute;
        bottom: 0;
        background: #00081400 !important;
        color: #fff;
        width: 100%;
        padding: 0.75rem;
        font-weight: 600;
        text-align: center;
        z-index: 2;
    }

    .service-description {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 41, 102, 0.85);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 1rem;
        text-align: center;
        z-index: 3;
    }

    .service-card:hover .service-description {
        opacity: 1;
    }

    .service-description a {
        color: #0d6efd;
        text-decoration: none;
    }

    .service-description a:hover {
        text-decoration: underline;
    }

    .service-title {
        position: absolute;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);/ color: #fff;
        width: 100%;
        padding: 0.75rem;
        font-weight: 900;
        text-align: center;
        z-index: 1;
    }

    .service-description {
        position: absolute;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #2125298c;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 1rem;
        text-align: center;
        padding-top: 40px;
    }

    .service-card:hover .service-description {
        opacity: 1;
    }

    .service-card:hover .service-title {
        opacity: 0;
    }
