/* AI Testing Section Fixes */
/* .ai-testing-section {
    position: relative;
    padding: 100px 0;
    background: var(--dark-bg);
    overflow: hidden;
} */

.ai-testing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start; /* Changed from center to flex-start */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.ai-text {
    padding-right: 2rem;
}

.ai-text h2 {
    font-size: 2.8rem; /* Reduced from 3rem */
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.ai-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ai-visual {
    position: relative;
    height: 500px; /* Reduced from 600px */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem; /* Reduced from 1.5rem */
    margin-top: 1.5rem;
}

.ai-feature-card {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.75rem; /* Reduced from 2rem */
    display: flex;
    align-items: center; /* Changed from flex-start to center */
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.ai-feature-card i {
    font-size: 1.5rem;
    color: #4facfe;
    width: 48px; /* Fixed width */
    height: 48px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 12px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Methodology Section Fixes */
.methodology-section {
    position: relative;
    padding: 100px 0; /* Reduced from 120px */
    background: var(--dark-bg);
    overflow: hidden;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    padding: 0 2rem;
}

/* Connecting line between steps */
.methodology-grid::before {
    content: '';
    position: absolute;
    top: 35px; /* Adjusted to align with numbers */
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(79, 172, 254, 0.3) 10%,
        rgba(79, 172, 254, 0.3) 90%,
        transparent 100%
    );
    z-index: 1;
}

.methodology-step {
    position: relative;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px; /* Reduced from 48px */
    height: 40px; /* Reduced from 48px */
    background: rgba(79, 172, 254, 0.1);
    border: 2px solid rgba(79, 172, 254, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #4facfe;
    margin: 0 auto 1.25rem;
    position: relative;
}

.step-icon {
    width: 48px; /* Reduced from 60px */
    height: 48px; /* Reduced from 60px */
    background: rgba(79, 172, 254, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-icon i {
    font-size: 1.5rem; /* Reduced from 1.8rem */
    color: #4facfe;
}

.methodology-step h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.methodology-step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Responsive Fixes */
@media (max-width: 1200px) {
    .ai-testing-content {
        gap: 3rem;
        padding: 0 2rem;
    }

    .methodology-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .methodology-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .ai-testing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .ai-visual {
        height: 350px;
        order: -1;
    }

    .ai-text {
        padding-right: 0;
    }

    .ai-text h2 {
        font-size: 2.4rem;
        text-align: center;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
} 