/* History Page Specific Styles */

/* Timeline Section */
.greenworld-timeline-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.greenworld-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #4CAF50, #2E7D32);
    transform: translateX(-50%);
}

.greenworld-timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.greenworld-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.greenworld-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.greenworld-timeline-year {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

.greenworld-timeline-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin: 0 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    flex: 1;
    position: relative;
}

.greenworld-timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 1rem solid transparent;
    transform: translateY(-50%);
}

.greenworld-timeline-item:nth-child(odd) .greenworld-timeline-content::before {
    right: 100%;
    border-right-color: white;
}

.greenworld-timeline-item:nth-child(even) .greenworld-timeline-content::before {
    left: 100%;
    border-left-color: white;
}

.greenworld-timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.greenworld-timeline-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-timeline-desc {
    color: #757575;
    line-height: 1.6;
}

/* Growth Section */
.greenworld-growth-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-growth-card {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-growth-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #FF9800;
}

.greenworld-growth-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.greenworld-growth-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Tech Milestones Section */
.greenworld-tech-milestones-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-tech-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-tech-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-tech-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-tech-desc {
    color: #757575;
    line-height: 1.6;
}

/* Awards Section */
.greenworld-awards-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-award-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    position: relative;
}

.greenworld-award-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-award-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
}

.greenworld-award-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-award-desc {
    color: #757575;
    line-height: 1.6;
}

/* Future Section */
.greenworld-future-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.greenworld-future-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.greenworld-future-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-future-text p {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* 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-timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .greenworld-timeline::before {
        display: none;
    }

    .greenworld-timeline-content {
        margin: 1rem 0;
    }

    .greenworld-timeline-content::before {
        display: none;
    }

    .greenworld-growth-grid,
    .greenworld-tech-grid,
    .greenworld-awards-grid {
        grid-template-columns: 1fr;
    }

    .greenworld-future-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
