/* Salework Finance Landing Page Styles */

/* Finance-specific color adjustments */
.finance-icon {
    color: #1e40af !important;
}

/* Financial report cards */
.report-card {
    transition: all 0.3s ease;
    height: 100%;
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.report-card .icon-container {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.report-card .icon-container i {
    color: white;
    font-size: 1.5rem;
}

/* Chart visualization effects */
.chart-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.2) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Financial feature icons */
.feature-item .w-8.h-8.rounded-full.gradient-primary i.finance-icon {
    color: white !important;
}

/* Animated number counters */
.counter-value {
    font-weight: bold;
    font-size: 2.5rem;
    color: #1e40af;
}

.counter-label {
    font-size: 1rem;
    color: #6b7280;
}

.counter-container {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.counter-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
