/* Progress Page Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #006666, #00a3a3);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Progress Overview */
.progress-overview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 102, 0.15);
}

.overview-card .card-icon {
    margin-bottom: 1rem;
}

.overview-card .card-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.overview-card h3 {
    color: #006666;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.progress-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #006666;
    margin-bottom: 0.5rem;
    display: block;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: #fff;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-item.completed {
    border-left: 4px solid #28a745;
}

.timeline-item.in-progress {
    border-left: 4px solid #ffc107;
}

.timeline-item.upcoming {
    border-left: 4px solid #6c757d;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-marker {
    background: #28a745;
}

.timeline-item.in-progress .timeline-marker {
    background: #ffc107;
}

.timeline-item.upcoming .timeline-marker {
    background: #6c757d;
}

.timeline-content {
    flex: 1;
}

.timeline-date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: #006666;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #006666, #00a3a3);
    border-radius: 4px;
    transition: width 2s ease-in-out;
}

/* Current Projects */
.current-projects {
    padding: 5rem 0;
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 102, 0.15);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: #006666;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-progress {
    margin-bottom: 1rem;
}

.progress-label {
    color: #006666;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.project-team {
    color: #666;
    font-size: 0.9rem;
}

/* Key Metrics */
.key-metrics {
    padding: 5rem 0;
    background: #fff;
}

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

.kpi-chart {
    position: relative;
    height: 400px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.1);
}

.kpi-chart canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    margin: 0 auto;
}

.kpi-metrics {
    display: grid;
    gap: 1.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: translateX(10px);
}

.metric-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.metric-content h4 {
    color: #006666;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
}

.metric-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #28a745;
}

.metric-change.negative {
    color: #dc3545;
}

/* Progress Update */
.progress-update {
    padding: 5rem 0;
    background: #f8f9fa;
}

.update-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.update-items {
    display: grid;
    gap: 2rem;
}

.update-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.1);
    transition: transform 0.3s ease;
}

.update-item:hover {
    transform: translateY(-3px);
}

.update-date {
    color: #006666;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.update-item h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.update-item p {
    color: #666;
    line-height: 1.6;
}

.update-visual {
    position: sticky;
    top: 2rem;
}

.progress-chart {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.1);
}

.progress-chart canvas {
    width: 100% !important;
    height: 300px !important;
}

/* Investor CTA */
.investor-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #006666, #00a3a3);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #006666;
}

/* Navigation Active State */
.nav-link.active {
    color: #006666;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .overview-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .chart-container {
        height: 300px;
    }
    
    .timeline-item {
        padding: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .kpi-dashboard {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .update-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .overview-cards {
        grid-template-columns: 1fr;
    }
    
    .overview-card {
        padding: 1.5rem;
    }
    
    .progress-number {
        font-size: 2rem;
    }
    
    .chart-container {
        height: 250px;
    }
    
    .timeline-item {
        padding: 1rem;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .metric-item {
        padding: 1rem;
    }
    
    .update-item {
        padding: 1.5rem;
    }
} 