
/* Breadcrumb Section Styles ==========================================================================================================*/
.breadcrumb-section {
    position: relative;
    background-image: url('https://leedshrgroup.com/pro.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

    .breadcrumb-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

.breadcrumb-nav {
    font-size: 0.95rem;
}

    .breadcrumb-nav a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }

    .breadcrumb-nav span {
        margin: 0 5px;
    }

/* Breadcrum Responsive Styles */
@media (min-width: 576px) {
    .breadcrumb-section {
        height: 150px;
    }

    .breadcrumb-content h1 {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-content h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .breadcrumb-section {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .breadcrumb-content h1 {
        font-size: 3.5rem;
    }
}
/*client section----------================================================================================================================*/
.clients-section {
    padding: 50px 20px;
    background-color: #dff1fb52;
}

.clients-heading {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #36949e;
}

    .clients-heading span {
        color: #36949e;
    }

.client-grid {
    display: grid;
    /*    grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));*/
    grid-template-columns: repeat(4, 1fr);
/*    grid-template-rows: repeat(2, auto);*/
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #dff1fb52;
}

/*.client-card {
    border-radius: 20px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height:80vh;
    overflow-y:auto;
}*/
.client-card {
/*    border-radius: 20px;*/
    padding: 20px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
}

    /* Scrollbar styling (WebKit browsers only) */
    .client-card::-webkit-scrollbar {
        width: 6px; /* Width of the scrollbar */
    }

    .client-card::-webkit-scrollbar-track {
        background: #f0f0f0; /* Track color */
        border-radius: 10px;
    }

    .client-card::-webkit-scrollbar-thumb {
        background-color: #36949e; /* Thumb color */
        border-radius: 10px;
        border: 2px solid transparent;
        background-clip: content-box;
    }

        .client-card::-webkit-scrollbar-thumb:hover {
            background-color: #a0a0a0; /* Thumb color on hover */
        }


    .client-card h3 {
        margin-bottom: 15px;
        font-size: 25px;
        color: #36949e;
    }

    .client-card ul {
        list-style-type: disc;
        padding-left: 20px;
        line-height: 1.6;
        font-size: 14px;
/*        display : flex;
        flex-wrap:wrap;
        align-items:center;
        justify-content:center;*/
    }

    .client-card li {
        margin-bottom: 6px;
        color:black;
/*        margin:3rem;*/
    }

.hospital {
    background-color: ghostwhite;
}
.hospital:hover {
    background-color: #dff1fb18;
}

.service {
    background-color: ghostwhite;
}
.service:hover {
    background-color: #dff1fb52;
}

.trade {
    background-color: ghostwhite;
}
.trade:hover {
    background-color: #dff1fb52;
}

.international {
    background-color: ghostwhite;
}
.international:hover {
    background-color: #dff1fb52;
}

.tag-new {
    background-color: #e60000;
    color: white;
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .clients-heading {
        font-size: 28px;
    }

    .client-card {
        padding: 15px;
    }

        .client-card h3 {
            font-size: 18px;
        }

        .client-card ul {
            font-size: 13px;
        }
}

