#portfolio-flters {
    padding: 0;
    margin: 0 auto 30px auto;
    list-style: none;
    text-align: center;
}

#portfolio-flters li {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

#portfolio-flters li:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

#portfolio-flters li.filter-active {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 768px) {
    #portfolio-flters li {
        display: block;
        margin: 5px auto;
        width: 80%;
    }
}

.portfolio-container {
    padding: 40px 0;
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.portfolio-wrap:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.portfolio-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: #007bff; */
    background: #212529a3;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio-info h4 a {
    font-size: 20px;
    margin-bottom: 10px;
    color: block;
}

.portfolio-info h4 a:hover {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffff;
}

.portfolio-info p {
    font-size: 14px;
    margin-bottom: 15px;
}

.portfolio-info div {
    display: flex;
    gap: 10px;
}

.portfolio-info a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.portfolio-info a:hover {
    color: rgb(0, 0, 0);
}

@media (max-width: 768px) {
    .portfolio-item {
        margin-bottom: 20px;
    }
}

/* end */
#page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    margin-top: 85px;
    padding-top: 30px;
    color: #fff;
}

#page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 87, 136, 0.8);
}

#page-banner .container {
    position: relative;
    z-index: 1;
}

#page-banner h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

#page-banner .breadcrumb {
    background: transparent;
    /* display: inline-block; */
    padding: 8px 15px;
    border-radius: 5px;
}

#page-banner .breadcrumb-item a {
    color: #f8f9fa;
    text-decoration: none;
}

#page-banner .breadcrumb-item.active {
    color: #ffc107;
}

#page-banner .breadcrumb-item.active:hover {
    color: #5452e1;
}

#page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.portfolio-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .portfolio-title {
        font-size: 16px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .portfolio-title {
        font-size: 14px;
        padding: 6px;
    }
}

/* Portfolio Item Styling */
.portfolio-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-wrap:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.portfolio-wrap img {
    transition: all 0.3s ease;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.portfolio-wrap:hover img {
    transform: scale(1.05);
}

.portfolio-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio-info h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.portfolio-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Button Styles */
.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: #ffffff;
}

.btn-primary {
    background: #4361ee;
    border: 2px solid #4361ee;
}

.btn-primary:hover {
    background: #3a0ca3;
    border-color: #3a0ca3;
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .portfolio-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-sm {
        width: 100%;
    }
}