/* Projects Page Specific Styles */
/* Projects Page Header Specific Styles */
.page-header {
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    font-size: 1.1rem;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.page-header .breadcrumb-item.active {
    color: white;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}
.projects-filter {
    background-color: var(--light-color);
    padding: 20px 0;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.filter-controls li {
    padding: 8px 20px;
    margin: 5px;
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-controls li.active {
    background: var(--primary-color);
    color: var(--white);
}

.filter-controls li:not(.active):hover {
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary-color);
}

.projects-grid {
    padding: 80px 0;
    background-color: var(--white);
}

.project-card {
    margin-bottom: 30px;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 34, 68, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.project-info p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.project-meta {
    background: var(--white);
    padding: 15px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
}

.project-category {
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .filter-controls {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .project-image img {
        height: 200px;
    }
}