

/*.slide-container {*/
/*    max-width: 1120px;*/
/*    width: 100%;*/
/*    padding: 40px 0;*/
/*}*/

/*.slide-content { */
/*    margin: 0 40px;*/
/*    overflow: hidden;*/
/*    border-radius: 25px;*/
/*}*/

.card-system {
    /* width: 320px; */
    border-radius: 25px !important;
    background-color: #FFFFFF !important;
    
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
}

.image-content, .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 13px;
}

    .image-content { 
        row-gap: 5px; 
        position: relative;
        padding: 25px 0;
    }

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #008b8b;
    border-radius: 25px 25px 0 25px;
    /*overflow: hidden !important;*/
}

    .overlay::before, .overlay::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: -40px;
        height: 40px;
        width: 40px;
        background-color: #008b8b;
    }

        .overlay::after {
            border-radius: 0 25px 0 0;
            background-color: #FFFFFF;
        }

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFFFFF;
    padding: 3px;
}

    .card-image .card-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #008b8b;
    }

.name {
   font-size: 24px;
    font-weight: 500;
    color: #0f8f3e;
    padding-top: 8px;
}

.description-d {
    font-size: 17px !important;
    color: #707070;
    text-align: center;
}

.button {
    border: none;
    font-size: 16px;
    color: #FFFFFF;
    padding: 8px 16px;
    background-color: #008b8b;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all .3s ease;
}

    .button:hover { background: #027676; }

.swiper-navBtn {
    color: #027676 !important;
    transition: all .3s ease;
}

    .swiper-navBtn:hover { color: #008b8b !important; }

    .swiper-navBtn::before, .swiper-navBtn::after { font-size: 24px !important; }

.swiper-button-next { right: 0 !important; }
.swiper-button-prev { left: 0 !important; }

.swiper-pagination-bullet { background-color: #027676 !important; opacity: 1 !important; }
    .swiper-pagination-bullet-active { background-color: #008b8b !important; }

@media screen and (max-width: 768px) {
    .slide-content { margin: 0 10px; }
    .swiper-navBtn { display: none !important; }
}


/* Common styles for both buttons */

.swiper {
  position: relative !important;
}

.swiper-navBtn {
    position: absolute !important;
    top: 10px !important; /* Adjust vertical spacing */
    background-color: #ffffff !important;
    color: #007bff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    z-index: 10;
    display: flex;
    margin-top: 0px !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);*/
}

/* Positioning them side-by-side at top-left */
.swiper-button-prev.swiper-navBtn {
     left: 14px !important;
}

.swiper-button-next.swiper-navBtn {
     left: 65px !important; /* 35px width + 10px gap */
}