/* EdgeCodersHub Showcase Section */
.edgecodershub-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.edgecodershub-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(148, 163, 184, 0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.edgecodershub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.edgecodershub-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.edgecodershub-showcase h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.edgecodershub-showcase h2 .highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edgecodershub-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.edgecodershub-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.edgecodershub-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.edgecodershub-image:hover {
    transform: translateY(-10px);
}

.edgecodershub-image img {
    width: 100%;
    height: auto;
    display: block;
}

.edgecodershub-details h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.edgecodershub-details p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.edgecodershub-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3b82f6;
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.edgecodershub-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-explore {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-blog {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-blog:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Project Categories */
.project-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .edgecodershub-showcase h2 {
        font-size: 2.5rem;
    }
    
    .edgecodershub-content {
        grid-template-columns: 1fr;
    }
    
    .edgecodershub-features {
        grid-template-columns: 1fr;
    }
    
    .edgecodershub-cta {
        flex-direction: column;
    }
    
    .project-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .edgecodershub-showcase {
        padding: 4rem 0;
    }
    
    .edgecodershub-showcase h2 {
        font-size: 2rem;
    }
    
    .edgecodershub-subtitle {
        font-size: 1.1rem;
    }
    
    .edgecodershub-details h3 {
        font-size: 1.5rem;
    }
}