<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Enhanced Base Section Styles */
.category-statistics {
    padding: 100px 0 80px;
    background: #ffffff;
    position: relative;
}

/* Section Title Animation */
.section-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1890b5, #029987);
    border-radius: 2px;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.6;
}

/* Enhanced Category Cards */
.category-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #f1f5f9;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1890b5, #029987);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.category-card:hover::before {
    transform: scaleX(1);
}

/* Enhanced Icon Animation */
.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1890b5, #029987); 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(24, 144, 181, 0.2);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(24, 144, 181, 0.3);
}

.category-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.1);
}

/* Enhanced Category Stats */
.category-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: #1890b5;
}

.category-count {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1890b5, #029987);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    transform: scale(1.1);
}

/* Enhanced Progress Items */
.progress-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #f1f5f9;
}

.progress-item:hover {
    transform: scale(1.02);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* Enhanced Progress Bars */
.progress-bar-custom {
    height: 10px;
    border-radius: 8px;
    background: #e2e8f0;
    overflow: hidden;
    position: relative;
    margin: 1rem 0;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1890b5, #029987);
    border-radius: 8px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    animation: shimmer 2.5s infinite;
}

/* Enhanced Summary Items */
.summary-item {
    padding: 1.75rem;
    background: #f8fafc;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #f1f5f9;
    cursor: pointer;
}

.summary-item:hover {
    transform: translateX(10px);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* Enhanced Value Indicators */
.percentage-up, .percentage-down {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.percentage-up:hover, .percentage-down:hover {
    transform: translateX(5px);
}

.percentage-up {
    color: #029987;
    background: rgba(2, 153, 135, 0.1);
}

.percentage-down {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Enhanced Badge Animation */
.badge.badge-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.badge.badge-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(24, 144, 181, 0.2);
}

/* Keyframe Animations */
@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .category-statistics {
        padding: 80px 0 60px;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .category-count {
        font-size: 2.25rem;
    }
    
    .progress-item {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .category-statistics {
        padding: 60px 0 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-name {
        font-size: 1.25rem;
    }
    
    .summary-item {
        padding: 1.25rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .category-card:hover,
    .progress-item:hover,
    .summary-item:hover {
        transform: none;
    }
    
    .category-card:active,
    .progress-item:active,
    .summary-item:active {
        transform: scale(0.98);
    }
}
</pre></body></html>