@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .nav-links {
        gap: 1.5rem;
    }
    .user-actions {
        width: 100%;
        justify-content: space-between;
    }
    .search-bar {
        width: 100%;
        max-width: 400px;
    }
    .filters-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .filters-left, .filters-right {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .main-container {
        padding: 0 1.5rem;
    }
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    .filters-left {
        flex-direction: column;
        width: 100%;
    }
    .dropdown {
        width: 100%;
    }
    .dropdown-btn {
        width: 100%;
        justify-content: space-between;
    }
}
@media (max-width: 576px) {
    .hero {
        padding: 2rem 1.5rem;
    }
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
}