/* #region Stats Section */

.stats-section {
    background-color: var(--primary-navy);
    color: white;
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* #endregion */

/* #region Categories Section */

.categories-section {
    background-color: var(--bg-light);
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    color: var(--primary-navy);
    font-weight: 600;
}

.category-content p {
    flex-grow: 1;
}

.category-content .btn {
    align-self: flex-start;
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.category-content .btn:hover {
    background-color: var(--primary-navy);
    color: white;
}

/* #endregion */

/* #region Industries Section */

.industries-section {
    background-color: var(--bg-light);
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.industry-card h4 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* #endregion */
