/*
OurServicer Area Style
================================*/
.our-service-area {
    background-image: url('/wp-content/uploads/2025/08/why-us-bg.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.our-service-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blackFadeOverlay);
    opacity: 0.8;
    z-index: -1;
}

.our-service-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-color: #ffffff;
    z-index: -1;
}

.our-service-area .default-btn {
    margin: 30px auto 0;
    display: table;
}

.single-services {
    background-color: #ffffff;
    box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.5s;
}

.single-services::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background-image: url('/wp-content/uploads/2025/08/why-us-card-bg.png');
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position-x: right;
    transition: all 0.5s;
}

.single-services::after {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 0;
    height: 0;
    content: "";
    border-top: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #dfdfdf;
    font-size: 20px;
    z-index: -1;
    transform: rotate(225deg);
}

.single-services:hover {
    /*transform: translateY(-5px);*/
}

.single-services:hover::before {
    /*transform: rotate(180deg);*/
    opacity: 0.4;
}

.single-services h3 {
    margin-bottom: 8px;
    position: relative;
    padding-left: 60px;
    display: flex;
    font-size: 24px;
}

.single-services h3 i {
    color: #fff;
    font-weight: normal;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primaryColor);
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.single-services p {
    margin-bottom: 0;
    padding-left: 60px;
    padding-right: 60px;
}

.service-d-img {
    position: relative;
}

.service-d-img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #05125e;
    content: "";
    opacity: 0.5;
}

@media screen and (max-width: 767px) {
    .single-services{
        padding: 1rem;
    }
    .single-services h3{
        font-size: 20px;
    }
}