/* Information Services Page Specific Styles */

/* Info Services Section */
.greenworld-info-services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-info-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-info-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-info-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-info-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-info-desc {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.greenworld-info-features {
    list-style: none;
    padding: 0;
}

.greenworld-info-features li {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.greenworld-info-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Tech Architecture Section */
.greenworld-tech-architecture-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-architecture-card {
    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-architecture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-architecture-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-architecture-desc {
    color: #757575;
    line-height: 1.6;
}

/* Solutions Section */
.greenworld-solutions-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-solution-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-solution-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-solution-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.greenworld-solution-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-solution-desc {
    color: #757575;
    line-height: 1.6;
}

/* Case Studies Section */
.greenworld-case-studies-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-case-study-card {
    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-case-study-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.greenworld-case-study-industry {
    color: #FF9800;
    font-weight: bold;
    margin: 0.5rem 0;
}

.greenworld-case-study-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-case-study-desc {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.greenworld-case-study-results {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.greenworld-case-study-results h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #424242;
}

.greenworld-case-study-results p {
    color: #757575;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Advantages Section */
.greenworld-advantages-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-advantage-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-advantage-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.greenworld-advantage-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-advantage-desc {
    color: #757575;
    line-height: 1.6;
}

/* Contact Section */
.greenworld-contact-section {
    padding: 4rem 0;
    background: white;
}

.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-info-grid,
    .greenworld-architecture-grid,
    .greenworld-solutions-grid,
    .greenworld-case-studies-grid,
    .greenworld-advantages-grid {
        grid-template-columns: 1fr;
    }
}
