/* Progress Bar Styles for Home Page */
.progress-section {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.progress-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
}

.progress-container {
    max-width: 500px;
    margin: 0 auto;
}

.progress-bar-full {
    width: 100%;
    height: 30px;
    background-color: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    border-radius: 15px;
    transition: width 0.5s ease-in-out;
    position: relative;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
    border-radius: 15px;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-count {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4CAF50;
}

.progress-percentage {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.progress-description {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .progress-section {
        padding: 20px 15px;
    }
    
    .progress-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .progress-count {
        font-size: 1.1rem;
    }
}