/* Breadcrumb Customization matching user style */
.breadcrumb {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    padding: 0 5px;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1e3c72;
    font-weight: 500;
}

/* Page Title */
.project-page-title {
    color: #1e3c72;
    position: relative;
    display: inline-block;
}

.project-page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #41e2ad;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Project Cards Custom Design */
.project-card-large {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.project-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.15);
    border-color: rgba(30, 60, 114, 0.1);
}

.project-image-large {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-large:hover .project-image-large img {
    transform: scale(1.1);
}

/* Overlay Effect */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 60, 114, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card-large:hover .project-overlay {
    opacity: 1;
}

.btn-project-detail {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-project-detail:hover {
    background: white;
    color: #1e3c72;
}

/* Status Badge */
.project-status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.project-status-badge.completed {
    background: #28a745;
}

.project-status-badge.ongoing {
    background: #ffc107;
    color: #000;
}

.project-status-badge.planning {
    background: #17a2b8;
}

/* Content Area */
.project-content-large {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title-wrapper {
    margin-bottom: 15px;
    min-height: 3.6rem;
}

.project-content-large h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.project-card-large:hover .project-content-large h4 {
    color: #1e3c72;
}

.project-content-large p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Meta Data Footer */
.project-meta {
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
    justify-content: space-between;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #41e2ad;
}

.project-link {
    color: #1e3c72;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.project-link:hover {
    color: #41e2ad;
}

/* Pagination - Matching the clean style */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border-radius: 8px;
    border: none;
    background: white;
    color: #555;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-btn:hover:not(.active) {
    background: #1e3c72;
    color: white;
    transform: translateY(-2px);
}

.page-btn.active {
    background: #1e3c72;
    /* Primary Blue from theme */
    color: white;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.page-btn i {
    font-size: 0.8rem;
}

/* Search and Filter Box Styles */
.search-filter-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 45px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
}

.filter-box select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-box select:focus {
    border-color: #3498db;
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-image-large {
        height: 200px;
    }

    .project-content-large h4 {
        font-size: 1.2rem;
    }
}