#project-section-1 .container--wide{
    padding: var(--spacing-lg);
    background-color: transparent;
    background-image: linear-gradient(90deg, #FFFFFF 0%, #EDF4FF 100%);
    margin:0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #a5b7d2;
    font-size: clamp(0.75rem, 4vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '•';
    margin: 0 15px;
    opacity: 0.5;
}

.section-title {
    color: var(--color-text);
    font-size:clamp(1rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-tab.active {
    color: #ff6b35;
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff6b35;
    transform: scaleX(1);
}

.filter-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff6b35;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.filter-tab:hover {
    color: #ff6b35;
}

.filter-tab:hover::after {
    transform: scaleX(1);
}

.all-works-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-decoration: none;
}

.all-works-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.all-works-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.all-works-btn:hover::after {
    transform: translateX(5px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 30px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.project-card:hover .project-category {
    transform: translateY(0);
}

.project-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.project-card:hover .project-title {
    transform: translateY(0);
}

.project-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
    backdrop-filter: blur(10px);
}

.project-card:hover .project-icon {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .filter-tabs {
        gap: 15px;
    }

    .filter-tab {
        font-size: 14px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 28px;
    }

    .filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .all-works-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}