/* Software Development Page Specific Styles */
.dev-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 35px 0;
}

.dev-card {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.dev-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.dev-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.dev-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.dev-card p {
    color: var(--gray);
    line-height: 1.6;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 35px 0;
}

.timeline-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.timeline-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--gray);
}

.tech-stack-software {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.tech-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tech-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}