/* Custom Projects Page Styles */

.work2 .mb-100 {
    margin-bottom: 100px;
}

.work2 .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.work2 .img-wrapper:hover {
    transform: translateY(-10px);
}

.work2 .img-wrapper img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    display: block;
}

.work2 .content {
    padding: 20px 0;
}

.work2 .content.pl-50 {
    padding-left: 50px;
}

.work2 .content.pr-50 {
    padding-right: 50px;
}

.work2 .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.work2 .tags .tag {
    padding: 8px 20px;
    background: rgba(2, 217, 244, 0.1);
    border: 1px solid rgba(2, 217, 244, 0.3);
    border-radius: 20px;
    color: var(--main-color);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

.work2 .content h3 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
}

.work2 .content h3 a {
    transition: color 0.3s ease;
}

.work2 .content h3 a:hover {
    color: var(--main-color) !important;
}

.work2 .radius-15 {
    border-radius: 15px;
}

/* Category Headers */
.work2 .category-header {
    position: relative;
    margin-bottom: 80px;
    margin-top: 100px;
    padding: 60px 0;
}

.work2 .category-header:first-child {
    margin-top: 0;
}

.work2 .category-header h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.work2 .category-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    border-radius: 2px;
}

.work2 .category-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.work2 .category-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 217, 244, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

/* Responsive */
@media (max-width: 991px) {
    .work2 .content.pl-50,
    .work2 .content.pr-50 {
        padding-left: 0;
        padding-right: 0;
        margin-top: 30px;
    }
    
    .work2 .content h3 {
        font-size: 32px;
    }
    
    .work2 .mb-100 {
        margin-bottom: 60px;
    }
    
    .work2 .category-header {
        margin-bottom: 50px;
        margin-top: 70px;
        padding: 40px 0;
    }
    
    .work2 .category-header h2 {
        font-size: 42px;
    }
    
    .work2 .category-header p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .work2 .category-header h2 {
        font-size: 36px;
    }
    
    .work2 .category-header::before {
        width: 200px;
        height: 200px;
    }
}
