/* service card section */
.card-wrapper{
    display: flex;
    margin-bottom: 10%;
    margin-top: 2%;
}

.service-card {
    display: flex;
    margin-right: 20px;
    /* Adjust the margin value to control the space between service cards */
    background-color: rgb(16,25,32);
    border-radius: 15px;
    padding: 2px;
    max-width: 60%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.pricing-table{
    display: flex;
    width: fit-content;
}
.wrapper{
    height: fit-content;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    background-color: rgb(16,25,32);
    border-radius: 15px;
    margin-right: 10px;
    color: white;
    width: fit-content;
}
.wrapper h2{
    color: white;
}

.service-card img {
    max-width: 280px;
    min-width: 280px;
    max-height: 200px;
    filter: brightness(1.2);
    /* Adjust brightness */
    filter: contrast(1.2);
    /* Adjust contrast */
    filter: saturate(1.2);
    /* Adjust saturation */
    border-radius: 15px;
    margin: 10px 15px 10px 5px;
    /* bottom right top left */
    justify-content: center;
    /* Center horizontally */
    pointer-events: none;
    margin: 0 20px 0 20px;

}

/* Setting the styles for the pricing box */
.pricing-box {
    display: flex;
    padding: 10px;
    right: 0;
    margin-left: auto;
    display: table;
}

.price-marker {
    text-align: center;
    border-radius: 5px;
    background-color: rgb(1, 167, 3);
    /* Red marker background color */
    color: white;
    /* White text color */
    width: 40px;
    /* Marker width */
    height: 40px;
    /* Marker height */
    display: flex;
    align-items: center;
    /* Align in height */
    justify-content: center;
    /* Align in width */
    margin: 5px;
    padding: 2px;
}
.bottom-marker{
    font-weight: bold;
    color: rgb(16,25,32);
    background-color: rgb(255,231,21);
}


.seemorebtn {
    background-color: rgb(5, 78, 134);


    border-radius: 5px;
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
}

.seemorebtn:hover {
    text-decoration: underline;
    transition: 0.3s;
    font-size: 14px;
}

.service-details {
    color: white;
    font-size: 14px;
}

.service-details p {
    font-size: 14px;
}

.service-image {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}


@media(max-width: 900px){
    .service-card{
        display: block;
        max-width: 100%;
        padding: 20px 15px 15px 15px;
    }
    .service-card a{
        padding: 0;
        margin-left: -10px;
    }
}

.copyrightlogos{
    position: relative;
}