/* Software Development Page Specific Styles */

/* Software Services Section */
.greenworld-software-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-software-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-software-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-software-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-software-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-software-desc {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.greenworld-software-features {
    list-style: none;
    padding: 0;
}

.greenworld-software-features li {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.greenworld-software-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Tech Stack Section */
.greenworld-tech-stack {
    padding: 4rem 0;
    background: white;
}

.greenworld-tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-tech-category {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-tech-category h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
    text-align: center;
}

.greenworld-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.greenworld-tech-item {
    background: white;
    color: #4CAF50;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #4CAF50;
    transition: all 0.3s ease;
}

.greenworld-tech-item:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.greenworld-contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.greenworld-contact-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #424242;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .greenworld-software-grid,
    .greenworld-tech-categories {
        grid-template-columns: 1fr;
    }
    
    .greenworld-tech-list {
        justify-content: flex-start;
    }
}
