/* Test Strategy Section */
.test-strategy {
    background-color: var(--deep-space);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.test-strategy::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-violet) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.test-strategy::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--cyber-aqua) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

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

.strategy-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);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.strategy-image.animate {
    opacity: 1;
    transform: translateX(0);
}

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

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

.strategy-content {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.strategy-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.strategy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--starlight);
    text-shadow: 0 0 10px var(--cyber-aqua-glow);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.strategy-content p {
    margin-bottom: 1.5rem;
    color: var(--cosmic-text);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    font-family: 'Exo 2', sans-serif;
}

/* Responsive styles for Test Strategy Section */
@media (max-width: 992px) {
    .strategy-container {
        grid-template-columns: 1fr;
    }
    
    .strategy-image {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .test-strategy {
        padding: 80px 0;
    }
    
    .strategy-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .strategy-content h2 {
        font-size: 1.8rem;
    }
    
    .strategy-container {
        gap: 2rem;
    }
}
