/* Custom CSS Styles */
.hero-bg-pattern {
    background-image: url("images/hero-bg.svg");
    background-size: 200px;
    background-repeat: repeat;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for section entry */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Custom styling for blockquote */
blockquote {
    border-left: 4px solid #10b981;
    padding-left: 1rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: #4b5563;
}

/* Custom styling for tables */
.market-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.market-table th {
    background-color: #f9fafb;
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: left;
}

.market-table td {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e5e7eb;
}

.market-table tr:hover {
    background-color: #f9fafb;
}

/* Custom styling for charts container */
.chart-container {
    height: 300px;
    width: 100%;
    position: relative;
    margin: 1.5rem 0;
}

/* Custom styling for progress bar */
.progress-bar {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.progress-bar-fill {
    height: 100%;
    background-color: #10b981;
    border-radius: 4px;
}

/* Custom styling for card hover effects */
.feature-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

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