.hover-iconbox-container {
    position: relative;
    z-index: 2;
}

.hover-iconbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hover-iconbox-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hover-iconbox-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.hover-iconbox-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.hover-iconbox-title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.hover-iconbox-description {
    font-size: 14px;
    line-height: 1.6;
}

.hover-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background-color 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.elementor-section {
    transition: background-image 0.3s ease;
    position: relative;
}