/* Project Management Section */
.project-management {
    background-color: var(--space-dark);
    position: relative;
}

.pm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pm-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);
}

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

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

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

.pm-content p {
    margin-bottom: 1.5rem;
    color: var(--cosmic-text);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
}

.pm-features {
    margin-top: 2rem;
}

.pm-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pm-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--neon-violet), var(--cyber-aqua));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--neon-violet-glow);
}

.pm-feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--starlight);
}

.pm-feature-text p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-violet), var(--cyber-aqua));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 0 20px var(--neon-violet-glow);
}

.step-content {
    background: var(--space-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--glass-border);
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 0 15px var(--cyber-aqua-glow);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--starlight);
}

.step-content p {
    color: var(--cosmic-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Solution Architecture Section */
.solution-architecture {
    background-color: var(--deep-space);
    position: relative;
    overflow: hidden;
}

.sa-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Software Development Section */
.software-development {
    background-color: var(--space-dark);
    position: relative;
}

/* QA & Compliance Section */
.qa-compliance {
    background-color: var(--deep-space);
    position: relative;
    overflow: hidden;
}
/* Animation classes used by these sections */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-element.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments for these sections */
@media (max-width: 992px) {
    .pm-container, .sa-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pm-image, .sa-image {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
        order: -1;
    }
}

@media (max-width: 768px) {
    .pm-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .pm-feature-icon {
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .pm-image, .sa-image {
        height: 300px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}
