.process-step {
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.industry-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: scale(1.05);
}

.industry-card img {
    transition: all 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.content-type-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.content-type-card:hover {
    transform: translateY(-5px);
}

.content-type-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.content-type-card:hover::after {
    transform: scaleX(1);
}
