.services {
    background: var(--Neutral-200, #F7F7F7);
    padding-top: 50px;
    padding-bottom: 35px;
}

.service-card {
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    border-radius: 20px;
    border: 1px solid var(--Neutral-300, #F2F2F2);
    background: var(--Neutral-White, #FFF);
    box-shadow: 0px 25px 50px -12px rgba(255, 255, 255, 0.25), 0px 0px 15px 0px rgba(255, 255, 255, 0.07);
    transition: .3s all;
}
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--Neutral-300, #F2F2F2);
    background: var(--Neutral-White, #FFF);
    /* Shadow/Light/XXL */
    box-shadow: 0px 25px 50px -12px rgba(255, 255, 255, 0.25), 0px 0px 15px 0px rgba(255, 255, 255, 0.07);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
.main-service {
    background-image: url("/assets/MainPages/Services.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}
    .service-card:hover {
        border: 2px solid #0056b3;
    }

        .service-card:hover a {
            background-color: #0056b3 !important;
            color: #fff !important;
        }

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    padding: 15px;
}

    .service-content h6 {
        color: #0056b3;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        padding-top: 10px;
        padding-bottom: 3px;
    }

    .service-content p {
        color: var(--Neutral-600, #999);
        font-size: calc(0.1vw + 0.85rem);
        font-style: normal;
        font-weight: 400;
        line-height: 147%;
        padding-bottom: 8px;
    }

.service-button {
    background-color: #fff;
    color: #0056b3;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 12px;
    border: 1px solid var(--Primary-500, #167AD8);
    text-decoration: none;
}

    .service-button:hover {
        background-color: #0056b3;
    }

.services-title h3 {
    color: var(--Primary-500, #167AD8);
    text-align: center;
    font-size: calc(2vw + 1rem);
    font-style: normal;
    font-weight: 600;
    padding-bottom: 16px;
}

.services-title p {
    color: var(--Neutral-600, #999);
    text-align: center;
    font-size: calc(0.4vw + 0.85rem);
    font-style: normal;
    font-weight: 500;
    padding-bottom: 23px;
}

/* Media Queries */
@media screen and (max-width: 760px) {
    .services {
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .services {
        padding-top: 15px;
        padding-bottom: 10px;
    }
}

@media screen and (min-width: 320px) {
    .services-title h3 {
        padding-bottom: 0px
    }

    .services-title p {
        padding-bottom: 0px
    }
}

@media screen and (min-width: 992px) {
    /* Add specific styles for tablets (992px and up) if needed */
}

@media screen and (min-width: 1200px) {
    /* Add specific styles for desktops (1200px and up) if needed */
}
