/* Prototyping Section */
.prototyping {
    background-color: var(--space-dark);
    position: relative;
}

.prototyping-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.prototyping-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 500px;
    border: 1px solid var(--glass-border);
}

.prototyping-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.prototyping-image:hover img {
    transform: scale(1.05);
}

.prototyping-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--starlight);
    text-shadow: 0 0 10px var(--cyber-aqua-glow);
}

.prototyping-feature {
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prototyping-feature:hover {
    background: var(--glass);
    transform: translateX(10px);
}

.prototyping-icon {
    font-size: 2rem;
    color: var(--electric-orange);
    margin-right: 1rem;
    text-shadow: 0 0 8px var(--electric-orange-glow);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.prototyping-feature:hover .prototyping-icon {
    transform: scale(1.2) rotate(5deg);
}

.prototyping-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--starlight);
}

.prototyping-text p {
    color: var(--cosmic-text);
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .prototyping-container {
        grid-template-columns: 1fr;
    }
    
    .prototyping-image {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .prototyping-feature {
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .prototyping-feature {
        flex-direction: column;
        text-align: left;
    }
    
    .prototyping-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
