/*----------Services Listing Page Css Start----------*/
.services-listing .service-card {
    background-color: var(--white);
    transition: all 0.4s ease;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--black1);
    /*box-shadow: rgb(0 0 0 / 20%) 0 1px 8px;*/
    border-radius: 10px;
}

/* The Number Styling */
.services-listing .service-number {
    font-family: "Prata", serif;
    font-size: 30px;
    line-height: 1;
    color: var(--russet);
    opacity: 1; /* Subtle background look */
    display: block;
    margin-bottom: 0;
    transition: all 0.4s ease;
}


/* Title Styling */
.services-listing .service-title {
    color: var(--black1);
    margin-bottom: 15px;
    position: relative;
}

/* Description Text */
.services-listing .service-desc {
    font-family: "Jost", sans-serif;
    color: #5a5a5a; /* Slightly lighter than black for readability */
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 25px;
}

/* Button Alignment within Flex container */
.services-listing .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
}

.services-listing .btn {
    margin-top: auto; /* Pushes button to bottom if heights vary */
}

/* Responsive adjustments for mobile padding */
@media screen and (max-width: 768px) {
    .services-listing .service-card {
        padding: 30px 20px;
    }
    .services-listing .service-number {
        font-size: 18px;
    }
}

/*----------Services Listing Page Css End----------*/