/* GRCTech Showcase Section Styles */
#grctech-showcase {
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.95), rgba(20, 20, 40, 0.95));
    position: relative;
    overflow: hidden;
}

#grctech-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/patterns/circuit-pattern.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.grctech-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.grctech-showcase-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.grctech-showcase-image {
    width: 90%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 
                0 0 30px rgba(103, 58, 183, 0.3);
    transition: all 0.5s ease;
    transform: scale(1);
}

/* Responsive styles */
@media (max-width: 992px) {
    .grctech-showcase-image {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .grctech-showcase-image {
        width: 100%;
    }
    
    .grctech-showcase-container {
        padding: 0 10px;
    }
}
