/* Custom Scrollbar for Feedback Cards */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Hospital Blue Text & Icons */
.text-hospital-blue,
.dark-blue {
    color: #004b93 !important;
}

/* Medical Specialities Box Uniformity */
#specialities .feature-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

#specialities .feature-box-move-bottom-top {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 3rem;
    /* Matching existing padding */
}

#specialities .feature-box-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#specialities .feature-box-content p {
    flex-grow: 1;
    margin-bottom: 20px;
}

#specialities .view-more-link {
    margin-top: auto;
}

/* Statistics Mobile Stacking (Index & About) */
@media (max-width: 991px) {
    .stat-item-flex {
        flex-direction: column !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        padding-bottom: 40px !important;
        /* Space between items */
    }

    .stat-item-flex .stat-counter-number {
        margin-right: 0 !important;
        margin-bottom: 15px !important;
        font-size: 55px !important;
        line-height: 1 !important;
        display: block !important;
    }

    .stat-item-text {
        text-align: center !important;
        width: 100% !important;
    }

    .stat-item-text span {
        display: block !important;
        margin: 0 auto !important;
        line-height: 1.4 !important;
    }

    .stat-item-text .text-small {
        font-size: 14px !important;
        opacity: 0.8;
    }
}

@media (max-width: 1199px) {
    .lg-padding-4-half-rem-all {
        padding: 2rem;
    }
}



