.brdr10 {
    border-radius: 10px;
}

.brdr5 {
    border-radius: 5px;
}

.page-item.active .page-link {
    background-color: var(--global--color-primary);
    border-color: var(--global--color-primary);
}

.pr-sm {
    padding-right: 5px;
}

.modal {
    z-index: 9999999999 !important;
}

.modal-backdrop.fade.show {
    z-index: 9999;
}

.recycle-img {
    padding: 40px 150px;
}

.wd-100p {
    width: 100% !important;
}

.service-content .service-fit-image {
    width: 100%;
    height: 100px;
    object-fit: contain;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eae7e7;
}

.service-content:hover .service-fit-image {
    filter: none
}

.project-text-container {
    display: flex;
    width: 100%;
    align-items: center;
    height: 120px;
    text-align: center;
}

.project-text-container p {
    text-align: center;
    width: 100%;
}

.project-panel .project-panel-holder .project-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* Equal height blog cards */
.blog-grid .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-grid .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.equal-height-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.equal-height-card .project-panel-holder {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.equal-height-card .project-panel-holder .project-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.equal-height-card .project-panel-holder .project-content .project-content-top {
    flex-grow: 1;
}

.equal-height-card .project-panel-holder .project-content .project-desc {
    margin-bottom: 15px;
}

.equal-height-card .project-panel-holder .project-content .project-more {
    margin-top: auto;
}

/* Responsive adjustments for equal height cards */
@media screen and (max-width: 991.98px) {
    .blog-grid .row > [class*="col-"] {
        margin-bottom: 30px;
    }

    .equal-height-card {
        height: auto;
        min-height: 400px;
    }
}

@media screen and (min-width: 992px) {
    .blog-grid .row {
        align-items: stretch;
    }
}

/* Blog article meta styles */
.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.project-type {
    flex-shrink: 0;
}

.type-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--global--color-primary), #007bff);
    color: white !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.type-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    text-decoration: none;
    color: white !important;
}

.project-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

.category-link {
    color: var(--global--color-text);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-link:hover {
    color: var(--global--color-primary);
    border-bottom-color: var(--global--color-primary);
    text-decoration: none;
}

.category-link:not(:last-child):after {
    content: "•";
    margin-left: 8px;
    color: #ccc;
}

/* Responsive adjustments for project meta */
@media screen and (max-width: 575.98px) {
    .project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .project-categories {
        justify-content: flex-start;
        width: 100%;
    }
}

.pagination li a, .pagination li span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--global--color-white);
    color: var(--global--color-heading);
    font-family: var(--global--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    -webkit-transition: 300ms
ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms
ease-in-out;
    margin-top: 15px;
}

/* Date badge on image */
.project-img {
    position: relative;
}

.date-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.date-badge:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive date badge */
@media screen and (max-width: 575.98px) {
    .date-badge {
        bottom: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 11px;
    }
}

.project-panel-holder:hover img {
    filter: none !important;

}

.project-panel {
    -webkit-box-shadow: 0 3px 20px 0 rgba(40, 40, 40, 0.13);
    box-shadow: 0 3px 20px 0 rgba(40, 40, 40, 0.13);
}

.project-panel:hover {
    -webkit-box-shadow: 0 3px 80px 0 rgba(50, 40, 40, 0.43);
    box-shadow: 0 3px 80px 0 rgba(50, 40, 40, 0.43);
}

.docs-features li {
    line-height: 23px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
}

.service-icon {
    width: 60px !important;
}

.project-title-cont {
    color: #000 !important;
    font-size: 16px;
}


.change-gray-scale {
    filter: grayscale(1);
    transition: all 2s !important;
}

.change-gray-scale:hover {
    filter: none !important;
}

.no-gray-scale {
    filter: none !important;
}

.client-logo{
    height: 30px !important;
    width: auto !important;
}
.developer{
    font-size: 11px;
    font-weight: 400;
    color: #c7c7c7;
}
.developer a{
    color: #afafaf !important;
}
b, strong {
    color: #040404;
}
.projects.projects-standard .project-panel:hover .project-title-cont {
    color: #fff !important;
}
.sidebarimg{
    height: 50px;
    width: 50px;
    object-fit: cover;
    object-position: center;
}
.article-img{
    height: 500px;
    width: auto !important;
    object-fit: cover;
    object-position: center;
}
.client-img{
    height: 40px;
    max-width: 100%;
    text-align: center;
    object-fit: contain;
}
.article-img-fit{
    height: 450px !important;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.article-img-fit-sm{
    height: 250px !important;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.served-icon{
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
}
@media (max-width: 420px) {
    .recycle-img {
        padding: 20px 10px;
    }
}
